Code in this video_How to Mount Google Drive on Linux with Rclone | Auto Sync Setup

✳️Replace the highlighted information with your own

	
sudo apt install curl unzip fuse3 vim -y

curl https://rclone.org/install.sh | sudo bash


[Unit]
Description=Rclone Google Drive Mount
After=network-online.target

[Service]
Type=simple
ExecStart=/usr/bin/rclone mount CONFIG_NAME:FOLDER_NAME_ON_GOOGLE_DRIVE /FOLDER_NAME_ON_SERVER --config=/root/.config/rclone/rclone.conf --allow-other --vfs-cache-mode=writes
ExecStop=/bin/fusermount -u /FOLDER_NAME_ON_SERVER
Restart=always
RestartSec=10
User=root

[Install]
WantedBy=multi-user.target

Read more

Leave a Reply

Your email address will not be published. Required fields are marked *