apt-get remove upstart 后 Debain 不再启动

apt-get remove upstart 后 Debain 不再启动

我无法再启动服务器。我遇到以下问题:

Loading, please wait...
Target filesystem doesn't have requested /sbin/init.
/bin/sh: can't access tty; job control turned off
# _

我的系统就那样呆在那里。在我删除 upstart 后发生了这种情况

apt-get remove upstart

然后重新启动,因为我总是在运行任何 apt-get 命令后重新启动系统。

当我在恢复模式下运行系统时,出现内核恐慌,所以我无法启动恢复模式。

请帮我。

答案1

从 Live CD 启动。您可以尝试启动到救援模式(http://www.cyberciti.biz/faq/howto-boot-ubuntu-linux-rescue-mode/)并尝试修复您的系统,或者您可以尝试重新安装,但不要格式化文件系统,这样您就不会覆盖您写入磁盘的任何数据。

无论哪种方式,您都可以使用救援模式备份数据。

答案2

就像 ACase 所说的那样,从 Live CD 启动。然后,挂载您的数据:

cat /proc/partitions 查找可用的分区 mkdir /mnt/my_disk mount -t /mnt/my_disk chroot /mnt/my_disk apt-get install upstart umount /mnt/my_disk 重新启动而不使用 Live CD

相关内容