刚刚转移到Linux。我的发行版 - KDE Neon。基于Ubuntu。
我通过本指南使用 google Drive ocamlfuse 安装了 Google Drive:
https://linoxy.com/tools/how-use-google-drive-ubuntu-linux/
现在,当我重新启动系统时,Google Drive 无法工作(它不同步到我创建的文件夹),我必须手动运行命令
google-drive-ocamlfuse ~/Google\ Drive
每次我重新启动计算机以使 Google Drive 正常工作时。
为什么每次重新启动后都必须运行它以及如何才能在重新启动后不需要运行该命令?
答案1
您可以使用 systemd 服务在启动时启动它。三个简单的步骤。
(1)创建服务文件。您将需要 root 权限,因此请使用 sudo。替换“ExecStart”行中的“User”和目录参数,除非您的名字是 Paul。
$ sudo cat /etc/systemd/system/google-drive-ocamlfuse.service
[Unit]
Description=Start GoogleDrive ocamlfuse at boot
After=network.target
StartLimitIntervalSec=0
[Service]
Type=simple
Restart=always
RestartSec=1
User=paul
ExecStart=/usr/bin/google-drive-ocamlfuse /home/paul/GoogleDrive
[Install]
WantedBy=multi-user.target
然后 (2) 启动它,并 (3) 在启动时启用它:
$ sudo systemctl start google-drive-ocamlfuse
$ sudo systemctl enable google-drive-ocamlfuse
如果您遇到任何问题,请告诉我。