关于LINUX gconf警告
今天在QT下编程,发现下面的一个错误:(process:5961): GConf-WARNING **: Client failed to connect to the D-BUS daemon:Did not receive a reply. Possible causes include: the remote application did not send a reply, t
今天在QT下编程,发现下面的一个错误:
(process:5961): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
根据网上查找资料发现是这么D-BUS守护进程没有正常开启的问题:
运行QTCreator时,终端使用的 su root进入root权限,随后直接运行了qtcreator程序;原以为这样子qtcreator权限和环境就足够了,结果不然,让我们看看下面关于su , sudo 的区别。
2.不同点:su仅仅取得root权限,而工作环境不变,还是在切换之前用户的工作环境;
sudo是完全取得root的权限和root的工作环境。
另外,通过查找资料还发现su -root和 su root还不尽相同:
su - root:表示用户以root身份登录 ;
最直接的区别就是su目录还是原先用户的目录,但是su或su - root后目录就变为root用户的主目录了。
更多推荐
所有评论(0)