Can't find “install” option for Dropbox installation
I have been trying to install Dropbox from the software center but I can't find the "install" option, it only shows the "use this source" option. I also tried to install it via terminal and still failed.
software-installation dropbox
add a comment |
I have been trying to install Dropbox from the software center but I can't find the "install" option, it only shows the "use this source" option. I also tried to install it via terminal and still failed.
software-installation dropbox
Did you try to download it from dropbox site and install? dropbox.com/install?os=lnx
– Din
Jun 10 '14 at 12:20
I just tried and got it..Thanks a lot
– user292208
Jun 10 '14 at 14:07
add a comment |
I have been trying to install Dropbox from the software center but I can't find the "install" option, it only shows the "use this source" option. I also tried to install it via terminal and still failed.
software-installation dropbox
I have been trying to install Dropbox from the software center but I can't find the "install" option, it only shows the "use this source" option. I also tried to install it via terminal and still failed.
software-installation dropbox
software-installation dropbox
edited Dec 31 '18 at 19:14
user336085
2323613
2323613
asked Jun 10 '14 at 12:17
user292208user292208
11
11
Did you try to download it from dropbox site and install? dropbox.com/install?os=lnx
– Din
Jun 10 '14 at 12:20
I just tried and got it..Thanks a lot
– user292208
Jun 10 '14 at 14:07
add a comment |
Did you try to download it from dropbox site and install? dropbox.com/install?os=lnx
– Din
Jun 10 '14 at 12:20
I just tried and got it..Thanks a lot
– user292208
Jun 10 '14 at 14:07
Did you try to download it from dropbox site and install? dropbox.com/install?os=lnx
– Din
Jun 10 '14 at 12:20
Did you try to download it from dropbox site and install? dropbox.com/install?os=lnx
– Din
Jun 10 '14 at 12:20
I just tried and got it..Thanks a lot
– user292208
Jun 10 '14 at 14:07
I just tried and got it..Thanks a lot
– user292208
Jun 10 '14 at 14:07
add a comment |
3 Answers
3
active
oldest
votes
First you have to enable repository and update from ppa.
dropbox is available from main repository for 14.04. so run following command in terminal to enable main & universe repository:
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe"
The main component contains applications that are free software, can be freely redistributed and are fully supported by the Ubuntu team. & The universe component is a snapshot of the free, open-source, and Linux world.
Then setup key:
sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 5044912E
Then setup repository:
sudo sh -c 'echo "deb http://linux.dropbox.com/ubuntu/ trusty main" >> /etc/apt/sources.list.d/dropbox.list'
Then update and install:
sudo apt-get update
sudo apt-get install dropbox
After that you can launch it from dash:

I have tested it and worked for me. Hope it helps.
Note: If your Ubuntu version is not trusty then change "release-name" in
sudo sh -c 'echo "deb http://linux.dropbox.com/ubuntu/ <release-name> main" >> /etc/apt/sources.list.d/dropbox.list' at setting up repository. You can also run $(lsb_release -sc) to find release-name.
W: Failed to fetch linux.dropbox.com/ubuntu/dists/<release-main>/Release.gpg Unable to connect to linux.dropbox.com:http: I keep getting this error messages "W: Failed to fetch ppa.launchpad.net/tucan/unstable/ubuntu/dists/precise/… Unable to connect to ppa.launchpad.net:http:"
– user292208
Jun 10 '14 at 13:45
Did you replace <release-name>with your release name (e.g., trusty)?
– amc
Jun 10 '14 at 14:04
@amc No,i downloaded it from the dropbox site
– user292208
Jun 10 '14 at 14:18
add a comment |
Supposing you are using nautilus as your file manager, open a terminal and write
sudo apt-get install nautilus-dropbox
(or search for that package in the software center)
this shpuld then install dropbox automatically
add a comment |
From Terminal use the following command,
sudo apt-get install nautilus-dropbox
If you have an no Dropbox indicator in the top panel use the following command,
sudo apt-get install libappindicator1
Once installed restart.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f481298%2fcant-find-install-option-for-dropbox-installation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
First you have to enable repository and update from ppa.
dropbox is available from main repository for 14.04. so run following command in terminal to enable main & universe repository:
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe"
The main component contains applications that are free software, can be freely redistributed and are fully supported by the Ubuntu team. & The universe component is a snapshot of the free, open-source, and Linux world.
Then setup key:
sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 5044912E
Then setup repository:
sudo sh -c 'echo "deb http://linux.dropbox.com/ubuntu/ trusty main" >> /etc/apt/sources.list.d/dropbox.list'
Then update and install:
sudo apt-get update
sudo apt-get install dropbox
After that you can launch it from dash:

I have tested it and worked for me. Hope it helps.
Note: If your Ubuntu version is not trusty then change "release-name" in
sudo sh -c 'echo "deb http://linux.dropbox.com/ubuntu/ <release-name> main" >> /etc/apt/sources.list.d/dropbox.list' at setting up repository. You can also run $(lsb_release -sc) to find release-name.
W: Failed to fetch linux.dropbox.com/ubuntu/dists/<release-main>/Release.gpg Unable to connect to linux.dropbox.com:http: I keep getting this error messages "W: Failed to fetch ppa.launchpad.net/tucan/unstable/ubuntu/dists/precise/… Unable to connect to ppa.launchpad.net:http:"
– user292208
Jun 10 '14 at 13:45
Did you replace <release-name>with your release name (e.g., trusty)?
– amc
Jun 10 '14 at 14:04
@amc No,i downloaded it from the dropbox site
– user292208
Jun 10 '14 at 14:18
add a comment |
First you have to enable repository and update from ppa.
dropbox is available from main repository for 14.04. so run following command in terminal to enable main & universe repository:
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe"
The main component contains applications that are free software, can be freely redistributed and are fully supported by the Ubuntu team. & The universe component is a snapshot of the free, open-source, and Linux world.
Then setup key:
sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 5044912E
Then setup repository:
sudo sh -c 'echo "deb http://linux.dropbox.com/ubuntu/ trusty main" >> /etc/apt/sources.list.d/dropbox.list'
Then update and install:
sudo apt-get update
sudo apt-get install dropbox
After that you can launch it from dash:

I have tested it and worked for me. Hope it helps.
Note: If your Ubuntu version is not trusty then change "release-name" in
sudo sh -c 'echo "deb http://linux.dropbox.com/ubuntu/ <release-name> main" >> /etc/apt/sources.list.d/dropbox.list' at setting up repository. You can also run $(lsb_release -sc) to find release-name.
W: Failed to fetch linux.dropbox.com/ubuntu/dists/<release-main>/Release.gpg Unable to connect to linux.dropbox.com:http: I keep getting this error messages "W: Failed to fetch ppa.launchpad.net/tucan/unstable/ubuntu/dists/precise/… Unable to connect to ppa.launchpad.net:http:"
– user292208
Jun 10 '14 at 13:45
Did you replace <release-name>with your release name (e.g., trusty)?
– amc
Jun 10 '14 at 14:04
@amc No,i downloaded it from the dropbox site
– user292208
Jun 10 '14 at 14:18
add a comment |
First you have to enable repository and update from ppa.
dropbox is available from main repository for 14.04. so run following command in terminal to enable main & universe repository:
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe"
The main component contains applications that are free software, can be freely redistributed and are fully supported by the Ubuntu team. & The universe component is a snapshot of the free, open-source, and Linux world.
Then setup key:
sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 5044912E
Then setup repository:
sudo sh -c 'echo "deb http://linux.dropbox.com/ubuntu/ trusty main" >> /etc/apt/sources.list.d/dropbox.list'
Then update and install:
sudo apt-get update
sudo apt-get install dropbox
After that you can launch it from dash:

I have tested it and worked for me. Hope it helps.
Note: If your Ubuntu version is not trusty then change "release-name" in
sudo sh -c 'echo "deb http://linux.dropbox.com/ubuntu/ <release-name> main" >> /etc/apt/sources.list.d/dropbox.list' at setting up repository. You can also run $(lsb_release -sc) to find release-name.
First you have to enable repository and update from ppa.
dropbox is available from main repository for 14.04. so run following command in terminal to enable main & universe repository:
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe"
The main component contains applications that are free software, can be freely redistributed and are fully supported by the Ubuntu team. & The universe component is a snapshot of the free, open-source, and Linux world.
Then setup key:
sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 5044912E
Then setup repository:
sudo sh -c 'echo "deb http://linux.dropbox.com/ubuntu/ trusty main" >> /etc/apt/sources.list.d/dropbox.list'
Then update and install:
sudo apt-get update
sudo apt-get install dropbox
After that you can launch it from dash:

I have tested it and worked for me. Hope it helps.
Note: If your Ubuntu version is not trusty then change "release-name" in
sudo sh -c 'echo "deb http://linux.dropbox.com/ubuntu/ <release-name> main" >> /etc/apt/sources.list.d/dropbox.list' at setting up repository. You can also run $(lsb_release -sc) to find release-name.
edited Nov 15 '14 at 6:15
answered Jun 10 '14 at 12:26
PandyaPandya
19.8k2794156
19.8k2794156
W: Failed to fetch linux.dropbox.com/ubuntu/dists/<release-main>/Release.gpg Unable to connect to linux.dropbox.com:http: I keep getting this error messages "W: Failed to fetch ppa.launchpad.net/tucan/unstable/ubuntu/dists/precise/… Unable to connect to ppa.launchpad.net:http:"
– user292208
Jun 10 '14 at 13:45
Did you replace <release-name>with your release name (e.g., trusty)?
– amc
Jun 10 '14 at 14:04
@amc No,i downloaded it from the dropbox site
– user292208
Jun 10 '14 at 14:18
add a comment |
W: Failed to fetch linux.dropbox.com/ubuntu/dists/<release-main>/Release.gpg Unable to connect to linux.dropbox.com:http: I keep getting this error messages "W: Failed to fetch ppa.launchpad.net/tucan/unstable/ubuntu/dists/precise/… Unable to connect to ppa.launchpad.net:http:"
– user292208
Jun 10 '14 at 13:45
Did you replace <release-name>with your release name (e.g., trusty)?
– amc
Jun 10 '14 at 14:04
@amc No,i downloaded it from the dropbox site
– user292208
Jun 10 '14 at 14:18
W: Failed to fetch linux.dropbox.com/ubuntu/dists/<release-main>/Release.gpg Unable to connect to linux.dropbox.com:http: I keep getting this error messages "W: Failed to fetch ppa.launchpad.net/tucan/unstable/ubuntu/dists/precise/… Unable to connect to ppa.launchpad.net:http:"
– user292208
Jun 10 '14 at 13:45
W: Failed to fetch linux.dropbox.com/ubuntu/dists/<release-main>/Release.gpg Unable to connect to linux.dropbox.com:http: I keep getting this error messages "W: Failed to fetch ppa.launchpad.net/tucan/unstable/ubuntu/dists/precise/… Unable to connect to ppa.launchpad.net:http:"
– user292208
Jun 10 '14 at 13:45
Did you replace <release-name>with your release name (e.g., trusty)?
– amc
Jun 10 '14 at 14:04
Did you replace <release-name>with your release name (e.g., trusty)?
– amc
Jun 10 '14 at 14:04
@amc No,i downloaded it from the dropbox site
– user292208
Jun 10 '14 at 14:18
@amc No,i downloaded it from the dropbox site
– user292208
Jun 10 '14 at 14:18
add a comment |
Supposing you are using nautilus as your file manager, open a terminal and write
sudo apt-get install nautilus-dropbox
(or search for that package in the software center)
this shpuld then install dropbox automatically
add a comment |
Supposing you are using nautilus as your file manager, open a terminal and write
sudo apt-get install nautilus-dropbox
(or search for that package in the software center)
this shpuld then install dropbox automatically
add a comment |
Supposing you are using nautilus as your file manager, open a terminal and write
sudo apt-get install nautilus-dropbox
(or search for that package in the software center)
this shpuld then install dropbox automatically
Supposing you are using nautilus as your file manager, open a terminal and write
sudo apt-get install nautilus-dropbox
(or search for that package in the software center)
this shpuld then install dropbox automatically
answered Jun 10 '14 at 12:22
wa4557wa4557
355529
355529
add a comment |
add a comment |
From Terminal use the following command,
sudo apt-get install nautilus-dropbox
If you have an no Dropbox indicator in the top panel use the following command,
sudo apt-get install libappindicator1
Once installed restart.
add a comment |
From Terminal use the following command,
sudo apt-get install nautilus-dropbox
If you have an no Dropbox indicator in the top panel use the following command,
sudo apt-get install libappindicator1
Once installed restart.
add a comment |
From Terminal use the following command,
sudo apt-get install nautilus-dropbox
If you have an no Dropbox indicator in the top panel use the following command,
sudo apt-get install libappindicator1
Once installed restart.
From Terminal use the following command,
sudo apt-get install nautilus-dropbox
If you have an no Dropbox indicator in the top panel use the following command,
sudo apt-get install libappindicator1
Once installed restart.
answered Jun 10 '14 at 12:26
StallionSAStallionSA
45826
45826
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f481298%2fcant-find-install-option-for-dropbox-installation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Did you try to download it from dropbox site and install? dropbox.com/install?os=lnx
– Din
Jun 10 '14 at 12:20
I just tried and got it..Thanks a lot
– user292208
Jun 10 '14 at 14:07