问题:
我就是无法让它发挥作用。我已使用以下命令在 fstab 上设置了 samba 共享服务器:
//192.168.178.145/Rsync_Dell /mnt/Rsync_Dell cifs credentials=/home/Alessio/.smbcredentials,uid=1001,gid=100 0 0
其中 .smbcredentials 存储用户名、密码和域名。
sudo crontab -e -u root
我使用crontab 中的作业命令保存了 rsync 作业:
0 1-23 * * 0 sudo rsync -azEo --delete-delay /home/Alessio/ /mnt/Rsync_Dell/ --exclude=".*"
这项工作将无法进行。更具体地说,电脑没有正确安装 samba 共享服务器,当它运行作业时,它只是备份到本地文件系统/run/user/1000/gvfs/smb-share:domain=WORKGROUP...
而不是 Windows 共享上。我已经测试了安装并且它可以正确安装,但 fstab 似乎不理解正确的路径。
附加信息:
Distro info:
Distributor ID: LinuxMint
Description: Linux Mint 19.2 Tina
Release: 19.2
Codename: tina
文件中检索到的信息/etc/systemd/system/multi-user.target.wants/cron.service
[Unit]
Description=Regular background program processing daemon
Documentation=man:cron(8)
[Service]
EnvironmentFile=-/etc/default/cron
ExecStart=/usr/sbin/cron -f $EXTRA_OPTS
IgnoreSIGPIPE=false
KillMode=process
[Install]
WantedBy=multi-user.target