“Please create the following folder, or set permissions such that it can be created:...
Every time I log in to the VM a window pops up saying,
Unable to create a required folder. Please create the following folder,
or set permissions such that it can be created:/home/tando/.config/nautilus
.
I have tried creating the folder as suggested, but still I get the error.
How can I solve it?
16.04 server permissions virtualization
|
show 3 more comments
Every time I log in to the VM a window pops up saying,
Unable to create a required folder. Please create the following folder,
or set permissions such that it can be created:/home/tando/.config/nautilus
.
I have tried creating the folder as suggested, but still I get the error.
How can I solve it?
16.04 server permissions virtualization
What command are you suing to create the window?
– George Udosen
Oct 11 '18 at 7:03
Please edit your post to add the output of the commandls -ld /home/tando/.config
. Don’t forget to apply code formatting.
– Melebius
Oct 11 '18 at 7:28
george its sudo touch
– Waris Dimbaza Tandokazi
Oct 11 '18 at 7:33
drwxr-x--- 20 tando tando 4096 Oct 10 08:49 .config
– Waris Dimbaza Tandokazi
Oct 11 '18 at 7:40
1
Please don't usesudo touch
to create a folder that should be owned by you simply dotouch
!
– George Udosen
Oct 11 '18 at 8:37
|
show 3 more comments
Every time I log in to the VM a window pops up saying,
Unable to create a required folder. Please create the following folder,
or set permissions such that it can be created:/home/tando/.config/nautilus
.
I have tried creating the folder as suggested, but still I get the error.
How can I solve it?
16.04 server permissions virtualization
Every time I log in to the VM a window pops up saying,
Unable to create a required folder. Please create the following folder,
or set permissions such that it can be created:/home/tando/.config/nautilus
.
I have tried creating the folder as suggested, but still I get the error.
How can I solve it?
16.04 server permissions virtualization
16.04 server permissions virtualization
edited Oct 11 '18 at 8:31
Zanna
50.7k13136241
50.7k13136241
asked Oct 11 '18 at 6:58
Waris Dimbaza TandokaziWaris Dimbaza Tandokazi
62
62
What command are you suing to create the window?
– George Udosen
Oct 11 '18 at 7:03
Please edit your post to add the output of the commandls -ld /home/tando/.config
. Don’t forget to apply code formatting.
– Melebius
Oct 11 '18 at 7:28
george its sudo touch
– Waris Dimbaza Tandokazi
Oct 11 '18 at 7:33
drwxr-x--- 20 tando tando 4096 Oct 10 08:49 .config
– Waris Dimbaza Tandokazi
Oct 11 '18 at 7:40
1
Please don't usesudo touch
to create a folder that should be owned by you simply dotouch
!
– George Udosen
Oct 11 '18 at 8:37
|
show 3 more comments
What command are you suing to create the window?
– George Udosen
Oct 11 '18 at 7:03
Please edit your post to add the output of the commandls -ld /home/tando/.config
. Don’t forget to apply code formatting.
– Melebius
Oct 11 '18 at 7:28
george its sudo touch
– Waris Dimbaza Tandokazi
Oct 11 '18 at 7:33
drwxr-x--- 20 tando tando 4096 Oct 10 08:49 .config
– Waris Dimbaza Tandokazi
Oct 11 '18 at 7:40
1
Please don't usesudo touch
to create a folder that should be owned by you simply dotouch
!
– George Udosen
Oct 11 '18 at 8:37
What command are you suing to create the window?
– George Udosen
Oct 11 '18 at 7:03
What command are you suing to create the window?
– George Udosen
Oct 11 '18 at 7:03
Please edit your post to add the output of the command
ls -ld /home/tando/.config
. Don’t forget to apply code formatting.– Melebius
Oct 11 '18 at 7:28
Please edit your post to add the output of the command
ls -ld /home/tando/.config
. Don’t forget to apply code formatting.– Melebius
Oct 11 '18 at 7:28
george its sudo touch
– Waris Dimbaza Tandokazi
Oct 11 '18 at 7:33
george its sudo touch
– Waris Dimbaza Tandokazi
Oct 11 '18 at 7:33
drwxr-x--- 20 tando tando 4096 Oct 10 08:49 .config
– Waris Dimbaza Tandokazi
Oct 11 '18 at 7:40
drwxr-x--- 20 tando tando 4096 Oct 10 08:49 .config
– Waris Dimbaza Tandokazi
Oct 11 '18 at 7:40
1
1
Please don't use
sudo touch
to create a folder that should be owned by you simply do touch
!– George Udosen
Oct 11 '18 at 8:37
Please don't use
sudo touch
to create a folder that should be owned by you simply do touch
!– George Udosen
Oct 11 '18 at 8:37
|
show 3 more comments
1 Answer
1
active
oldest
votes
Please use the following steps to change the ownership of that folder and
correct that permission issue:
sudo chown -R $USER:$USER /home/tando/.config/nautilus
Note: Using sudo
makes that folder and its contents get to be owned by root
and that is not what VM
wants and that's why your still get that error.
Next time don't create folders or files in your home
folder using the sudo
command. Root files and folders should be found in the /
[a.k.a. root] folder.
IMPORTANT UPDATE:
The command you used touch
creates files not folders so I think you have a file rather than a folder, do the following:
rm -rf /home/tando/.config/nautilus
then
mkdir /home/tando/.config/nautilus
thank you now there is no error
– Waris Dimbaza Tandokazi
Oct 16 '18 at 14:56
@tandokazi great please click to accept it as an answer!
– George Udosen
Oct 16 '18 at 16:39
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%2f1082845%2fplease-create-the-following-folder-or-set-permissions-such-that-it-can-be-crea%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Please use the following steps to change the ownership of that folder and
correct that permission issue:
sudo chown -R $USER:$USER /home/tando/.config/nautilus
Note: Using sudo
makes that folder and its contents get to be owned by root
and that is not what VM
wants and that's why your still get that error.
Next time don't create folders or files in your home
folder using the sudo
command. Root files and folders should be found in the /
[a.k.a. root] folder.
IMPORTANT UPDATE:
The command you used touch
creates files not folders so I think you have a file rather than a folder, do the following:
rm -rf /home/tando/.config/nautilus
then
mkdir /home/tando/.config/nautilus
thank you now there is no error
– Waris Dimbaza Tandokazi
Oct 16 '18 at 14:56
@tandokazi great please click to accept it as an answer!
– George Udosen
Oct 16 '18 at 16:39
add a comment |
Please use the following steps to change the ownership of that folder and
correct that permission issue:
sudo chown -R $USER:$USER /home/tando/.config/nautilus
Note: Using sudo
makes that folder and its contents get to be owned by root
and that is not what VM
wants and that's why your still get that error.
Next time don't create folders or files in your home
folder using the sudo
command. Root files and folders should be found in the /
[a.k.a. root] folder.
IMPORTANT UPDATE:
The command you used touch
creates files not folders so I think you have a file rather than a folder, do the following:
rm -rf /home/tando/.config/nautilus
then
mkdir /home/tando/.config/nautilus
thank you now there is no error
– Waris Dimbaza Tandokazi
Oct 16 '18 at 14:56
@tandokazi great please click to accept it as an answer!
– George Udosen
Oct 16 '18 at 16:39
add a comment |
Please use the following steps to change the ownership of that folder and
correct that permission issue:
sudo chown -R $USER:$USER /home/tando/.config/nautilus
Note: Using sudo
makes that folder and its contents get to be owned by root
and that is not what VM
wants and that's why your still get that error.
Next time don't create folders or files in your home
folder using the sudo
command. Root files and folders should be found in the /
[a.k.a. root] folder.
IMPORTANT UPDATE:
The command you used touch
creates files not folders so I think you have a file rather than a folder, do the following:
rm -rf /home/tando/.config/nautilus
then
mkdir /home/tando/.config/nautilus
Please use the following steps to change the ownership of that folder and
correct that permission issue:
sudo chown -R $USER:$USER /home/tando/.config/nautilus
Note: Using sudo
makes that folder and its contents get to be owned by root
and that is not what VM
wants and that's why your still get that error.
Next time don't create folders or files in your home
folder using the sudo
command. Root files and folders should be found in the /
[a.k.a. root] folder.
IMPORTANT UPDATE:
The command you used touch
creates files not folders so I think you have a file rather than a folder, do the following:
rm -rf /home/tando/.config/nautilus
then
mkdir /home/tando/.config/nautilus
edited Oct 11 '18 at 14:24
answered Oct 11 '18 at 8:40
George UdosenGeorge Udosen
20.9k94569
20.9k94569
thank you now there is no error
– Waris Dimbaza Tandokazi
Oct 16 '18 at 14:56
@tandokazi great please click to accept it as an answer!
– George Udosen
Oct 16 '18 at 16:39
add a comment |
thank you now there is no error
– Waris Dimbaza Tandokazi
Oct 16 '18 at 14:56
@tandokazi great please click to accept it as an answer!
– George Udosen
Oct 16 '18 at 16:39
thank you now there is no error
– Waris Dimbaza Tandokazi
Oct 16 '18 at 14:56
thank you now there is no error
– Waris Dimbaza Tandokazi
Oct 16 '18 at 14:56
@tandokazi great please click to accept it as an answer!
– George Udosen
Oct 16 '18 at 16:39
@tandokazi great please click to accept it as an answer!
– George Udosen
Oct 16 '18 at 16:39
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%2f1082845%2fplease-create-the-following-folder-or-set-permissions-such-that-it-can-be-crea%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
What command are you suing to create the window?
– George Udosen
Oct 11 '18 at 7:03
Please edit your post to add the output of the command
ls -ld /home/tando/.config
. Don’t forget to apply code formatting.– Melebius
Oct 11 '18 at 7:28
george its sudo touch
– Waris Dimbaza Tandokazi
Oct 11 '18 at 7:33
drwxr-x--- 20 tando tando 4096 Oct 10 08:49 .config
– Waris Dimbaza Tandokazi
Oct 11 '18 at 7:40
1
Please don't use
sudo touch
to create a folder that should be owned by you simply dotouch
!– George Udosen
Oct 11 '18 at 8:37