Install pCloud Drive on Ubuntu – 65% Off on Lifetime Plan

pCloud is a cloud storage provider from Switzerland. It offers 10GB free storage upon registration and also allows you to get up to 20GB free space. pCloud client is available for Linux, Mac, windows, iOS and Android. Your files and folders are stored at 5 different servers to keep it safe from server failure. File transfer between you local folder and pCloud Drive is encrypted with TLS/SSL protocol. This tutorial shows how to install pCloud client on Ubuntu desktop and server.

Lifetime Plan

pCloud is the first to offer a lifetime plan in the cloud storage industry. The 2TB lifetime plan costs 350 Euros or 350 USD, depending on where you are located. If you compare it with the $9.99/month price of Dropbox, it’s a pretty good deal if you are a long time subscriber.
pcloud 2tb lifetime plan

Install pCloud Client on Ubuntu Desktop

If you don’t have a pCloud account yet, go to pCloud website and create an account. Then download the pCloud drive client for Linux.

download-pcloud-for-linux

Once it’s downloaded, open your file manager and go to the download destination folder. Then right-click the pcloud binary and select properties in the context menu.

install pcloud ubuntu

Next, select the Permissions tab and tick on Allow executing file as program.

pcloud allow executing as program

Close the pCloud Properties window, then double click the pCloud binary. A login window will popup. Enter your pCloud email address and password.

log in to pcloud drive

After login, a folder named pCloudDrive will appear under your home folder. All files under this folder will be synced with pCloud Drive. Note that this folder doesn’t take any physical space on your hard drive. You can view it as a remote file system which is mounted under your home folder.

pCloudDrive

The pCloud app indicator will also appear in the task bar.

You can select other folder on your hard drive to be synced with pCloud Drive by clicking the app indicator, then select preferences and the sync tab to add new sync folder.

pcloud drive add new sync folder

When the pCloud binary runs for the first time, it creates an start icon on your system, so next time you can start pCloud from your application menu.

How to Install pCloud Drive on Ubuntu Server

The pCloud drive client also has a command line version, which is available at pCloud’s Github repository. And you will find there’s a pre-built deb package for Ubuntu users if you scroll down the Github page.

pcloud pre-built deb package

Download the deb package, then upload it to your Ubuntu 18.04 server with scp command or FTP. For example, I use the following scp command to upload the deb package to my Ubuntu server.

scp ~/Downloads/pcloudcc_2.1.0-1_amd64_ubuntu_18.04.deb [email protected]:~

After that, log into your Ubuntu server via SSH and install the deb package with the following command.

sudo apt install ./pcloudcc_2.1.0-1_amd64_ubuntu_18.04.deb

It will be installed as /usr/bin/pcloudcc. To see how to use the command line client, run

pcloudcc -h

For example, you can use the following command to log into your pCloud account and mount your files under the /home/username/pclouddrive/ folder.

pcloudcc -u [email protected] -p -s -m /home/username/pclouddrive -d

You will be asked to enter your pCloud password and then it will daemonize as a background process. Next time, you don’t need to use the -p and -s option because the password has been saved in a database under the ~/.pcloud/ directory.

Auto-Start pCloud at Boot time on Ubuntu Server

To make a program auto-start at boot time, we can create a systemd service for it. For example, use the Nano command line text editor to create a systemd service for pCloud.

sudo nano /etc/systemd/system/pcloud.service

Add the following lines in the file. Replace username with your real username on the Ubuntu server and replace [email protected] with your pCloud email address.

[Unit]
Description=pCloud Command Line Client
After=network-online.target

[Service]
Type=simple
User=username
Group=username
WorkingDirectory=/home/username/
ExecStart=/usr/bin/pcloudcc -u [email protected] -m /home/username/pclouddrive
Restart=on-failure

[Install]
WantedBy=multi-user.target

Save and close the file. To save a file in Nano text editor, press Ctrl+O, then press Enter to confirm. To exit, press Ctrl+X. Then start and enable this service.

sudo systemctl start pcloud
sudo systemctl enable pcloud

Go to the /home/username/pclouddrive directory. If there are files or folder there, it means everything is working fine. You can also use the following command to check if there’s any errors.

sudo journalctl -eu pcloud

If you change the /etc/systemd/systemd/pcloud.service file, you need to reload systemd with:

sudo systemctl daemon-reload

Then restart pcloud service.

sudo systemctl restart pcloud

Getting More Free Space

You can get up to 20GB free space.

  • Inviting your friends will get you both 1GB additional free space per registration.
  • Subscribing to pCloud newsletter gets you 500MB.
  • Connect Facebook account gets you 500MB
  • and on and on…

File Encryption

Please note that traffic between your pCloud client and the pCloud server is encrypted with TLS/SSL, but that doesn’t mean the file itself is encrypted. It’s essential that you encrypt your files when using an external cloud storage service.

To encrypt your files in the pCloud, you can try their crypto service for free for 14 days. If you are happy with it, buy the premium service at $3.99/month. Or if you are tech savvy, you can always encrypt your local files by yourself using a free disk encryption software like VeraCrypt, so before your local files are transferred to pCloud Drive, they are encrypted and no one can take a peek.

How to Upgrade pCloud on Ubuntu Desktop

When a new version of pCloud comes out, go to the pCloud website to download the latest version and delete the old version from your hard drive. Grant executable permission, then double-click the pCloud binary and you are done.

Wrapping Up

I hope this article helped you to install and use pCloud on Ubuntu desktop and server. As always, if you found this post useful, then subscribe to our free newsletter to get more tips and tricks 🙂

Rate this tutorial
[Total: 18 Average: 4.4]

