When configuring rclone-drive.service, an error keeps appearing

What is the problem you are having with rclone?

After I modified rclone-drive.service, it kept appearing [/etc/systemd/system/rclone-drive.service:12] Missing'='. Refer to the forum’s solution, I deleted . But this error still appeared, I tried to stop, but a new error occurred:'Failed to stop rclone.service: Unit rclone.service not loaded'. I have put this file in /etc/systemd/system, and I don't know why this problem occurs.

What is your rclone version (output from rclone version)

rclone v1.57.0
  • os/version: centos 7.9.2009 (64 bit)
  • os/kernel: 3.10.0-1160.49.1.el7.x86_64 (x86_64)
  • os/type: linux
  • os/arch: amd64
  • go/version: go1.17.2
  • go/linking: static
  • go/tags: none

Which cloud storage system are you using? (eg Google Drive)

Google Drive

The command you were trying to run (eg rclone copy /tmp remote:tmp)

[Unit]
Description=RClone Service
Wants=network-online.target
After=network-online.target

[Service]
Type=notify
KillMode=none
RestartSec=5
ExecStart=/usr/bin/rclone mount plex: /home/gdrive
# Google Drive is a polling remote so this value can be set very high and any changes are detected via polling.
--dir-cache-time 5000h \
# Set the log level
--log-level NOTICE \
# I reduce the poll interval down to 10 seconds as this makes changes appear fast the API quotas per day are huge
--poll-interval 10s \
# This is setting the file permission on the mount to user and group have the same access and other can read
--umask 002 \
# Please set this to your own value below
--user-agent someappname101 \
# This sets up the remote control daemon so you can issue rc commands locally
--rc \
# This is the default port it runs on
--rc-addr :5572 \
# no-auth is used as no one else uses my server and it is not a shared seedbox
--rc-no-auth \
# The local disk used for caching
--cache-dir=/tmp/cache \
#
# My quota per user / per 100 seconds is 20,000 requests. This can be found in your quota section.
# This changes the sleep calls to something much lower to take advantage of the API boost.
# change the min sleep from 100ms
--drive-pacer-min-sleep 10ms \
# Changing to have the ability to burst higher
--drive-pacer-burst 200 \
# This is used for caching files to local disk for streaming
--vfs-cache-mode full \
# This limits the cache size to the value below
--vfs-cache-max-size 50G \
# This limits the age in the cache if the size is reached and it removes the oldest files first
--vfs-cache-max-age 5000h \
# The polling interval for increased based on there is enough buffer space
--vfs-cache-poll-interval 5m \
# Add read ahead buffer to network latency issues
--vfs-read-ahead 2G \
# This sets a per file bandwidth control and I limit this to a little bigger than my largest bitrate I'd want to play
--bwlimit-file 32M
ExecStop=/usr/bin/fusermount -uz /home/gdrive
ExecStartPost=/usr/bin/rclone rc vfs/refresh recursive=true --rc-addr 127.0.0.1:5572 _async=true
Restart=on-failure
User=root
Group=root

[Install]
WantedBy=multi-user.target

The rclone config contents with secrets removed.

