I have installed the cloud storage program, "Copy" and want to uninstall it. How do I do that?
3 Answers
Follow these steps to completely remove Copy from your system:
Disable autostart for each user, if necessary. (You don't need to use
sudoif no other user accounts on your system are using Copy)...sudo rm -rf /home/<user>/.config/autostart/CopyAgent.desktopLog out and log back in. This will shut down the running copy process so it does not re-create the files you are about to delete in step 3. (You can also just kill the "CopyAgent" process using System Monitor if you don't want to log out.)
Execute the following for each user, if necessary. (You don't need to use
sudoif no other user accounts on your system are using Copy).sudo rm -rf /home/<user>/<path_to_users_copy_folder>/.copy.cache/ sudo rm -rf /home/<user>/<path_to_users_copy_folder>/.user_info sudo rm -rf /home/<user>/.copy sudo rm -rf /home/<user>/.iconsIf you had manually installed the Nautilus overlay icons, uninstall them...
sudo <installation_location>/<architecture>/CopyCmd Overlay removeUninstall Copy software...
sudo rm -rf /root/.copyIf you had manually added a launcher shortcut, remove it. Assuming you called the launcher "copy.desktop" do the following.
For all users...
sudo rm /usr/share/applications/copy.desktopOr, for each user...
sudo rm /home/<user>/.local/share/applications/copy.desktop
Note, in the above steps...
- Replace
<user>with the user on your system that is using Copy. - Replace
<path_to_users_copy_folder>with the user's local "Copy" folder (for example,Documents/Copy). - Replace
<installation_location>with the location where you installed Copy (for example/usr/share/copy). - Replace
<architecture>with "x86" (if you have a 32bit computer) or with "x86_64" (if you have a 64bit computer).
- 12,792
cd to the Copy installation directory where CopyAgent and CopyCmd are present
And then enter
sudo ./CopyCmd overlay remove
- 2,176
To uninstall open terminal by press Ctrl + Alt + T in a keyboard, then copy this following to terminal window
sudo apt-get purge --auto-remove copy
- 5,213