Re: Moving from three hard drives to one big one
I didn't solve it
Well, I did manage to copy the partitions - no problem there. But I have yet to successfully boot from the disk. The problem is
I think there may be a problem in menu.lst, which is as follows
I think the problem is that I need to change (hd1,0) to (hd0,0). But that poses a problem because (sigh) I still can't modify files in the root directory of the Hard Drive while using a liveCD
fstab probably needs to change too:
All I have now is the DVD-RW drive and the 320gb HDD, which is /dev/hda1 (root) /dev/hda2 (swap) and /dev/hda3 (home). But how to change it? I still can't modify things on the root directory.
In order to change fstab and menu.lst, I may have to go into a console to do it (under sudo -s). I can't open kate under sudo (it dies for some reason and can't be resurrected without rebooting). If I open Konqueror under sudo I'm still unable to modify files.
Is there a way of doing this via going into GRUB in the console?
I didn't solve it
Well, I did manage to copy the partitions - no problem there. But I have yet to successfully boot from the disk. The problem is
Code:
Error 21: Selected Disk does not exist
Code:
title Ubuntu 7.10, kernel 2.6.22-14-generic root (hd1,0) kernel /boot/vmlinuz-2.6.22-14-generic root=UUID=04c95748-a0ef-4f0d-a713-ccc1ff83f2b9 ro quiet splash initrd /boot/initrd.img-2.6.22-14-generic quiet title Ubuntu 7.10, kernel 2.6.22-14-generic (recovery mode) root (hd1,0) kernel /boot/vmlinuz-2.6.22-14-generic root=UUID=04c95748-a0ef-4f0d-a713-ccc1ff83f2b9 ro single initrd /boot/initrd.img-2.6.22-14-generic title Ubuntu 7.10, kernel 2.6.20-16-generic root (hd1,0) kernel /boot/vmlinuz-2.6.20-16-generic root=UUID=04c95748-a0ef-4f0d-a713-ccc1ff83f2b9 ro quiet splash initrd /boot/initrd.img-2.6.20-16-generic quiet title Ubuntu 7.10, kernel 2.6.20-16-generic (recovery mode) root (hd1,0) kernel /boot/vmlinuz-2.6.20-16-generic root=UUID=04c95748-a0ef-4f0d-a713-ccc1ff83f2b9 ro single initrd /boot/initrd.img-2.6.20-16-generic title Ubuntu 7.10, kernel 2.6.17-11-generic root (hd1,0) kernel /boot/vmlinuz-2.6.17-11-generic root=UUID=04c95748-a0ef-4f0d-a713-ccc1ff83f2b9 ro quiet splash initrd /boot/initrd.img-2.6.17-11-generic quiet title Ubuntu 7.10, kernel 2.6.17-11-generic (recovery mode) root (hd1,0) kernel /boot/vmlinuz-2.6.17-11-generic root=UUID=04c95748-a0ef-4f0d-a713-ccc1ff83f2b9 ro single initrd /boot/initrd.img-2.6.17-11-generic title Ubuntu 7.10, kernel 2.6.17-10-generic root (hd1,0) kernel /boot/vmlinuz-2.6.17-10-generic root=UUID=04c95748-a0ef-4f0d-a713-ccc1ff83f2b9 ro quiet splash initrd /boot/initrd.img-2.6.17-10-generic quiet title Ubuntu 7.10, kernel 2.6.17-10-generic (recovery mode) root (hd1,0) kernel /boot/vmlinuz-2.6.17-10-generic root=UUID=04c95748-a0ef-4f0d-a713-ccc1ff83f2b9 ro single initrd /boot/initrd.img-2.6.17-10-generic title Ubuntu 7.10, memtest86+ root (hd1,0) kernel /boot/memtest86+.bin quiet
fstab probably needs to change too:
Code:
# /etc/fstab: static file system information. # # <file system> <mount point> <type> <options> <dump> <pass> proc /proc proc defaults 0 0 # /dev/hdb1 UUID=04c95748-a0ef-4f0d-a713-ccc1ff83f2b9 / ext3 nouser,defaults,errors=remount-ro,atime,auto,rw,dev,exec,suid 0 1 # /dev/hda3 UUID=17693f6f-55e7-45eb-9fba-d7a885cf268b /home ext3 nouser,defaults,atime,noauto,rw,dev,exec,suid 0 2 # /dev/sda1 UUID=7e6a585d-73cf-44fc-9bf1-50ad1f040f86 /media/sda1 ext3 nouser,defaults,atime,auto,rw,dev,exec,suid 0 3 # /dev/hda1 # /dev/hdb2 /dev/sdb2 none swap sw 0 0 /dev/scd0 /media/cdrom0 auto nouser,atime,noauto,rw,nodev,noexec,nosuid 0 0 /dev/scd1 /media/cdrom1 auto nouser,atime,noauto,rw,nodev,noexec,nosuid 0 0 /dev/ /media/floppy0 auto user,atime,noauto,rw,dev,exec,suid 0 0 /dev/sdc1 /NewRoot ext3 nouser,atime,auto,rw,nodev,exec,nosuid 0 0 <device> <mount\040point> auto nouser,atime,noauto,rw,nodev,noexec,nosuid 0 0 <device> <mount\040point> auto nouser,atime,noauto,rw,nodev,noexec,nosuid 0 0 <device> <mount\040point> ext3 nouser,loop,atime,noauto,rw,nodev,noexec,nosuid 0 0 /dev/sdc2 <mount\040point> swap noauto 0 0 /dev/sdc3 /home auto nouser,atime,noauto,rw,nodev,noexec,nosuid 0 0
In order to change fstab and menu.lst, I may have to go into a console to do it (under sudo -s). I can't open kate under sudo (it dies for some reason and can't be resurrected without rebooting). If I open Konqueror under sudo I'm still unable to modify files.
Is there a way of doing this via going into GRUB in the console?
Comment