11 Responses to “Install pCloud Drive on Ubuntu – 65% Off on Lifetime Plan

  • yaokong
    5 years ago

    Hi, have you tried installing pCloud on ubuntu 18.10? Did it work?

    • Xiao Guoan (Admin)
      5 years ago

      The pCloud graphical client works on all current Ubuntu release.

  • Jimmy Golitely
    4 years ago

    Is there some way of installing this by command line on my VPS?

    I bought the 2tb lifetime pCloud deal. Putting this on my 20Gb VPS would be extremely handy!!!

  • I have this problem:

    — Logs begin at Sat 2020-04-25 16:55:14 UTC, end at Sun 2020-04-26 09:05:10 UTC. —
    Apr 26 08:44:21 server systemd[1]: Started pCloud Command Line Client.
    Apr 26 08:44:21 server pcloudcc[17204]: pCloud console client v.2.1.0
    Apr 26 08:44:21 server pcloudcc[17204]: init failed
    Apr 26 08:44:21 server systemd[1]: pcloud.service: Succeeded.
    — Reboot —
    Apr 26 08:48:00 server systemd[1]: Started pCloud Command Line Client.
    Apr 26 08:48:02 server pcloudcc[744]: pCloud console client v.2.1.0
    Apr 26 08:48:06 server pcloudcc[744]: fuse: missing mountpoint parameter
    Apr 26 08:48:06 server pcloudcc[744]: Down: Everything Downloaded| Up: Everything Uploaded, status is CONNECTING
    Apr 26 08:48:07 server pcloudcc[744]: Down: Everything Downloaded| Up: Everything Uploaded, status is SCANNING
    Apr 26 08:48:07 server pcloudcc[744]: Down: Everything Downloaded| Up: Everything Uploaded, status is READY
    Apr 26 08:48:07 server pcloudcc[744]: fuse: missing mountpoint parameter

  • Does anyone know how to use this utility if you use 2-factor authenication?

    • same problem here
      — Logs begin at Mon 2020-02-10 21:36:54 EET, end at Wed 2020-05-27 23:34:26 EEST. —
      Μαΐ 27 23:24:22 ubuntu systemd[1]: Started pCloud Command Line Client.
      Μαΐ 27 23:24:22 ubuntu pcloudcc[21553]: pCloud console client v.2.1.0
      Μαΐ 27 23:24:22 ubuntu pcloudcc[21553]: init failed
      — Reboot —
      Μαΐ 27 23:29:57 ubuntu systemd[1]: Started pCloud Command Line Client.
      Μαΐ 27 23:30:02 ubuntu pcloudcc[1397]: pCloud console client v.2.1.0
      Μαΐ 27 23:30:44 ubuntu pcloudcc[1397]: fusermount: mount failed: Operation not permitted
      Μαΐ 27 23:30:44 ubuntu pcloudcc[1397]: Down: Everything Downloaded| Up: Everything Uploaded, status is CONNECTING
      Μαΐ 27 23:30:44 ubuntu pcloudcc[1397]: Down: Everything Downloaded| Up: Everything Uploaded, status is BAD_LOGIN_TOKEN
      Μαΐ 27 23:34:10 ubuntu systemd[1]: Stopping pCloud Command Line Client…
      Μαΐ 27 23:34:10 ubuntu systemd[1]: Stopped pCloud Command Line Client.
      Μαΐ 27 23:34:10 ubuntu systemd[1]: Started pCloud Command Line Client.
      Μαΐ 27 23:34:10 ubuntu pcloudcc[2743]: pCloud console client v.2.1.0
      Μαΐ 27 23:34:11 ubuntu pcloudcc[2743]: Down: Everything Downloaded| Up: Everything Uploaded, status is CONNECTING
      Μαΐ 27 23:34:12 ubuntu pcloudcc[2743]: Down: Everything Downloaded| Up: Everything Uploaded, status is BAD_LOGIN_TOKEN

  • service would start but immediately exit until i added

    RemainAfterExit=true

    in the

    [Service]

    section.

    hope this helps someone.

    NAME=”Ubuntu”
    VERSION=”20.04.1 LTS (Focal Fossa)”

  • JosephKed
    10 months ago

    I suffer from continuing migraines and include tried numerous medications with speck success. A cocker recommended CBD, so I decided to present it a try. I was amazed at how quickly it helped to alleviate my migraine misery and nausea. I at the moment https://www.cornbreadhemp.com/collections/full-spectrum-cbd-oil utter CBD grease regularly as a preventative stamp, and include noticed a significant let up in the frequency and beastliness of my migraines. I highly put forward CBD also in behalf of anyone looking as a unartificial another to stock migraine medications.

  • Germanlot
    6 months ago

    I recently embarked on a journey to thrive autoflower weed seeds for the win initially in good time, and it was an incredibly satisfying experience. As a beginner, I was initially apprehensive, but the process https://trilogeneseeds.com/collections/cheap-cannabis-seeds turned out like a light to be surprisingly straightforward. Primary misguided, the germination phase was mellow sailing. The seeds sprouted shortly, and their vigor was impressive. I followed the recommended guidelines apropos lighting, nutrients, and watering, and the plants responded positively. One of the biggest advantages of autoflowering strains is their know-how to automatically transition from vegetative enlargement to flowering, regardless of mild cycle.

Leave a Comment

  • Comments with links are moderated by admin before published.
  • Your email address will not be published.
  • Use <pre> ... </pre> HTML tag to quote the output from your terminal/console.
  • Please use the community (https://community.linuxbabe.com) for questions unrelated to this article.
  • I don't have time to answer every question. Making a donation would incentivize me to spend more time answering questions.

The maximum upload file size: 2 MB. You can upload: image. Links to YouTube, Facebook, Twitter and other services inserted in the comment text will be automatically embedded. Drop file here