如何在每次重启时挂载一个分区?

如何在每次重启时挂载一个分区?

我有一个挂载了 的分区mount -t ext3 /dev/sda3 /foo

每次重启后,我都需要重新挂载。每次重启后如何才能保持挂载状态?

答案1

您需要/etc/fstab为安装创建一个条目,例如:

/dev/sda3 /foo                       ext3    defaults        1 1

更多信息请参阅:

https://help.ubuntu.com/community/Fstab

答案2

有时,由于/etc/fstab条目,可能会遇到严重问题。因此,替代方案是 crontab。

只需在 root 的 crontab 中添加以下条目。

$ sudo crontab -e

@reboot mount -t ext3 /dev/sda3 /foo

答案3

对于来自 Novell 的 OpenSuse使用 Linux 在启动时自动挂载 Windows 共享

//winserver/share /mnt/winshare cifs gid=users,file_mode=0664,dir_mode=0775,auto,username=john,password=johnpass 0 0

如果文件夹名称包含空格,请添加单引号:

'//winserver/share with spaces' '/mnt/winshare with spaces' cifs gid=users,file_mode=0664,dir_mode=0775,auto,username=john,password=johnpass 0 0

如果您不想在 fstab 中输入密码,请查看文章末尾。

相关内容