How do I connect to a simple linux console for executing some basic commands that anyone could with just a linux operating system? [closed] - linux

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I would just like to be able to have my own linux command line on Windows 7. I do have Putty installed but I have no idea how to access a simple linux command line. I just basically need the basic commands that any Linux OPERATING SYSTEM has.

Install Cygwin (https://www.cygwin.com). Cygwin is a Unix-like environment and command-line interface for Microsoft Windows. Cygwin provides native integration of Windows-based applications, data, and other system resources with applications, software tools, and data of the Unix-like environment.

Related

How do I get linux commands like 'sudo' and 'apt-get' to my Windows system? I know about Chocolatey, I just want Linux commands [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I really like the Linux command-line, while I also like Windows. Is there any way possible for me to get the Linux command-line on Windows?
apt is a packaging tool to interact with packages in linux.windows does not use any kind of packaging system.If you want you can use wsl or vagrant.

What are some tips to connect to linux server remotely from windows and increase productivity? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I have a windows computer and connect to Linux on a remote server for my experiments. I want to use an easy interface software from windows to my Linux server (ubuntu 18.04). Can you give some tips on how to increase productivity in such a workflow?
Putty is fast, but AFAIK, does not support tabs, you will have to open different windows for different tasks, unless you use a terminal multiplexer like screen.
Try Mobaxterm and see if you like it. It is free, and supports multiple tabs, very handy for a single session.

Linux: How can I log in as root user on my local machine? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I would like to be a user with root access, when developing in Visual Studio Code on my local machine.
I read many posts about this but they all depend on using something with su or sudo. Unfortunately, in my case both return "bash: su(do): command not found".
How can I enable root access for myself?
MSYS/MinGW is essentially just a collection of linux utilities compiled as windows executables. It is not actually linux, so linux concepts, like the root user, do not apply. Similarly, tools that only work on linux, like nvm, also will not work in MSYS. If you want something that is actually linux, check out the Windows Subsystem for Linux, or WSL.

View File Permissions In Windows 7 Like Linux OS [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
is there a way to view the file permissions for a file in a Windows that will give the same output like as Linux machine (e.g. -rw-rw-r--)?
Thanks.
You can install the GNU Win32 tools.
It contains a lot of useful Linux/Unix tools for Windows.
That includes ls.
And unlike Cygwin, it's Windows native exe's. No need for cygwin.
See here: https://u-tools.com/msls.asp
And here: http://gnuwin32.sourceforge.net

run an .exe file in UNIX [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
A bit of a silly question , please forgive my lack though, new UNIX user .
I have an setup_test.exe file if there a way that i can make it "run-install" or compile it in UNIX based machine, or I need the source code to start with?
thanks in advance
If this executable came from the Windows environment, it won't run under UNIX/Linux without lots of help.
Two options:
If you have the source code and the application doesn't rely on a lot of Windows specific libraries, you could try compiling it in your current environment.
The WINE emulator can often run Windows executables, depending again on what libraries from Windows are used.
If it isn't a Windows exe and is native to your current environment, then ./exename.exe should work provided you have the permissions to execute it.

Resources