在网上查到 使用vim 修改/etc/fstab 文件可以自动挂载硬盘
添加的信息为: UUID=XXX /disk ext4 defaults 0 1
问题出在 最后那个 1 上!
下面对/etc/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).
#
#
# / was on /dev/sda1 during installation
UUID=886f96a1-025d-43b9-9467-61177884dff7 / ext4 errors=remount-ro 0 1
# swap was on /dev/sda6 during installation
UUID=611bb47a-b187-4257-a711-9e73ae4e08a3 none swap sw 0 0
各标签表示的信息如下:
1.
2.
3.
4.
auto: 开机自动挂载
noauto: 开机不自动挂载
defaults: 按照大多数永久文件系统的缺省值设置挂载定义
ro: 按只读权限挂载
rw: 按可读可写权限挂载
user: 任何用户都可以挂载
user: 同步磁盘与内存中的数据,async 则是异步
注意光驱和软驱只有在装有介质时才可以进行挂载,因此它是 noauto。
5.
6.
问题出在最后的
设置完后重启 无法进入系统界面 解决方案如下:
输入root密码进入系统shell 将恢复模式修改为读写模式:mount -o remount,rw /
修改/etc/fstab文件 删除最后添加的一行挂载参数 保存
修改为只读模式:mount -o remount,ro /
再次重启 init 6
重启完毕后 问题解决 进入系统。对硬盘进行重新挂载:
sudo mount /dev/sdb1 /disk
再次修改/etc/fstab文件 在最后一行添加 /dev/sdb1 /disk ext4 defaults 0 0 保存退出。
挂载完毕。
参考:
https://blog.csdn.net/ben3726/article/details/25160123