Run Command in Background on Linux
Tested on : Ubuntu Server 20.04 LTS Today, I want to show you how to run linux command in background even the terminal close. I will use rclone as example application to run in background. It’s not difficult to run command in background. You just need to add & symbol and type disown command after the first command run in the background. Example : rclone sync -P /mnt/disk4/pictures /mnt/disks/external/pictures > ....