Debian
從備份恢復 Debian 後如何恢復 GRUB?
我需要備份我的 Debian VPS 伺服器並在虛擬機上創建副本。我正在按照頁面https://help.ubuntu.com/community/BackupYourSystem/TAR上的說明進行操作。
腳步:
- 我已經完成了整個作業系統的 tar 存檔,
- 我已經將它複製到主機中,
- 我已經創建了 Debian 虛擬機,
- 我已經在 VM 上啟動了 Debian 8 Jessie livecd,
- 我已經對磁碟進行了分區,
- 我已經安裝了根分區
/mnt
,- 我已經進入 dir
/mnt
,- 我已經
backup.tar.gz
通過 ssh 複製到/mnt
,- 我已經提取了存檔
backup.tar.gz
,/mnt
- 我已經執行了命令
for f in dev dev/pts proc ; do mount --bind /$f /mnt/$f ; done
,- 我已經 chroot 到
/mnt
,- 我已經執行了命令
dpkg-reconfigure grub-pc
,- 我已經安裝了 /dev/sda1
/boot
,- 我已經執行了
grub-install /dev/sda
。我
device node not found
在最後一步出錯:root@debian:/# grub-install /dev/sda Installing for i386-pc platform. device node not found device node not found device node not found device node not found device node not found device node not found device node not found device node not found device node not found device node not found device node not found Installation finished. No error reported.
誰能幫我?
您還需要安裝
/sys
到/mnt
.