在不小心运行sudo chown -R test /之后

一时手贱把一些系统文件的owner修改为root,登录进去之后很多需要root权限的命令都不能运行,网上找了个解决方案:

1. 先切换到recovery模式,我这边是在系统开机自检(POST)之后,按住shift就进入了启动选项卡,选择recorvery模式,

2. 进入root shell控制界面

默认情况下整个分区是只读加载的,所以要运行mount -o remount,rw

重新将分区加载为可读写

3. 运行 chown -R root /,把所有文件的owner重新指定为root,

4. 运行 chown -R tristan /home/tristan,把用户目录的owner指向自己

这个时候进入系统没什么问题了。

然后网络连不上了,查看系统日志,发现

Mar  2 11:46:55 tristan-Satellite-L600 dbus[687]: [system] Activated service 'fi.w1.wpa_supplicant1' failed: The permission of the setuid helper is not correct
Mar  2 11:46:55 tristan-Satellite-L600 dbus[687]: [system] Activating service name='fi.w1.wpa_supplicant1' (using servicehelper)

然后菜单栏里的synaptic也运行不起来,然后查找到其对应的exe的名字在shell中运行,发现the permission of the setuid helper is not correct

网上搜了下,需要修改/usr/lib/dbus-1.0/dbus-daemon-launch-helper的权限

sudo chmod a+r dbus-daemon-launch-helper


总结:更多的灵活性以为着更多的责任,对于运行的任何命令都要非常情况它的效果,切记不能从网上随便粘贴一条命令然后以root权限运行,否则就是做死了:D

你可能感兴趣的:(linux操作)