Edit /etc/inittab file to boot into
Full multiuser mode as indicated in the comments for your distro so that you boot into the command line login screen.
Now, you will have several virtual terminals (alt-F1 through alt-F6) you can switch between. Ignore the "open an x terminal" in the stuff below, since you are command line only just now.
You may have
links or some other command line web browser installed if you can manage to get an internet connection if you need to web surf for the info you need.
If you need the
nVidia driver, you want the Linux IA32 driver unless you are using a 64 bit CPU
# Compiling/installing kernel modules
You will need to have installed:
1. The developmental packages (compiler)
2. The kernel-source code that matches your running kernel
3. The module source or install code
Check out your system and look under the hood and see if you installed the stuff you need to do the job. Open an x terminal and type in this sequence of commands to see what kernel we are running and see if you have the kernel source installed:
Code:
[fancy@tinwhistle fancy]$ su -
Password:
[root@tinwhistle root]# uname -r
2.4.20-28.7
I am running kernel version 2.4.20-28.7. Do I have the proper source code?
Code:
[root@tinwhistle root]# cd /usr/src
[root@tinwhistle src]# ls -alc
total 3
drwxr-xr-x 4 root root 136 Jun 12 14:53 .
drwxr-xr-x 16 root root 424 Jun 4 12:04 ..
lrwxrwxrwx 1 root root 14 Jun 4 12:11 linux-2.4 -> linux-2.4.20-28.7
drwxr-xr-x 16 root root 584 Jun 4 12:11 linux-2.4.20-28.7
drwxr-xr-x 7 root root 168 Jun 4 12:08 redhat
[root@tinwhistle src]#
I do have the same kernel version source code installed in the directory /usr/src/linux-2.4.20-28.7 and there is a symbolic link named linux-2.4 pointing to it.
If you don't see something similiar to this (but in color), you will need to install the kernel source.
NOTE: I noticed that Red Hat didn't make the symbolic link
/usr/src/linux that all of the INSTALL files that I have read mentioned that I need. I may as well make one now to save editing the files in the source code every time I need to compile anything concerning the kernel. So, I'll make that link just now:
Code:
[root@tinwhistle src]# ln -s linux-2.4.20-28.7 linux
[root@tinwhistle src]# ls -alc
total 3
drwxr-xr-x 4 root root 160 Jun 12 15:46 .
drwxr-xr-x 16 root root 424 Jun 4 12:04 ..
lrwxrwxrwx 1 root root 14 Jun 12 15:46 linux -> linux-2.4.20-28.7
lrwxrwxrwx 1 root root 14 Jun 4 12:11 linux-2.4 -> linux-2.4.20-28.7
drwxr-xr-x 16 root root 584 Jun 4 12:11 linux-2.4.20-28.7
drwxr-xr-x 7 root root 168 Jun 4 12:08 redhat
[root@tinwhistle src]#
Ah, there it is, so that's done.
Next, did I install the compiler?
Code:
[root@tinwhistle src]# gcc -v
Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
gcc version 2.96 20000731 (Red Hat Linux 7.3 2.96-113)
[root@tinwhistle src]#
Yes, I have a compiler installed.
If you don't have those two things installed, you have to install them first off your install CD.
If they are installed, download the source and happy compiling.
Make sure you carefully read the README and INSTALL files after extracting and before compiling/installing.
I don't know if you run xfree86 or xorg (newest x server). Can you find out? examine the files in /etc/X11 and see what config file you have. See section 3 of
this guide for how to configure xorg.
I don't get a GUI/my resolution isn't what I want
# Configuring X
Linux Hardware Compatibility HOWTO - video cards
The Linux XFree86 HOWTO
Configuring XFree86 for a Non-Specific Linux Distribution
# Mandrake/Mandrivia links
Mandrake home page
Mandrake Users website (needs money to access now)
Software management configuration:
Easy urpmi config for Mandrake
Software management:
urpmi mini-HOWTO
Software management:
All You Ever Wanted to Know About Urpmi But Never Dared Asking Before
You didn't install the developmental packages? As root, command:
urpmi gcc
An Introduction to the Midnight Commander. You can install it by commanding:
urpmi mc
Midnight Commander home page