The_Pirate
Group: Members
Posts: 9
Joined: Mar. 2006 |
|
Posted: Mar. 08 2006,08:15 |
|
Jam, i hope you do not take this as an insult - but if you are very new to linux, it may be easier to just use 15 minutes on a re-install with LILO?
On the other hand - you don't learn anything from that...
To edit system files you need to be 'root' - the top administrator. To become root, open a terminal (i'm on a WinCan now at work, but i think the terminal is top-left icon on the DSL desktop) and enter
su
Then it asks for your root password. Then you are the Top Dog of the computer! Write:
cd /etc
to change to the proper directory, and
vi lilo.conf
to open a small, stupid, but handy editor. Use the cursor to move to the right spot, and delete the faulty entry. Press 'i' to enter 'insert' mode, and type the new stuff. When finished, press 'esc' a couple of times, then
ZZ
(upper case is important) to save and exit. Then
cd /sbin
and to install the changes:
./lilo
Last thing is to get out of root again:
exit
and you are back where you started. Please reboot, and check if all's well. Else keep editing Have fun!
|