解决方法:You do not have the permissions necessary to view the contents of “XXX”

在Ubuntu系统中,用户无法访问其他磁盘,出现如下警告:
You do not have the permissions necessary to view the contents of “XXX”
解决方法,赋予当前用户root权限,即可正常访问所有磁盘:
1) 修改/etc/sudoers文件,进入超级用户,因为没有写权限,所以要先把写权限加上chmod u+w /etc/sudoers
2) 编辑/etc/sudoers文件,找到这一 行:“root ALL=(ALL) ALL"在起下面添加"xxx ALL=(ALL) ALL”(这里的xxx是你的用户名),然后保存
3) 最后恢复没有写权限模式,撤销文件的写权限,chmod u-w /etc/sudoers
4) 可能需要重启电脑才会生效 ?

你可能感兴趣的:(解决方法:You do not have the permissions necessary to view the contents of “XXX”)