启动时安装驱动器失败

启动时安装驱动器失败

为了安装 sshfs,我有一个 shell 脚本:

#!/bin/bash 
sshfs -o allow_other user@ip-address:/remote/path /local path

如果我在启动服务器后运行该脚本,它将挂载,但如果我/etc/rc.local使用 @reboot 命令将脚本添加到启动时运行或 crontab,它将不会挂载驱动器。
我还尝试将 sshfs 行添加到/etc/fstab,但也失败了。

我尝试将其添加到/etc/fstab

sshfs#user@remote:/path /local/path

那么服务器将无法启动

相关内容