Dropbox is asking me to change location to Ext4
My Dropbox keeps telling me, that it needs to be moved to ext4 filesystem.

The problem is, that when I have a look at my disk, I see this:

It seems, that my filesystem already is ext4.
Do you have any idea, what could be wrong? I found a similar question here.
I'm using only encrypted home folder - could the problem be solved just by moving my Dropbox folder outside of it?
ext4 dropbox
add a comment |
My Dropbox keeps telling me, that it needs to be moved to ext4 filesystem.

The problem is, that when I have a look at my disk, I see this:

It seems, that my filesystem already is ext4.
Do you have any idea, what could be wrong? I found a similar question here.
I'm using only encrypted home folder - could the problem be solved just by moving my Dropbox folder outside of it?
ext4 dropbox
See also summary of possible reasons here: askubuntu.com/a/1087376/29252
– Florian Echtler
Oct 26 '18 at 16:34
add a comment |
My Dropbox keeps telling me, that it needs to be moved to ext4 filesystem.

The problem is, that when I have a look at my disk, I see this:

It seems, that my filesystem already is ext4.
Do you have any idea, what could be wrong? I found a similar question here.
I'm using only encrypted home folder - could the problem be solved just by moving my Dropbox folder outside of it?
ext4 dropbox
My Dropbox keeps telling me, that it needs to be moved to ext4 filesystem.

The problem is, that when I have a look at my disk, I see this:

