Re: Katastrophic Koala upgrade - system completely borked...
Rebooting will probably fix the network. When you "chroot /media/disk-1" you actually make /media/disk-1into your /. When you do that you have no /dev from which to access devices. After you run
you can run
and you will have access to the devices in your chroot. The same goes for the others. I think this will allow aptitude to work better. You could also think about mounting your actual /boot at /boot in the chroot so that the linux-image will build the initrd.img into your actual /boot and you will not have to copy it over. You would do that in the chroot with standard mount -t ext2 ... If you do that be sure to umount it before exiting the chroot.
Rebooting will probably fix the network. When you "chroot /media/disk-1" you actually make /media/disk-1into your /. When you do that you have no /dev from which to access devices. After you run
Code:
mount -o bind /dev /media/disk-1/dev
Code:
chroot /media/disk-1
Comment