[root@vmi733424 ~]# rclone config show
[plex]
type = drive
client_id = t.com
client_secret = R9
scope = drive
token = {"access_token":"}
team_drive = 

A log from the command with the -vv flag

12月 14 07:31:44 vmi733424.contaboserver.net systemd[1]: [/etc/systemd/system/rclone-drive.service:12] Missing '='.
12月 14 07:37:43 vmi733424.contaboserver.net systemd[1]: [/etc/systemd/system/rclone-drive.service:12] Missing '='.
12月 14 07:37:43 vmi733424.contaboserver.net systemd[1]: [/etc/systemd/system/rclone-drive.service:12] Missing '='.
12月 14 07:37:43 vmi733424.contaboserver.net systemd[1]: [/etc/systemd/system/rclone-drive.service:12] Missing '='.
12月 14 07:37:56 vmi733424.contaboserver.net systemd[1]: [/etc/systemd/system/rclone-drive.service:12] Missing '='.
12月 14 07:37:56 vmi733424.contaboserver.net systemd[1]: [/etc/systemd/system/rclone-drive.service:12] Missing '='.
12月 14 07:37:56 vmi733424.contaboserver.net systemd[1]: [/etc/systemd/system/rclone-drive.service:12] Missing '='.
12月 14 07:40:23 vmi733424.contaboserver.net systemd[1]: [/etc/systemd/system/rclone-drive.service:12] Missing '='.
12月 14 07:41:01 vmi733424.contaboserver.net systemd[1]: [/etc/systemd/system/rclone-drive.service:12] Missing '='.
12月 14 07:58:08 vmi733424.contaboserver.net systemd[1]: [/etc/systemd/system/rclone-drive.service:12] Missing '='.

You are missing a \ as it tells on line 12 is the error so check above that line.

ExecStart=/usr/bin/rclone mount plex: /home/gdrive
# Google Drive is a polling remote so this value can be set very high and any changes are detected via polling.
--dir-cache-time 5000h \

needs a \ on the execstart line

ExecStart=/usr/bin/rclone mount plex: /home/gdrive \
# Google Drive is a polling remote so this value can be set very high and any changes are detected via polling.
--dir-cache-time 5000h \

You need to:

systemctl daemon-reload

Once you make changes.

Start it up and share the full service file if you have errors.

[root@racknerd-908778 ~]# systemctl daemon-reload
[root@racknerd-908778 ~]# systemctl stop rclone-drive.service
Failed to stop rclone-drive.service: Unit rclone-drive.service not loaded.
[root@racknerd-908778 ~]#

Often like this

That's telling you it is not started.

You need to start the service.

[root@racknerd-908778 ~]# systemctl start rclone-drive.service
Failed to start rclone-drive.service: Unit is not loaded properly: Bad message.
See system logs and 'systemctl status rclone-drive.service' for details.
[root@racknerd-908778 ~]# systemctl status rclone-drive.service
● rclone-drive.service - RClone Service
   Loaded: error (Reason: Bad message)
   Active: inactive (dead)

12月 14 09:22:11 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.

I have started it, but it still fails to start!

How should i solve this problem?

[root@racknerd-908778 ~]# systemctl status rclone-drive.service
● rclone-drive.service - RClone Service
   Loaded: error (Reason: Bad message)
   Active: inactive (dead)

12月 14 09:32:56 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:39:43 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:39:53 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:40:01 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:40:01 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:40:01 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:40:09 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:40:13 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:42:18 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:42:58 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.

You need to do that again.

[root@racknerd-908778 ~]# systemctl daemon-reload
[root@racknerd-908778 ~]# systemctl stop rclone-drive.service
Failed to stop rclone-drive.service: Unit rclone-drive.service not loaded.
[root@racknerd-908778 ~]# systemctl start rclone-drive.service
Failed to start rclone-drive.service: Unit is not loaded properly: Bad message.
See system logs and 'systemctl status rclone-drive.service' for details.
[root@racknerd-908778 ~]# systemctl status rclone-drive.service -l
● rclone-drive.service - RClone Service
   Loaded: error (Reason: Bad message)
   Active: inactive (dead)

12月 14 09:40:01 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:40:09 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:40:13 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:42:18 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:42:58 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 10:18:29 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 10:18:29 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 10:18:29 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 10:18:35 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 10:19:13 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.

This is the whole process!

Can you please share the full service file that you changed/updated?

Can I upload to Google drive?

In your first post, you did:

When configuring rclone-drive.service, an error keeps appearing - Help and Support - rclone forum

Just copy and paste in the updated file like you did in your very first post.

PUT IN NEW SERVICE FILE
[Unit]
Description=RClone Service
Wants=network-online.target
After=network-online.target

[Service]
Type=notify
KillMode=none
RestartSec=5
ExecStart=/usr/bin/rclone mount plex: /home/gdrive \
--dir-cache-time 5000h \
# Set the log level
--log-level NOTICE \
# I reduce the poll interval down to 10 seconds as this makes changes appear fast the API quotas per day are huge
--poll-interval 10s \
# This is setting the file permission on the mount to user and group have the same access and other can read
--umask 002 \
# Please set this to your own value below
--user-agent someappname101 \
# This sets up the remote control daemon so you can issue rc commands locally
--rc \
# This is the default port it runs on
--rc-addr :5572 \
# no-auth is used as no one else uses my server and it is not a shared seedbox
--rc-no-auth \
# The local disk used for caching
--cache-dir=/tmp/cache \
# My quota per user / per 100 seconds is 20,000 requests. This can be found in your quota section.
# This changes the sleep calls to something much lower to take advantage of the API boost.
# change the min sleep from 100ms
--drive-pacer-min-sleep 10ms \
# Changing to have the ability to burst higher
--drive-pacer-burst 200 \
# This is used for caching files to local disk for streaming
--vfs-cache-mode full \
# This limits the cache size to the value below
--vfs-cache-max-size 50G \
# This limits the age in the cache if the size is reached and it removes the oldest files first
--vfs-cache-max-age 5000h \
# The polling interval for increased based on there is enough buffer space
--vfs-cache-poll-interval 5m \
# Add read ahead buffer to network latency issues
--vfs-read-ahead 2G \
# This sets a per file bandwidth control and I limit this to a little bigger than my largest bitrate I'd want to play
--bwlimit-file 32M
ExecStop=/usr/bin/fusermount -uz /home/gdrive
ExecStartPost=/usr/bin/rclone rc vfs/refresh recursive=true --rc-addr 127.0.0.1:5572 _async=true
Restart=on-failure
User=root
Group=root

[Install]
WantedBy=multi-user.target

Can you please do:

date
cat /etc/systemd/system/rclone-drive.service
systemctl daemon-reload
systemctl start rclone-drive
journalctl rclone-drive -b
date

and share the full output.

[root@racknerd-908778 emby]# cat /etc/systemd/system/rclone-drive.service
[Unit]
Description=RClone Service
Wants=network-online.target
After=network-online.target

[Service]
Type=notify
KillMode=none
RestartSec=5
ExecStart=/usr/bin/rclone mount plex: /home/gdrive \
--dir-cache-time 5000h \
# Set the log level
--log-level NOTICE \
# I reduce the poll interval down to 10 seconds as this makes changes appear fast the API quotas per day are huge
--poll-interval 10s \
# This is setting the file permission on the mount to user and group have the same access and other can read
--umask 002 \
# Please set this to your own value below
--user-agent someappname101 \
# This sets up the remote control daemon so you can issue rc commands locally
--rc \
# This is the default port it runs on
--rc-addr :5572 \
# no-auth is used as no one else uses my server and it is not a shared seedbox
--rc-no-auth \
# The local disk used for caching
--cache-dir=/tmp/cache \
# My quota per user / per 100 seconds is 20,000 requests. This can be found in your quota section.
# This changes the sleep calls to something much lower to take advantage of the API boost.
# change the min sleep from 100ms
--drive-pacer-min-sleep 10ms \
# Changing to have the ability to burst higher
--drive-pacer-burst 200 \
# This is used for caching files to local disk for streaming
--vfs-cache-mode full \
# This limits the cache size to the value below
--vfs-cache-max-size 50G \
# This limits the age in the cache if the size is reached and it removes the oldest files first
--vfs-cache-max-age 5000h \
# The polling interval for increased based on there is enough buffer space
--vfs-cache-poll-interval 5m \
# Add read ahead buffer to network latency issues
--vfs-read-ahead 2G \
# This sets a per file bandwidth control and I limit this to a little bigger than my largest bitrate I'd want to play
--bwlimit-file 32M
ExecStop=/usr/bin/fusermount -uz /home/gdrive
ExecStartPost=/usr/bin/rclone rc vfs/refresh recursive=true --rc-addr 127.0.0.1:5572 _async=true
Restart=on-failure
User=root
Group=root

[Install]
WantedBy=multi-user.target[root@racknerd-908778 emby]# systemctl daemon-reload
[root@racknerd-908778 emby]# systemctl start rclone-drive
Failed to start rclone-drive.service: Unit is not loaded properly: Bad message.
See system logs and 'systemctl status rclone-drive.service' for details.
[root@racknerd-908778 emby]# journalctl rclone-drive -b
Failed to add match 'rclone-drive': 无效的参数
Failed to add filters: 无效的参数
[root@racknerd-908778 emby]# 

Sorry as I had a typo and you neglected to run the date commands as I asked.

date
cat /etc/systemd/system/rclone-drive.service
systemctl daemon-reload
systemctl start rclone-drive
journalctl -u rclone-drive -b
date
[root@racknerd-908778 ~]# cat /etc/systemd/system/rclone-drive.service
[Unit]
Description=RClone Service
Wants=network-online.target
After=network-online.target

[Service]
Type=notify
KillMode=none
RestartSec=5
ExecStart=/usr/bin/rclone mount plex: /home/gdrive \
--dir-cache-time 5000h \
# Set the log level
--log-level NOTICE \
# I reduce the poll interval down to 10 seconds as this makes changes appear fast the API quotas per day are huge
--poll-interval 10s \
# This is setting the file permission on the mount to user and group have the same access and other can read
--umask 002 \
# Please set this to your own value below
--user-agent someappname101 \
# This sets up the remote control daemon so you can issue rc commands locally
--rc \
# This is the default port it runs on
--rc-addr :5572 \
# no-auth is used as no one else uses my server and it is not a shared seedbox
--rc-no-auth \
# The local disk used for caching
--cache-dir=/tmp/cache \
# My quota per user / per 100 seconds is 20,000 requests. This can be found in your quota section.
# This changes the sleep calls to something much lower to take advantage of the API boost.
# change the min sleep from 100ms
--drive-pacer-min-sleep 10ms \
# Changing to have the ability to burst higher
--drive-pacer-burst 200 \
# This is used for caching files to local disk for streaming
--vfs-cache-mode full \
# This limits the cache size to the value below
--vfs-cache-max-size 50G \
# This limits the age in the cache if the size is reached and it removes the oldest files first
--vfs-cache-max-age 5000h \
# The polling interval for increased based on there is enough buffer space
--vfs-cache-poll-interval 5m \
# Add read ahead buffer to network latency issues
--vfs-read-ahead 2G \
# This sets a per file bandwidth control and I limit this to a little bigger than my largest bitrate I'd want to play
--bwlimit-file 32M
ExecStop=/usr/bin/fusermount -uz /home/gdrive
ExecStartPost=/usr/bin/rclone rc vfs/refresh recursive=true --rc-addr 127.0.0.1:5572 _async=true
Restart=on-failure
User=root
Group=root

[Install]
WantedBy=multi-user.target[root@racknerd-908778 ~]# systemctl daemon-reload
[root@racknerd-908778 ~]# systemctl start rclone-drive
Failed to start rclone-drive.service: Unit is not loaded properly: Bad message.
See system logs and 'systemctl status rclone-drive.service' for details.
[root@racknerd-908778 ~]# journalctl -u rclone-drive -b
-- Logs begin at 二 2021-12-14 01:18:35 EST, end at 二 2021-12-14 10:45:56 EST. --
12月 14 09:16:28 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:16:28 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:16:28 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:16:45 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:16:45 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:16:45 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:22:11 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:22:11 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:22:11 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:24:34 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:28:22 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:28:34 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:40:01 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:40:09 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:40:13 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:42:18 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:42:58 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 10:18:29 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 10:18:29 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 10:18:29 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 10:18:35 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 10:19:13 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 10:39:13 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 10:45:56 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
~
~
~
~
~
~
~
~
~
lines 23-34/34 (END)

Is that right?

In the window below:

date
cat /etc/systemd/system/rclone-drive.service
systemctl daemon-reload
systemctl start rclone-drive
journalctl -u rclone-drive -b
date

Copy and paste all the contents into a terminal and share the full output.

[root@racknerd-908778 ~]# date
2021年 12月 14日 星期二 10:49:31 EST
[root@racknerd-908778 ~]# cat /etc/systemd/system/rclone-drive.service
[Unit]
Description=RClone Service
Wants=network-online.target
After=network-online.target

[Service]
Type=notify
KillMode=none
RestartSec=5
ExecStart=/usr/bin/rclone mount plex: /home/gdrive \
--dir-cache-time 5000h \
# Set the log level
--log-level NOTICE \
# I reduce the poll interval down to 10 seconds as this makes changes appear fast the API quotas per day are huge
--poll-interval 10s \
# This is setting the file permission on the mount to user and group have the same access and other can read
--umask 002 \
# Please set this to your own value below
--user-agent someappname101 \
# This sets up the remote control daemon so you can issue rc commands locally
--rc \
# This is the default port it runs on
--rc-addr :5572 \
# no-auth is used as no one else uses my server and it is not a shared seedbox
--rc-no-auth \
# The local disk used for caching
--cache-dir=/tmp/cache \
# My quota per user / per 100 seconds is 20,000 requests. This can be found in your quota section.
# This changes the sleep calls to something much lower to take advantage of the API boost.
# change the min sleep from 100ms
--drive-pacer-min-sleep 10ms \
# Changing to have the ability to burst higher
--drive-pacer-burst 200 \
# This is used for caching files to local disk for streaming
--vfs-cache-mode full \
# This limits the cache size to the value below
--vfs-cache-max-size 50G \
# This limits the age in the cache if the size is reached and it removes the oldest files first
--vfs-cache-max-age 5000h \
# The polling interval for increased based on there is enough buffer space
--vfs-cache-poll-interval 5m \
# Add read ahead buffer to network latency issues
--vfs-read-ahead 2G \
# This sets a per file bandwidth control and I limit this to a little bigger than my largest bitrate I'd want to play
--bwlimit-file 32M
ExecStop=/usr/bin/fusermount -uz /home/gdrive
ExecStartPost=/usr/bin/rclone rc vfs/refresh recursive=true --rc-addr 127.0.0.1:5572 _async=true
Restart=on-failure
User=root
Group=root

[Install]
WantedBy=multi-user.target[root@racknerd-908778 ~]# systemctl daemon-reload
[root@racknerd-908778 ~]# systemctl start rclone-drive
Failed to start rclone-drive.service: Unit is not loaded properly: Bad message.
See system logs and 'systemctl status rclone-drive.service' for details.
[root@racknerd-908778 ~]# journalctl -u rclone-drive -b
-- Logs begin at 二 2021-12-14 01:18:35 EST, end at 二 2021-12-14 10:49:31 EST. --
12月 14 09:16:28 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:16:28 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:16:28 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:16:45 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:16:45 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:16:45 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:22:11 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:22:11 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:22:11 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:24:34 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:28:22 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:28:34 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:28:34 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:28:34 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:29:41 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:32:47 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:32:56 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:39:43 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:39:53 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:40:01 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:40:01 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:40:01 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:40:09 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:40:13 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:42:18 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 09:42:58 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 10:18:29 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 10:18:29 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 10:18:29 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 10:18:35 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 10:19:13 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
12月 14 10:39:13 racknerd-908778 systemd[1]: [/etc/systemd/system/rclone-drive.service:11] Missing '='.
lines 13-33

I am sorry that I misunderstood what you meant, so sorry.

I am sorry that I misunderstood what you meant, so sorry.