从紧急模式卸载驱动器

从紧急模式卸载驱动器

我正在运行 Ubuntu 18.10。我尝试将我的辅助硬盘(Ubuntu 在 SSD 上)重新格式化为 ext4,并更改 /etc/fstab 文件以在启动时自动挂载驱动器。

我肯定做错了什么,因为现在我只能启动到紧急模式。

按照我的逻辑,如果我只是卸载硬盘并编辑我之前备份的 fstab 文件,问题就会解决。

问题是我不知道如何在紧急模式下执行此操作。所有常用命令都不起作用。

EDIT2:我刚刚通过 USB 启动,这是(我猜有故障的)fstab 文件:

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda2 during installation
UUID=5ece23e7-beea-431d-9960-4ef8f83df532 /               ext4    errors=remount-ro 0       1
# /boot/efi was on /dev/sda1 during installation
UUID=0D53-953B  /boot/efi       vfat    umask=0077      0       1
/swapfile                                 none            swap    sw              0       0

# 1TB DATA HDD:
7264c768-09ca-4e0e-aeb7-018a3a25badb /media/DATA    ext4    defaults    0   0

答案1

如果您的意思是Recovery Mode,并且可以得到#提示,那么请输入:

sudo mount -o rw,remount /# 重新挂载磁盘 rw

cd /etc# 更改目录

sudo pico fstab# 编辑现有的 fstab

或者,如果您希望恢复备份 fstab:

sudo mv fstab fstab.bad# 重命名现有文件,以确保安全

sudo cp fstab.backup fstab#恢复备份的fstab,使用你自己的名字

如果您无法执行任何操作,那么您必须启动到 Ubuntu Live DVD/USB,使用Files(Nautilus)应用程序安装 HDD,单击左侧窗格中的 HDD,导航到 HDD 上的 /etc 目录,编辑 fstab 等。

更新#1:

确保/media/DATA挂载点存在。

在 fstab 中更改此行:

7264c768-09ca-4e0e-aeb7-018a3a25badb /media/DATA    ext4    defaults    0   0

更改为:

UUID=7264c768-09ca-4e0e-aeb7-018a3a25badb /media/DATA    ext4    defaults,nofail    0   2

相关内容