在 Ubuntu 15.04 中,启动修复一直运行,删除所有内核后尝试修复系统

在 Ubuntu 15.04 中,启动修复一直运行,删除所有内核后尝试修复系统

我已删除所有内核。

我正在尝试解决这个问题启动修复从实时 USB

我已启用 LVM

启动修复尝试清除/重新安装内核

我怎样才能解决这个问题?

答案1

进入实时 USB 后,尝试以下评论

sudo -i
apt-get update
apt-get install lvm2

{IF FILE SYSTEM IS ENCRYPTED => DECRYPT}

vgscan --mknodes                        *##not down the volume name##*
mount /dev/<volume-name>/root /mnt      *## For me 'ubuntu-vg' ##*
mount /dev/sda1 /mnt/boot               *## fdisk -l for right sd--##*

mount --bind /dev /mnt/dev 
mount --bind /dev/pts /mnt/dev/pts
mount --bind /proc /mnt/proc
mount --bind /sys /mnt/sys

cp /etc/resolv.conf /mnt/etc/resolv.conf
chroot /mnt

apt-get update    
sudo apt-get install linux-generic
update-grub 
apt-get clean
umount /mnt
reboot

[解密] 如果文件系统已加密,则解密

apt-get install cryptsetup
modprobe dm-crypt
cryptsetup luksOpen /dev/sda1 crypt1  *## fdisk -l to get right sd--##*
*##Write the passphrase##*

致谢京岳他的回答如何重新安装内核

相关内容