Ubuntu 14.04在Dash加载关机/重启选项的方法
Ubuntu 14.04是一个流行的Linux发行版,它提供了许多强大的功能和工具,其中之一就是Dash,它是一个快速搜索和启动应用程序的工具,有时候我们可能会发现在Dash中无法找到关机或重启选项,在本文中,我们将介绍如何在Ubuntu 14.04的Dash中加载关机/重启选项。
方法一:使用命令行
我们可以使用命令行来执行关机或重启操作,在终端中输入以下命令:
关机:sudo shutdown -h now
重启:sudo shutdown -r now
这些命令需要管理员权限,因此我们需要使用sudo
命令。-h
参数表示关机,-r
参数表示重启。now
表示立即执行操作。
方法二:创建快捷方式
另一种方法是创建一个快捷方式来执行关机或重启操作,打开终端并输入以下命令:
gedit ~/.local/share/applications/reboot.desktop
这将打开一个文本编辑器,其中包含一个名为reboot.desktop
的文件,在该文件中,添加以下内容:
[Desktop Entry] Type=Application Exec=sudo reboot Hidden=false NoDisplay=false X-GNOME-Autostart-enabled=true Name=Reboot Comment=Reboot the system Icon=system-reboot
保存并关闭文件,在终端中输入以下命令来创建关机快捷方式:
gedit ~/.local/share/applications/shutdown.desktop
在该文件中,添加以下内容:
[Desktop Entry] Type=Application Exec=sudo shutdown -h now Hidden=false NoDisplay=false X-GNOME-Autostart-enabled=true Name=Shutdown Comment=Shutdown the system Icon=system-shutdown
保存并关闭文件,现在,您可以在Dash中找到关机和重启的快捷方式,点击它们即可执行相应的操作。
方法三:使用图形界面工具
如果您更喜欢使用图形界面工具来执行关机或重启操作,可以使用systemctl
命令,打开终端并输入以下命令:
sudo apt-get install gnome-session-manager system-config-printer gnome-tweak-tool gnome-power-manager gnome-settings-daemon gnome-control-center powernap --no-install-recommends --assume-yes
这将安装一些必要的软件包,重新启动计算机,现在,您应该能够在Dash中找到关机和重启的选项,点击它们即可执行相应的操作。
方法四:编辑启动应用程序列表
您还可以通过编辑启动应用程序列表来添加关机和重启的选项,打开终端并输入以下命令:
gedit ~/.config/autostart/shutdown.desktop & gedit ~/.config/autostart/reboot.desktop
这将打开两个文本编辑器,分别用于编辑关机和重启的启动应用程序列表,在这些文件中,添加以下内容:
[Desktop Entry] Type=Application Exec=sudo shutdown -h now & sudo reboot & Command to execute when the user logs in. (Replace this with your command) Name=Shutdown & Comment=Shutdown the system & Icon=system-shutdown & This line is optional, but it helps to identify the application in the Dash menu. X-GNOME-Autostart-enabled=true & X-GNOME-Autostart-Delay=10 & The delay before the application starts, in seconds. You can adjust this value as needed. X-GNOME-Autostart-User=your_username & Your username, if different from your current user. End of file. [Desktop Entry] Type=Application Exec=sudo reboot & Name=Reboot & Comment=Reboot the system & Icon=system-reboot & This line is optional, but it helps to identify the application in the Dash menu. X-GNOME-Autostart-enabled=true & X-GNOME-Autostart-Delay=10 & The delay before the application starts, in seconds. You can adjust this value as needed. X-GNOME-Autostart-User=your_username & Your username, if different from your current user. End of file. Save and close both files.现在,当您登录时,系统将自动执行您在启动应用程序列表中指定的关机或重启命令,您可以根据需要自定义这些命令。
原创文章,作者:酷盾叔,如若转载,请注明出处:https://www.kdun.com/ask/106762.html
本网站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本网站。如有问题,请联系客服处理。
发表回复