由于直接使用 mount 命令在重启后会失效,因此需要将欲挂载的目录写入到记录文件中
/etc/fstab
以 SMB 为例
1 2
# <file system> <dir> <type> <options> <dump> <pass> //SHARE_IP/share_folder /mnt/share_folder cifs user=username,password=password,file_mode=0755,dir_mode=0755 0 0
1 2 3 4
# 卸载已挂载的目录 umount /mnt/share_floder # 使用/etc/fstab文件进行挂载 mount -a
查看挂载目录,成功后下次开机将会自动挂载好