I am a student and I need to figure out what some commands in Linux do.
Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
I am a student and I need to figure out what some commands in Linux do.
Hello. I am wanting to get to a Linux terminal without loading it onto my Windows system. I need to find out what several commands do. I know the simplest way to do this is to just put the commands on a virtual terminal and see what they do. But I am afraid that I will do some kind of damage to my laptop.
My question: Is there a terminal that I can get to online to test the commands I need to.
Hello. I am wanting to get to a Linux terminal without loading it onto my Windows system. I need to find out what several commands do. I know the simplest way to do this is to just put the commands on a virtual terminal and see what they do. But I am afraid that I will do some kind of damage to my laptop.
My question: Is there a terminal that I can get to online to test the commands I need to.
Since Linux commands won't work in Windows, I doubt there's any damage the commands could do. You can run Linux in a virtual environment in Windows, and you can also just look up the command man pages online. http://www.linuxmanpages.com/
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,679
Rep:
Ideally I would say installing Linux in a virtual machine is the way to go -- it allows "playing" even when you're not on the internet and lets you do more than you'd likely get with a free telnet session.
That said somebody might know of a free public server that allows some playing.
What kinds of commands? I would probably just install Cygwin on your Windows machine. It's a regular Windows program that gives you a Linux-like shell. The vast majority of commands will work the same as on Linux, but there are some subtle differences...so whether or not it will work depends on what you need to test. Other than that, you could install a Linux distro as a virtual machine using something like VirtualBox. Neither of these approaches will harm your computer, you can always just uninstall them when you're done.
As the others advised, you would do well to install Linux on a virtual machine, or an old computer you don't need for anything important. I don't know what "commands" you want to test...generally we don't run terminal commands without good reason. The "commands" you're talking are actually shell commands (probably bash, that is the most common), not "Linux commands). The syntax is pretty common to all unix-like system.
Thanks so much for your answers! Guyonearth, you are right they are BASH commands. I really appreciate the help. I don't think I will have any trouble with my homework when I get off work.
If you need to find out what a particular command does then the first place to start is
Code:
man [command]
Most (if not all) Linux distributions come with these manual pages installed, but you can also find man pages online. You can do a web search using something like linux man pages, or you can also type the man [command] in your browser and you'll probably get hits for the correct man page, like I just did with man ls. So you have that resource available if you can't access the man pages from a running Linux installation.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.