|
First, what's the problem? Is it that windows doesn't boot with this config?
If so, change this:
title Microsoft Windows XP Professional at hdb1
rootnoverify (hd1,0)
chainloader +1
to this:
title Microsoft Windows XP Professional at hdb1
rootnoverify (hd1,0)
map (hd1,0) (hd0,0)
map (hd0,0) (hd1,0)
makeactive
chainloader +1
windoze wants to be on the first partition of the first drive. it generally refuses to boot unless you tell it a little lie (the map lines).
As for editing /boot/grub/menu.lst, it can be edited by root. So if you are logged in as user, su to root, and use a text editor such as vim or emacs to edit. If you want to use a GUI editor as root, do this:
as user, give the command 'xhost +localhost'.
su to root
start the editor from command line: example: /opt/kde3/bin/kwrite /boot/grub/menu.lst (that's where kwrite executable is in SuSE 9.3. get the location on your system with 'which kwrite').
|