It seems, that my filesystem already is ext4.
Do you have any idea, what could be wrong? I found a similar question here.
I'm using only encrypted home folder - could the problem be solved just by moving my Dropbox folder outside of it?
ext4 dropbox
ext4 dropbox
edited Sep 28 '18 at 5:16
pomsky
32.8k11103135
32.8k11103135
asked Aug 18 '18 at 13:10
EenokuEenoku
242311
242311
See also summary of possible reasons here: askubuntu.com/a/1087376/29252
– Florian Echtler
Oct 26 '18 at 16:34
add a comment |
See also summary of possible reasons here: askubuntu.com/a/1087376/29252
– Florian Echtler
Oct 26 '18 at 16:34
See also summary of possible reasons here: askubuntu.com/a/1087376/29252
– Florian Echtler
Oct 26 '18 at 16:34
See also summary of possible reasons here: askubuntu.com/a/1087376/29252
– Florian Echtler
Oct 26 '18 at 16:34
add a comment |
3 Answers
3
active
oldest
votes
Dropbox doesn't support eCryptfs.
As per this official documentation
Note: ecryptfs is not supported, but Dropbox will continue to sync with supported file systems that are encrypted via full disk encryption (e.g. LUKS)
Also another important note
If you’re running a supported operating system, but you see a message that your computer is unsupported, you may be running Dropbox in an unsupported configuration.
add a comment |
You can make unencrypted file system on encrypted home and put Dropbox folder inside.
- Unlink your host and quit Dropbox.
- Make storage file (count depend of your Dropbox size)
$ dd if=/dev/zero of=~/dropboxStorage bs=1024 count=3000000
- Make file system inside
$ mkfs.ext4 ~/dropboxStorage
- Localize Dropbox folder and rename it (you can remove it but I prefer to rename if smtf went wrong):
$ mv ~/Dropbox ~/Dropbox.mvd
- Edit fstab, change ownership of Dropbox mountpoint and mount it (now you don’t need sudo)
$ mkdir ~/Dropbox
$ sudo vim /etc/fstab # add at the end of fstab
/home/username/dropboxStorage /home/username/Dropbox ext4 noauto,user 0 0
$ sudo chown username ~/Dropbox
$ mount ~/Dropbox
# check it
$ mount | grep Dropbox
/home/username/dropboxStorage on /home/username/Dropbox type ext4 (rw,nosuid,nodev,noexec,relatime,user=username
- Start Dropbox and relink again -- it works!
I have a lot of hosts linked and quicker and safer for me is download Dropbox again. You cat try to do cp -a, rsync or tar -. But beware.
You have to set starting Dropbox after mount Dropbox storage. Or turn off start Dropbox in gnome-session-properties and start it manually after login. First mount then dropbox
add a comment |
I have Ext4 partition on Linux Mint system and the same notification to change dropbox folder , but i resoved with UnlockMe sotware and his dropbox fix option . You can see it in attached image . This was a solution for me . Bye

This looks great, the only thing is, I don't see any Dropbox Startup Fix option in Lubuntu. Is there any way to make it appear?
– Eenoku
Sep 16 '18 at 17:14
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%2f1066571%2fdropbox-is-asking-me-to-change-location-to-ext4%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
Dropbox doesn't support eCryptfs.
As per this official documentation
Note: ecryptfs is not supported, but Dropbox will continue to sync with supported file systems that are encrypted via full disk encryption (e.g. LUKS)
Also another important note
If you’re running a supported operating system, but you see a message that your computer is unsupported, you may be running Dropbox in an unsupported configuration.
add a comment |
Dropbox doesn't support eCryptfs.
As per this official documentation
Note: ecryptfs is not supported, but Dropbox will continue to sync with supported file systems that are encrypted via full disk encryption (e.g. LUKS)
Also another important note
If you’re running a supported operating system, but you see a message that your computer is unsupported, you may be running Dropbox in an unsupported configuration.
add a comment |
Dropbox doesn't support eCryptfs.
As per this official documentation
Note: ecryptfs is not supported, but Dropbox will continue to sync with supported file systems that are encrypted via full disk encryption (e.g. LUKS)
Also another important note
If you’re running a supported operating system, but you see a message that your computer is unsupported, you may be running Dropbox in an unsupported configuration.
Dropbox doesn't support eCryptfs.
As per this official documentation
Note: ecryptfs is not supported, but Dropbox will continue to sync with supported file systems that are encrypted via full disk encryption (e.g. LUKS)
Also another important note
If you’re running a supported operating system, but you see a message that your computer is unsupported, you may be running Dropbox in an unsupported configuration.
answered Aug 18 '18 at 13:18
pomskypomsky
32.8k11103135
32.8k11103135
add a comment |
add a comment |
You can make unencrypted file system on encrypted home and put Dropbox folder inside.
- Unlink your host and quit Dropbox.
- Make storage file (count depend of your Dropbox size)
$ dd if=/dev/zero of=~/dropboxStorage bs=1024 count=3000000
- Make file system inside
$ mkfs.ext4 ~/dropboxStorage
- Localize Dropbox folder and rename it (you can remove it but I prefer to rename if smtf went wrong):
$ mv ~/Dropbox ~/Dropbox.mvd
- Edit fstab, change ownership of Dropbox mountpoint and mount it (now you don’t need sudo)
$ mkdir ~/Dropbox
$ sudo vim /etc/fstab # add at the end of fstab
/home/username/dropboxStorage /home/username/Dropbox ext4 noauto,user 0 0
$ sudo chown username ~/Dropbox
$ mount ~/Dropbox
# check it
$ mount | grep Dropbox
/home/username/dropboxStorage on /home/username/Dropbox type ext4 (rw,nosuid,nodev,noexec,relatime,user=username
- Start Dropbox and relink again -- it works!
I have a lot of hosts linked and quicker and safer for me is download Dropbox again. You cat try to do cp -a, rsync or tar -. But beware.
You have to set starting Dropbox after mount Dropbox storage. Or turn off start Dropbox in gnome-session-properties and start it manually after login. First mount then dropbox
add a comment |
You can make unencrypted file system on encrypted home and put Dropbox folder inside.
- Unlink your host and quit Dropbox.
- Make storage file (count depend of your Dropbox size)
$ dd if=/dev/zero of=~/dropboxStorage bs=1024 count=3000000
- Make file system inside
$ mkfs.ext4 ~/dropboxStorage
- Localize Dropbox folder and rename it (you can remove it but I prefer to rename if smtf went wrong):
$ mv ~/Dropbox ~/Dropbox.mvd
- Edit fstab, change ownership of Dropbox mountpoint and mount it (now you don’t need sudo)
$ mkdir ~/Dropbox
$ sudo vim /etc/fstab # add at the end of fstab
/home/username/dropboxStorage /home/username/Dropbox ext4 noauto,user 0 0
$ sudo chown username ~/Dropbox
$ mount ~/Dropbox
# check it
$ mount | grep Dropbox
/home/username/dropboxStorage on /home/username/Dropbox type ext4 (rw,nosuid,nodev,noexec,relatime,user=username
- Start Dropbox and relink again -- it works!
I have a lot of hosts linked and quicker and safer for me is download Dropbox again. You cat try to do cp -a, rsync or tar -. But beware.
You have to set starting Dropbox after mount Dropbox storage. Or turn off start Dropbox in gnome-session-properties and start it manually after login. First mount then dropbox
add a comment |
You can make unencrypted file system on encrypted home and put Dropbox folder inside.
- Unlink your host and quit Dropbox.
- Make storage file (count depend of your Dropbox size)
$ dd if=/dev/zero of=~/dropboxStorage bs=1024 count=3000000
- Make file system inside
$ mkfs.ext4 ~/dropboxStorage
- Localize Dropbox folder and rename it (you can remove it but I prefer to rename if smtf went wrong):
$ mv ~/Dropbox ~/Dropbox.mvd
- Edit fstab, change ownership of Dropbox mountpoint and mount it (now you don’t need sudo)
$ mkdir ~/Dropbox
$ sudo vim /etc/fstab # add at the end of fstab
/home/username/dropboxStorage /home/username/Dropbox ext4 noauto,user 0 0
$ sudo chown username ~/Dropbox
$ mount ~/Dropbox
# check it
$ mount | grep Dropbox
/home/username/dropboxStorage on /home/username/Dropbox type ext4 (rw,nosuid,nodev,noexec,relatime,user=username
- Start Dropbox and relink again -- it works!
I have a lot of hosts linked and quicker and safer for me is download Dropbox again. You cat try to do cp -a, rsync or tar -. But beware.
You have to set starting Dropbox after mount Dropbox storage. Or turn off start Dropbox in gnome-session-properties and start it manually after login. First mount then dropbox
You can make unencrypted file system on encrypted home and put Dropbox folder inside.
- Unlink your host and quit Dropbox.
- Make storage file (count depend of your Dropbox size)
$ dd if=/dev/zero of=~/dropboxStorage bs=1024 count=3000000
- Make file system inside
$ mkfs.ext4 ~/dropboxStorage
- Localize Dropbox folder and rename it (you can remove it but I prefer to rename if smtf went wrong):
$ mv ~/Dropbox ~/Dropbox.mvd
- Edit fstab, change ownership of Dropbox mountpoint and mount it (now you don’t need sudo)
$ mkdir ~/Dropbox
$ sudo vim /etc/fstab # add at the end of fstab
/home/username/dropboxStorage /home/username/Dropbox ext4 noauto,user 0 0
$ sudo chown username ~/Dropbox
$ mount ~/Dropbox
# check it
$ mount | grep Dropbox
/home/username/dropboxStorage on /home/username/Dropbox type ext4 (rw,nosuid,nodev,noexec,relatime,user=username
- Start Dropbox and relink again -- it works!
I have a lot of hosts linked and quicker and safer for me is download Dropbox again. You cat try to do cp -a, rsync or tar -. But beware.
You have to set starting Dropbox after mount Dropbox storage. Or turn off start Dropbox in gnome-session-properties and start it manually after login. First mount then dropbox
answered Mar 15 at 10:50
Piotr GogolinPiotr Gogolin
211
211
add a comment |
add a comment |
I have Ext4 partition on Linux Mint system and the same notification to change dropbox folder , but i resoved with UnlockMe sotware and his dropbox fix option . You can see it in attached image . This was a solution for me . Bye

This looks great, the only thing is, I don't see any Dropbox Startup Fix option in Lubuntu. Is there any way to make it appear?
– Eenoku
Sep 16 '18 at 17:14
add a comment |
I have Ext4 partition on Linux Mint system and the same notification to change dropbox folder , but i resoved with UnlockMe sotware and his dropbox fix option . You can see it in attached image . This was a solution for me . Bye

This looks great, the only thing is, I don't see any Dropbox Startup Fix option in Lubuntu. Is there any way to make it appear?
– Eenoku
Sep 16 '18 at 17:14
add a comment |
I have Ext4 partition on Linux Mint system and the same notification to change dropbox folder , but i resoved with UnlockMe sotware and his dropbox fix option . You can see it in attached image . This was a solution for me . Bye

I have Ext4 partition on Linux Mint system and the same notification to change dropbox folder , but i resoved with UnlockMe sotware and his dropbox fix option . You can see it in attached image . This was a solution for me . Bye

edited Sep 16 '18 at 9:21
Thomas
3,87281527
3,87281527
answered Sep 16 '18 at 3:21
M.LorM.Lor
11
11
This looks great, the only thing is, I don't see any Dropbox Startup Fix option in Lubuntu. Is there any way to make it appear?
– Eenoku
Sep 16 '18 at 17:14
add a comment |
This looks great, the only thing is, I don't see any Dropbox Startup Fix option in Lubuntu. Is there any way to make it appear?
– Eenoku
Sep 16 '18 at 17:14
This looks great, the only thing is, I don't see any Dropbox Startup Fix option in Lubuntu. Is there any way to make it appear?
– Eenoku
Sep 16 '18 at 17:14
This looks great, the only thing is, I don't see any Dropbox Startup Fix option in Lubuntu. Is there any way to make it appear?
– Eenoku
Sep 16 '18 at 17:14
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%2f1066571%2fdropbox-is-asking-me-to-change-location-to-ext4%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
See also summary of possible reasons here: askubuntu.com/a/1087376/29252
– Florian Echtler
Oct 26 '18 at 16:34