Ubuntu 17.10 cannot open Root folder

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
0
down vote

favorite
1












I am running Ubuntu 17.10 and after updating, now i cant open the Root folder. each time i go to other locations then Computer and try opening it, it just closes the files folder.
what could be the problem.










share|improve this question





















  • What is the result of ls -ld / typed in a terminal (opened with Ctrl-Alt-T)? Please insert the answer into your question.
    – muclux
    Feb 8 at 20:00










  • this is the result of ls -ld / drwxr-xr-x 24 root root 4096 Jan 27 06:47 /
    – Tim
    Feb 8 at 20:31











  • actually each time my machine hibernates, it kills all processes. It's like I'm rebooting again.
    – Tim
    Feb 8 at 20:47














up vote
0
down vote

favorite
1












I am running Ubuntu 17.10 and after updating, now i cant open the Root folder. each time i go to other locations then Computer and try opening it, it just closes the files folder.
what could be the problem.










share|improve this question





















  • What is the result of ls -ld / typed in a terminal (opened with Ctrl-Alt-T)? Please insert the answer into your question.
    – muclux
    Feb 8 at 20:00










  • this is the result of ls -ld / drwxr-xr-x 24 root root 4096 Jan 27 06:47 /
    – Tim
    Feb 8 at 20:31











  • actually each time my machine hibernates, it kills all processes. It's like I'm rebooting again.
    – Tim
    Feb 8 at 20:47












up vote
0
down vote

favorite
1









up vote
0
down vote

favorite
1






1





I am running Ubuntu 17.10 and after updating, now i cant open the Root folder. each time i go to other locations then Computer and try opening it, it just closes the files folder.
what could be the problem.










share|improve this question













I am running Ubuntu 17.10 and after updating, now i cant open the Root folder. each time i go to other locations then Computer and try opening it, it just closes the files folder.
what could be the problem.







updates






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Feb 8 at 19:51









Tim

104




104











  • What is the result of ls -ld / typed in a terminal (opened with Ctrl-Alt-T)? Please insert the answer into your question.
    – muclux
    Feb 8 at 20:00










  • this is the result of ls -ld / drwxr-xr-x 24 root root 4096 Jan 27 06:47 /
    – Tim
    Feb 8 at 20:31











  • actually each time my machine hibernates, it kills all processes. It's like I'm rebooting again.
    – Tim
    Feb 8 at 20:47
















  • What is the result of ls -ld / typed in a terminal (opened with Ctrl-Alt-T)? Please insert the answer into your question.
    – muclux
    Feb 8 at 20:00










  • this is the result of ls -ld / drwxr-xr-x 24 root root 4096 Jan 27 06:47 /
    – Tim
    Feb 8 at 20:31











  • actually each time my machine hibernates, it kills all processes. It's like I'm rebooting again.
    – Tim
    Feb 8 at 20:47















What is the result of ls -ld / typed in a terminal (opened with Ctrl-Alt-T)? Please insert the answer into your question.
– muclux
Feb 8 at 20:00




What is the result of ls -ld / typed in a terminal (opened with Ctrl-Alt-T)? Please insert the answer into your question.
– muclux
Feb 8 at 20:00












this is the result of ls -ld / drwxr-xr-x 24 root root 4096 Jan 27 06:47 /
– Tim
Feb 8 at 20:31





this is the result of ls -ld / drwxr-xr-x 24 root root 4096 Jan 27 06:47 /
– Tim
Feb 8 at 20:31













actually each time my machine hibernates, it kills all processes. It's like I'm rebooting again.
– Tim
Feb 8 at 20:47




actually each time my machine hibernates, it kills all processes. It's like I'm rebooting again.
– Tim
Feb 8 at 20:47










1 Answer
1






active

oldest

votes

















up vote
0
down vote













Root's home directory is /root, not /



You have no permission to read root's home directory without sudo (or similar).



grep root /etc/passwd



root:x:0:0:root:/root:/bin/bash




will show root's home directory



ls -ld /root




drwx------ 14 root root 4096 Nov 3 20:50 /root




will show that directory's permissions.



Sounds like everything is working as it should.



If you need to see the contents of root's home directory, do this:




Open a terminal window




$sudo bash



(enter password. You are now root. BE CAREFUL!)




# ls -l /root (Note your prompt when root is a #)



(other commands as needed. You are now root. BE CAREFUL!)




#exit (to exit root)





share|improve this answer






















  • mine shows this drwx------ 13 root root 4096 Jan 25 15:31 /root when i run sudo ls -ld /root why is there a 13 instead of 14? could i be the problem?
    – Tim
    Feb 9 at 4:48










  • @TimothyMach That number (13 or 14) is the number of links to the file. But what IS your problem other than you can't access the file unless you are root? THAT is not a problem. I have updated my answer to show you how to see the contents of root's home directory if you need to look at it.
    – jpezz
    Feb 9 at 18:06










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',
convertImagesToLinks: true,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1004335%2fubuntu-17-10-cannot-open-root-folder%23new-answer', 'question_page');

);

Post as a guest






























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
0
down vote













Root's home directory is /root, not /



You have no permission to read root's home directory without sudo (or similar).



grep root /etc/passwd



root:x:0:0:root:/root:/bin/bash




will show root's home directory



ls -ld /root




drwx------ 14 root root 4096 Nov 3 20:50 /root




will show that directory's permissions.



Sounds like everything is working as it should.



If you need to see the contents of root's home directory, do this:




Open a terminal window




$sudo bash



