You are not logged in.
Hello.
I wrote this Systemd service that I would like to run as normal user.
[Unit]
Description=Google Drive mount
After=network-online.target
Wants=network-online.target
[Service]
ExecStart=/usr/bin/google-drive-ocamlfuse -m '/home/egidio/Google Drive'
ExecStop=/usr/bin/fusermount -u '/home/egidio/Google Drive'
[Install]
WantedBy=default.targetI start it and everything seems fine, but when I try to access the mounted point, I get this error.
[egidio@egidiolaptop user]$ ls -la ~/Google\ Drive
ls: cannot access /home/egidio/Google Drive: Transport endpoint is not connectedIf I run the ExecStart command manually everything works perfectly.
Can you please help me?
Offline