This is a quick q/a quide for beginners.
Q: What is a good distribution for a beginner Linux user?
A: Fedora Core 3 or higher.
Q: What are the bash equivalents to the DOS command prompt?
A: google it. there lots javascript
:smilie('

')
Q: How do I know that my hardware will be compatible?
A: Check that its on a Linux compatible hardware list.
Q: Can I get drivers for hardware not supported by my OS?
A: Not all hardware. Check the manufacturers web page.
Q: What is the best interface to use?
A: GNOME.
Q: Can I get themes for GNOME?
A: Yes
www.art.gnome.org also look for gdesklets.
Q: HOW DO INSTALL THINGS?
A: Software either come in extractable format or RPM format.
If it comes in tar.gz or .bz or .bz2 , use the use the tar command.
to see how to use tar, type "man tar"
once you have extracted source, type the following in a terminal"
./configure
make
make install
The program will likely be installed in /usr/bin
to use rpms, type rpm -i program.rpm
Q: How do I run a program?
A: Type the name of the program in the directory its in.
If it is a python program, type the name of the program [ program.py ]
If that doesn't work, type "python program.py"
If that still doesn't work, you probably don't have permission to execute.
*so you should login as root and chmod*
Q: Why can't I compile anything?
A: Probably because you aren't logged in as root.
root is the administrator user on a linux system.
to login as root type "su", which means super user.
I have to go to class.... i'll finish this later and make it more organized