Code Sample |
(hd0) /dev/hda # This is my large disk on ATA0-M (NTFS) (hd1) /dev/hdb # Does not exist! (hd2) /dev/hdc # Does not exist! (hd3) /dev/hdd # Does not exits! (hd4) /dev/hde # Linux System Disk (ext2, ext3, and 0x82) (hd5) /dev/hdf # Windows Application Disk (NTFS) |
Code Sample |
GRUB Hard Disk Error |
Code Sample |
(hd0) /dev/hde (hd1) /dev/hdf (hd2) /dev/hdg (hd5) /dev/hda |
Code Sample |
// This tells GRUB to use this particular device.map instead of making a new one > sudo grub --device-map=/mnt/hde1/boot/grub/device.map // And this tells GRUB to use /dev/hde1 as the root // This is because (hd0) in our device map points at /dev/hde > GRUB> root (hd0,0) // And again, this installs GRUB to the MBR of /dev/hde > GRUB> setup (hd0) // This is just a place holder for all the info GRUB spits out after setup > GRUB> BUNCH OF GRUB STUFF // Quit GRUB > GRUB> quit // Reboot and pray :P |
Code Sample |
// menu.lst entry generated by DSL Frugal Install Script // Note the absence of the root command // This causes a kernel panic (for me at least) title DSL-frugal-base-norestore (hdb1) kernel /boot/isolinux/linux24 root=/dev/hdb1 base norestore initrd /boot/isolinux/minirt24.gz // Corrected menu.lst entry // This boots fine title DSL-frugal-base-norestore (hdb1) root (hd1,0) // ADDED kernel /boot/isolinux/linux24 root=/dev/hdb1 base norestore initrd /boot/isolinux/minirt24.gz |
Quote (iakudi @ Oct. 21 2005,00:29) |
This set up worked great for e too, especialy after all tge posts and countless re-installs !! There is just 1 question, my /tmp file is still linked to /hda1 and so when I try to install something it runs out space and cannot download it or if it downloads it cannot install it..... I just want to install Opera and another editor such as Gedit or Kwrite - something very "notepaddy" other than beaver (any recommendations?) |
Quote (robh @ Oct. 20 2005,23:26) |
hey larkl great post about the frugal install, which i am trying to follow. sorry to post such a noob question but, i'm having trouble with altering the /boot/grub/menu.lst file. i did the command >nano /mnt/hda1/boot/grub/menu.lst and got a bash terminal with the above file highlighted in it but i cannot seem to see the file. i tried the ctrlR to read and ctrlO to write out the file but can't see the file contents anywhere. how do i edit this file (utter noob instructions would help). |