Quote:Hey guys, my name is Adam and I am new to linux, and when I say new..I mean NEW!!!
Welcome!
Quote:I've tinkered around with it a little bit, read some online help posts to get some things working... but it was mainly copy paste stuff.... does anyone recommend somewhere I can go to learn what all the commands do??
No, simply because... (a) there's so many of them, and (B) there's no guarantee that those commands all exist on your system. You may as well ask "is there a site that shows ALL the applications installed under Windows?".
However, there ARE two areas you may want to look at.
Firstly, most commands are located in your PATH variable:
Code:
$ echo $PATH
/usr/kerberos/bin:/usr/lib/courier-imap/bin:/usr/local/bin:/bin:/usr/bin:/home/dungeon/bin
.. so if you drop into those directories and do a directory listing, you'll see what commands you have access to. The ones in /usr/bin (and /bin) are the normal ones most people use. /usr/local/bin tend to be custom system-wide commands, and the ones in my binary directory (/home/dungeon/bin) are specific to me. Kinda like "My Documents" dir.
Secondly, you can use the help pages on Linux to read up about each command, known as the MAN pages. See the "RTFM-free" bit above? It means "Read The Functional Manpage" (I think) because the man pages contain information relating to the function of that command. To use it, simply type "man" followed by the command, eg:
Now, I'm gonna get a kicking from the site owner for pulling the RTFM on you there, but I would be failing in my duty if I didn't at least make you aware of that online help. In my experience, I haven't come across ANYONE that knows every command, but most Linux geeks know of the man pages and always rely on those to find out what they don't know.
Just as another pointer: if you want to "google" (search) the man pages, use the "-k" option for a keyword search. For instance, searching for commands to do with users, use:
That will run through your guides and pull out any lines containing "user" in the content.
Quote:for instance I have used sudo command before, but don't really know what it means and I wouldn't know how to use it if I needed to unless I was reading it online. as far as experience, I am in IT support, supporting mac and windows computers both hardware and software, but I want to learn how to use linux and possibly use linux as a server for files, web, and email. right now, I have Ubuntu, is there one that is recommended?
Ubuntu's a good place to start out. It's actually much easier than most Linuxes, so stick to that for the time being.
Quote:I Read that I should start out with fedora though, will it be that much different? I have been through this site many times before now, I don't know why i just didn't sign up way before this... well anyways, thanks in advance guys/gals! -Adam
If you play with Ubuntu then try Fedora, you'll think "Windows7 and Windows Vista" or "Windows 2000 and Windows ME". They're pretty similar, what works on one works on the other in most cases, just looks and feels slightly different in some cases.
I was bought up on Fedora/RedHat stuff before I got into Debian/Ubuntu. I'm still more comfortable in a RPM-based environment (RH/Fedora/CentOS/ScientificLinux/Mandrake/Suse/etc....) but I'd recommend sticking to ubuntu for the time being - I feel it's a MUCH easier newbie system.