Install Dropbox Client on Ubuntu
Step1:
Enter the following command to download Dropbox on the system. It will create .dropbox-dist in the HOME directory.
sudo su
cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64 | tar xzf -"
sudo apt install libc6 libglapi-mesa libxdamage1 libxfixes3 libxcb-glx0 libxcb-dri2-0 libxcb-dri3-0 libxcb-present0 libxcb-sync1 libxshmfence1 libxxf86vm1 -y
~/.dropbox-dist/dropboxd
cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64 | tar xzf -"
sudo apt install libc6 libglapi-mesa libxdamage1 libxfixes3 libxcb-glx0 libxcb-dri2-0 libxcb-dri3-0 libxcb-present0 libxcb-sync1 libxshmfence1 libxxf86vm1 -y
~/.dropbox-dist/dropboxd
You will get an output with lin, Now open the link in your favourite browser. Note you can also open the above link on any other system.
Enter username and password and Sign In to the account. Once the server connects to the Dropbox account you can see a result saying that your computer is now linked Dropbox with a folder named Dropbox in your home directory.
To check
ls Dropbox
It’s time to install Dropbox CLI (Dropbox Command Line Interface). Dropbox CLI requires Python should be installed. Enter the following commands to install Python and Dropbox CLI.
sudo apt install python
sudo wget -O /usr/local/bin/dropbox "https://www.dropbox.com/download?dl=packages/dropbox.py"
sudo chmod +x /usr/local/bin/dropbox
sudo wget -O /usr/local/bin/dropbox "https://www.dropbox.com/download?dl=packages/dropbox.py"
sudo chmod +x /usr/local/bin/dropbox
List all commands available with Dropbox CLI by typing:
dropbox
Check the status of dropbox by typing
dropbox status
If Dropbox is not active then start service by running following command
dropbox start
Reference:
http://libtechnophile.blogspot.com/
No comments:
Post a Comment