Answers:
以下命令在较新的发行版上不起作用(因为答复为ERROR: the reset option is now deprecated
)。
最简单的方法是点击“打开终端”或点击Alt- F2并运行以下命令:
unity --reset
rm ~/.conf/dconf/user; unity
不需要sudo,apt或dumbledorfing。
我与jokerdino和amithkk一起创建了一个python脚本,可以干净地重置Unity for Quantal及更高版本。
它托管在github上,网址为https://github.com/phanimahesh/unity-revamp
该脚本现在与Unity Tweak Tool捆绑在一起。您可以使用安装
sudo add-apt-repository ppa:freyja-dev/unity-tweak-tool-daily
sudo apt-get update
sudo apt-get install unity-tweak-tool
sudo apt-get install unity-tweak-tool
要重置Unity,请执行
unity-tweak-tool --reset-unity
注意-如果这不能解决您的Unity问题,则以下问答适用于您:
简单。我们会追踪Unity使用的每个设置,并将它们重置为默认值,然后重新加载unity以应用更改。是的,我们也要在开始之前杀死Unity和compiz,因为众所周知,如果更改compiz的设置会变得很棘手。
dconf-editor
或更好dconf reset
?dconf reset
,并非在所有情况下都有效。dconf
什么?一点历史
unity --reset
当前接受的答案更好?
unity-tweak-tool
在raring(13.04)中捆绑了该脚本。unity-tweak-tool --reset-unity
应该彻底重置统一。
unity-tweak-tool --reset-unity
重新启动后可在16.04上运行。
尝试这样做:
插入并运行以下命令:
gconftool-2 --recursive-unset /apps/compiz-1
unity --reset
重新启动,这应该可以工作。
好,到了 您可以使用前面概述的“ dconf reset”,并且将完全执行“ unity --reset”的操作。
dconf reset -f /org/compiz/
然后重新启动:
compiz --replace & disown
显然,在使用“ dconf reset”之前,最好停止compiz。我目前正在处理。
您还可以查看自己的设置:
dconf dump /org/compiz/
要重置单位图标,您仍然可以使用
unity --reset-icons
经过大量谷歌搜索之后,这些信息来自各种来源。
安装ubuntu调整。ubuntu调整的优点在于,您可以保存桌面和应用程序设置,并在弄乱某些内容后进行还原。它还具有返回原始设置的功能。
如果您弄乱了指标并需要重置这些指标,请参见以下问题:
来自http://wiki.ubuntuusers.de/Unity/FAQ
cd ~; rm -rf .gnome .gnome2 .gconf .gconfd .metacity .compiz-1 .config/compiz-1 .config/dconf
我的Unity 2d桌面突然无缘无故地(对于所有用户)拒绝显示启动板和标题栏后,我遇到了这个问题。自动隐藏已禁用。解决方案的一部分是在其他线程中建议重新启用CCSM中的Unity是解决方案的一部分,但是本建议书和其他几个相关线程中没有建议的其他措施,包括但不限于:
Reinstalling unity
Reinstalling ubuntu desktop
Removing all relevant (e.g. compiz, gconf, etc.) configuration information
帮助我彻底解决了这些症状。
unity --reset
不会为我工作。传递各种错误和信息消息后,它将始终挂在以下位置:
Setting Update "run_key"
如标题为“统一已消失”的线程中发布的日志中所示,以统一运行且不带参数。
我注意到由以下人员发出的错误消息:
/usr/lib/nux/unity_support_test -p
与unity --reset报告的某些错误类似:
加载共享库时出错:libGL.so.1:
cannot open shared object file: No such file or directory.
经过广泛的搜索,我找到了以下解决方案(由JD Bartlett提供):
Get the path of libGL.so.1 by using the command locate libGL.so.1.
Add a link to the library in /usr/lib/ as shown in the following example:
sudo ln -s /usr/lib/i386/mesa/libGL.so.1 /usr/lib
Restart the computer.
这不仅允许unity_support_test-p和unity --reset都运行,还允许Unity 2d启动。像上述文章的作者一样,我也不知道是什么导致了我的问题。我仍然不确定该链接是否是完整的解决方案,还是应该完全重新安装图形库,但是自从创建链接以来,几周来一切都运行良好。
rm ~/.conf/dconf/user; unity
不需要sudo,apt或dumbledorfing。