Dictionary

ConsoleThe text mode of Linux (Like "DOS" for MS Windows)
Desktop EnvironmentThe program which works under the window manager, and does most of the visual stuff (Taskbar, etc..). I.E: Kde, Gnome..
Distro / DistributionA package of Linux & Linux' softwares, distributed by a company. The most popular dists are Redhat, Slackware, Suse & Debian.
KernelThe heart of Linux. The Kernel is responsible on the hardware of your computer, the cpu, the protocols (PPP, IPX...) and much more. It's updated once per some weeks
RootRoot is a name of the most powerful user. This user has full access for everything in the machine. Even if you're the owner of the computer, It's recommended for you to create your own user and not to use root a lot, from some reasons.
Window ManagerThe program which manages all the windows stuff, and works under X (I.E Enlightment, Kwm).
X / X-Window / XFreeThe windows system of Linux

The directories
/binBin means binary, and it contains some important binary (executable) files.
/bootThe boot files of the kernel. You don't have to touch anything there, unless you upgrade your kernel
/etcVery important configuration files are found there. Be carefull when you change something in there!
/homeAll the home directories are under /home . for example John Smith's home dir is /home/john_smith . He can do there whatever he wants. Under this dir some programs also saves your personal configuration.
/libLibrary files. You have nothing to do there :).
/sbinSystem Bin, another very important binary files, of the system
/usrMost of your stuff should be here. The executable files should be under /usr/bin.
/usr/localUnder this directory, you can find almost every program that you installed. You can run them from /usr/local/bin

Other Tips
  • To add/remove startup programs, edit the file /etc/rc.d/rc.local , or /etc/profile .
  • Add to /etc/profile the next line : alias ls="ls --color". it'll make your ls colorful. thanks to Tomer Svorai :)
  • You also can make another command-shortcuts using alias xx="command". Every time you'll type xx, it'll run the command.
  • If any window (In X) gets stuck, run xkill and when the cursor will be changed click on the window that you wish to kill :). If you use KDE, it'll be even easier: Click ALT+F2, type xkill and enter. Then click on the window. (ALT+F2 opens the run menu)
  • If you need to make something that requires root access, open a terminal window and type su . type your password and run the program that needs the root access. Type "exit" to go back.