Kırık bir Ubunu 14.04'ü chroot ile onarmaya çalışıyorum. Yaptığım şey, Ubuntu'yu USB'den önyüklemek ve onarılması ve bu sisteme chroot ile değiştirilmesi gereken orijinal sistemi kurmaktır:
sudo mount /dev/sdXY /mnt
sudo mount -o bind /dev /mnt/dev
sudo mount -o bind /sys /mnt/sys
sudo mount -t proc /proc /mnt/proc
sudo cp /proc/mounts /mnt/etc/mtab
sudo chroot /mnt /bin/bash
Bu iyi çalıştı, ancak chroot
ortamda internete erişimim yok, bu yüzden apt
ana bilgisayar adlarını çözemezsiniz. Ne yapmam gerekiyor?
ping www.askubuntu.com
de çalışmıyor.
for d in dev sys run proc; do sudo mount -o bind /$d /mnt/$d ; done