Quote:
|
Originally Posted by Arachnid
Hello again.
I'm back and im back for a bloody good reason - Linux.
I've been pestering enoonmai for quite a while now and i finally decidd i need professional(?) help. So here goes. I have these questions that if someone could answer, i'll make sure you're never flamed at the skoar forum - even if you spam
1 - .What is Debian? Similarly, what is FreeBSD etc etc?
|
Another Linux distribution.
BSD is the linux distribution created by University of Berkely. It is slightly different in some commands, etc. FreeBSD, NetBSD are versions of this BSD.
Quote:
|
2 - Whats the easiest way to install nvidia drivers? I've printed off a guide from www.linuxquestions.org - but it looks a little imtimidating especially since it involves stopping the display manager.
|
I think it is better if you get somebody else (who has used Linux for a long time) to do this. This is how I did it in FEDORA CORE 3. Your steps should be very similar.
Press Ctrl-Alt-F1
Login as root
Type on command prompt
#init 3
Run the NVIDIA Installer.
type
modprobe nvidia
cp -a /dev/nvidia* /etc/udev/devices/
cp /etc/X11/xorg.conf /etc/X11/xorg.conf.bak
vim /etc/X11/xorg.conf
^^
You'd better be able to use vim before you try this!
Change the line
Load "dri"
to
# Load "dri"
Change the line
Driver "nv"
to
Driver "nvidia"
Save the file, and now type
init 5
Quote:
|
3 - What is an RPM/TAR.GZ file? Do i always have to use Nautilius to run these files? (managed to install the firefox browser though)!
|
RPM file is an installable file. Many software come as RPM files. Tar.gz file is a bit like a zip file. Tar is an archiver, while gzip is a compressor. A tar.gz file is first archived by tar, then compressed by gzip. You can extract the files as follows
gunzip <filename.tar.gz>
tar -xvf <filename.tar>
Or, you can do this in one step:
tar -zxvf <filename.tar.gz>
Quote:
|
4 - How do you run the various distributables? I'm guessing .exe files are the equivalents but they always behave so differently!
|
You can run them by typing their name on command line and pressing enter. For example, to run gthumb type
gthumb
on command line and press enter.
Alternatively you can choose the program from the menu (As in windows)
Quote:
|
6 - I've got Wine as an RPM. How do i install it?
|
login as root. Then on the command line, type:
rpm -ivh winefilename.rpm
Quote:
|
7 - The default CD player application with Mandrake 10.1 plays audio CD's but with my speakers turned up to full and the sound properties set at 100%, i can still hear the audio at about 0.000000001 dB. how can i fix this?
|
It is possible that your sound mixer is set to a very low value by default. Turn on the volume. Sorry, cannot help more, I use Fedora only.
Quote:
|
8 - How can i view .avi/.mpeg files?
|
Install Mplayer or Xine. I suggest you install both. If they are already installed, you can view a .avi file by:
mplayer <filename.avi>
or
gxine <filename.avi>
Quote:
|
9 - How do i view DVD's? Please suggest a good DVD player
|
Same as above. Use mplayer or xine.
Quote:
|
10 - If i screw up anywhere, is there a rollback or a restore feature in Linux?
|
To avoid problems, you should be careful while you are logged in as root. Best Idea is to only log in as root if really necessary. To install a program such as wine (for example), first login as a normal user. Then open the terminal (or command prompt as windows calls it) and type:
su
Now it will prompt you for the root password. Enter the password. Now you can install wine by using the command I gave above. After you are finished, logout by typing:
exit.
Pallav