首页 > 代码库 > Ubuntu图形界面环境下启动应该程序:
Ubuntu图形界面环境下启动应该程序:
1、先说下Ubuntu14.04系统开机紫框的问题:
Grub theme:黑色屏幕出现紫色边框
There‘s a minor typo on the grub theme which produces a black screen with purple border before the grub menu is drawn and on Plymouth start. AIUI, there‘s a `!` (negation) missing before the background_color invocation:
Grub theme有个一个小的错误,会造成Grub菜单生成前和Plymouth主题启动时,黑色屏幕出现紫边边框。这是因为背景色调用语句少了一个“!”。
修改系统 /lib/plymouth/themes/ubuntu-logo/ubuntu-logo.grub的文件:
if ! background_color 44,0,30; then
然后再运行update-grub
2、图形界面环境下启动应该程序:
1)非root用户:
在当前用户#目录下.config/autostart/ 创建以后缀名为.desktop的文件,文件内容参照下面的
[Desktop Entry]
Version=1.0
Name=Remmina Applet
Comment=Connect to remote desktops through the applet menu
Icon=remmina
Exec=remmina -i
Terminal=false
Type=Application
Hidden=true
2)root用户
开机root用户登录的设置方法(一般的设置):
http://blog.csdn.net/hao507/article/details/5730967
下面是自己修改设置的方法,/usr/bin/startx 文件
su root -c "xinit $client $clientargs -- $server $display $serverargs vt01"
然后可以再进行和非root用户的设置即可。
Grub theme:黑色屏幕出现紫色边框
There‘s a minor typo on the grub theme which produces a black screen with purple border before the grub menu is drawn and on Plymouth start. AIUI, there‘s a `!` (negation) missing before the background_color invocation:
Grub theme有个一个小的错误,会造成Grub菜单生成前和Plymouth主题启动时,黑色屏幕出现紫边边框。这是因为背景色调用语句少了一个“!”。
修改系统 /lib/plymouth/themes/ubuntu-logo/ubuntu-logo.grub的文件:
if ! background_color 44,0,30; then
然后再运行update-grub
2、图形界面环境下启动应该程序:
1)非root用户:
在当前用户#目录下.config/autostart/ 创建以后缀名为.desktop的文件,文件内容参照下面的
[Desktop Entry]
Version=1.0
Name=Remmina Applet
Comment=Connect to remote desktops through the applet menu
Icon=remmina
Exec=remmina -i
Terminal=false
Type=Application
Hidden=true
2)root用户
开机root用户登录的设置方法(一般的设置):
http://blog.csdn.net/hao507/article/details/5730967
下面是自己修改设置的方法,/usr/bin/startx 文件
su root -c "xinit $client $clientargs -- $server $display $serverargs vt01"
然后可以再进行和非root用户的设置即可。
Ubuntu图形界面环境下启动应该程序:
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。