You are not logged in.
I decided to erase Windows 2000 and install XP to try it and resolve some problems I had while helping some of my friends. Bad thing is, you know, Windows erases Lilo, and trying to boot my Archlinux partition with the Arch cd doesn't work, I can't see my files. This is the command I use:
arch root=/dev/discs/disc0/part5
What do I do now?
Offline
Boot with the cd, mount the hd, and chroot to it. Then from there rerun lilo.
Offline
Well, I did this:
mount /dev/discs/disc0/part5 /mnt
chroot /mnt
now lilo gives gives this error:
Fatal: raid_setup: stat("/dev/disc/disc0/disc")
There is only one file in /dev, the null device. Did I miss something?
Offline
you need to remount /proc and /dev under the chroot environ if you want to do that
Offline
Probably best to mount --rbind /dev/ /mnt/dev before chrooting.
Offline
Probably best to mount --rbind /dev/ /mnt/dev before chrooting.
omg I never knew about the --rbind until now... manually doing it... drat!
also, I think lilo requires something goofy in /proc too... so rebind dev AND proc before you chroot
Offline
Fixed. The command was:
vmlinuz root=/dev/discs/disc0/part5
not:
arch root=/dev/discs/disc0/part5
The developers should fix the boot message the next time they release an Arch cd.
Offline
--rbind?
wasn't it --bind?
link - tested and updated by me one more than year ago, when I first installed Arch.
:: / my web presence
Offline
See manpage of mount. rbind instead of bind because of /dev/pts.
Offline