(enter password. You are now root. BE CAREFUL!)




# ls -l /root (Note your prompt when root is a #)



(other commands as needed. You are now root. BE CAREFUL!)




#exit (to exit root)





share|improve this answer






















  • mine shows this drwx------ 13 root root 4096 Jan 25 15:31 /root when i run sudo ls -ld /root why is there a 13 instead of 14? could i be the problem?
    – Tim
    Feb 9 at 4:48










  • @TimothyMach That number (13 or 14) is the number of links to the file. But what IS your problem other than you can't access the file unless you are root? THAT is not a problem. I have updated my answer to show you how to see the contents of root's home directory if you need to look at it.
    – jpezz
    Feb 9 at 18:06














up vote
0
down vote













Root's home directory is /root, not /



You have no permission to read root's home directory without sudo (or similar).



grep root /etc/passwd



root:x:0:0:root:/root:/bin/bash




will show root's home directory



ls -ld /root




drwx------ 14 root root 4096 Nov 3 20:50 /root




will show that directory's permissions.



Sounds like everything is working as it should.



If you need to see the contents of root's home directory, do this:




Open a terminal window




$sudo bash



(enter password. You are now root. BE CAREFUL!)




# ls -l /root (Note your prompt when root is a #)



(other commands as needed. You are now root. BE CAREFUL!)




#exit (to exit root)





share|improve this answer






















  • mine shows this drwx------ 13 root root 4096 Jan 25 15:31 /root when i run sudo ls -ld /root why is there a 13 instead of 14? could i be the problem?
    – Tim
    Feb 9 at 4:48










  • @TimothyMach That number (13 or 14) is the number of links to the file. But what IS your problem other than you can't access the file unless you are root? THAT is not a problem. I have updated my answer to show you how to see the contents of root's home directory if you need to look at it.
    – jpezz
    Feb 9 at 18:06












up vote
0
down vote










up vote
0
down vote









Root's home directory is /root, not /



You have no permission to read root's home directory without sudo (or similar).



grep root /etc/passwd



root:x:0:0:root:/root:/bin/bash




will show root's home directory



ls -ld /root




drwx------ 14 root root 4096 Nov 3 20:50 /root




will show that directory's permissions.



Sounds like everything is working as it should.



If you need to see the contents of root's home directory, do this:




Open a terminal window




$sudo bash



(enter password. You are now root. BE CAREFUL!)




# ls -l /root (Note your prompt when root is a #)



(other commands as needed. You are now root. BE CAREFUL!)




#exit (to exit root)





share|improve this answer














Root's home directory is /root, not /



You have no permission to read root's home directory without sudo (or similar).



grep root /etc/passwd



root:x:0:0:root:/root:/bin/bash




will show root's home directory



ls -ld /root




drwx------ 14 root root 4096 Nov 3 20:50 /root




will show that directory's permissions.



Sounds like everything is working as it should.



If you need to see the contents of root's home directory, do this:




Open a terminal window




$sudo bash



(enter password. You are now root. BE CAREFUL!)




# ls -l /root (Note your prompt when root is a #)



(other commands as needed. You are now root. BE CAREFUL!)




#exit (to exit root)






share|improve this answer














share|improve this answer



share|improve this answer








edited Feb 9 at 18:12

























answered Feb 8 at 21:24









jpezz

689112




689112











  • mine shows this drwx------ 13 root root 4096 Jan 25 15:31 /root when i run sudo ls -ld /root why is there a 13 instead of 14? could i be the problem?
    – Tim
    Feb 9 at 4:48










  • @TimothyMach That number (13 or 14) is the number of links to the file. But what IS your problem other than you can't access the file unless you are root? THAT is not a problem. I have updated my answer to show you how to see the contents of root's home directory if you need to look at it.
    – jpezz
    Feb 9 at 18:06
















  • mine shows this drwx------ 13 root root 4096 Jan 25 15:31 /root when i run sudo ls -ld /root why is there a 13 instead of 14? could i be the problem?
    – Tim
    Feb 9 at 4:48










  • @TimothyMach That number (13 or 14) is the number of links to the file. But what IS your problem other than you can't access the file unless you are root? THAT is not a problem. I have updated my answer to show you how to see the contents of root's home directory if you need to look at it.
    – jpezz
    Feb 9 at 18:06















mine shows this drwx------ 13 root root 4096 Jan 25 15:31 /root when i run sudo ls -ld /root why is there a 13 instead of 14? could i be the problem?
– Tim
Feb 9 at 4:48




mine shows this drwx------ 13 root root 4096 Jan 25 15:31 /root when i run sudo ls -ld /root why is there a 13 instead of 14? could i be the problem?
– Tim
Feb 9 at 4:48












@TimothyMach That number (13 or 14) is the number of links to the file. But what IS your problem other than you can't access the file unless you are root? THAT is not a problem. I have updated my answer to show you how to see the contents of root's home directory if you need to look at it.
– jpezz
Feb 9 at 18:06




@TimothyMach That number (13 or 14) is the number of links to the file. But what IS your problem other than you can't access the file unless you are root? THAT is not a problem. I have updated my answer to show you how to see the contents of root's home directory if you need to look at it.
– jpezz
Feb 9 at 18:06

















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1004335%2fubuntu-17-10-cannot-open-root-folder%23new-answer', 'question_page');

);

Post as a guest













































































Popular posts from this blog

pylint3 and pip3 broken

Missing snmpget and snmpwalk

How to enroll fingerprints to Ubuntu 17.10 with VFS491