Ubuntu 17.10 cannot open Root folder

 Clash Royale CLAN TAG#URR8PPP
Clash Royale CLAN TAG#URR8PPP up vote
0
down vote
favorite
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
add a comment |Â
up vote
0
down vote
favorite
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
 
 
 
 
 
 
 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
 
 
 
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
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
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
updates
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
 
 
 
add a comment |Â
 
 
 
 
 
 
 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
add a comment |Â
 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)
 
 
 
 
 
 
 mine shows this- drwx------ 13 root root 4096 Jan 25 15:31 /rootwhen i run- sudo ls -ld /rootwhy 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
 
 
 
add a comment |Â
 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)
 
 
 
 
 
 
 mine shows this- drwx------ 13 root root 4096 Jan 25 15:31 /rootwhen i run- sudo ls -ld /rootwhy 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
 
 
 
add a comment |Â
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)
 
 
 
 
 
 
 mine shows this- drwx------ 13 root root 4096 Jan 25 15:31 /rootwhen i run- sudo ls -ld /rootwhy 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
 
 
 
add a comment |Â
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)
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)
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 /rootwhen i run- sudo ls -ld /rootwhy 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
 
 
 
add a comment |Â
 
 
 
 
 
 
 mine shows this- drwx------ 13 root root 4096 Jan 25 15:31 /rootwhen i run- sudo ls -ld /rootwhy 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
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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
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