burg要添加ppa源才能安装的
sudo add-apt-repository ppa:n-muench/burg
sudo apt-get update
sudo apt-get install burg burg-themes
安装时会有一些要确认的,要注意的是会让你选择安装到mbr ,要用空格选中
sudo burg-emu
可以预览主题,自带了一些主题,F2选择主题,F3选择分辨率
也可以自己下载主题,cp到/boot/burg/themes文件夹下,
sudo update-burg
之后更换主题。
建议添加下面的ppa源,有很多主题
sudo add-apt-repository ppa:ingalex/super-boot-manager
sudo apt-get update
误删了/etc/default/burg的解决方法
自己建立 一个空白的 /etc/default/burg
然后sudo dpkg-reconfigure burg-pc
剩下的就不用我说了吧
由于ubuntu默认有个恢复模式,所以在burg中就会有很多个ubuntu的图标,尤其还有旧内核的话就更多了,下面是在burg中去掉恢复模式的方法
sudo gedit /etc/default/burg
找到 #GRUB_DISABLE_RECOVERY="true"
去掉前面的注释,如果没有#GRUB_DISABLE_RECOVERY="true"这行的话可以自己添加进去,然后update-burg生成的菜单中就不会有恢复模式的了。这个对grub也是一样的。
如果update-burg后生成的burg.cfg里还是有恢复模式的话,那么修改
找到
if [ "x${GRUB_DISABLE_LINUX_RECOVERY}" != "xtrue" ]; then去掉 ! 保存,再update-burg就可以了
安装burg的部分感谢南瓜(月下叹逍遥)http://forum.ubuntu.org.cn/viewtopic.php?f=95&t=349287
最后附上我的/etc/default/burg
GRUB_DEFAULT=0
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX="vga=792 splash"
# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console
# If you want to enable the save default function, uncomment the following
# line, and set GRUB_DEFAULT to saved.
#GRUB_SAVEDEFAULT=true
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
# In the boot menu, use hotkey 'r' to popup a resolution selection menu.
GRUB_GFXMODE=saved
# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
GRUB_DISABLE_RECOVERY=true
# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
# GRUB_THEME's value can be 'saved' or a specific BURG theme name, you can also
# set it to the pathname of a GRUB2 theme file.
# In the boot menu, use hotkey 't' to popup a theme selection menu
GRUB_THEME=saved
# GRUB_FOLD's value can be 'saved', 'true' or 'false'.
# In the boot menu, use hotkey 'F7' to show the full list, 'f' to toggle
# between folding modes.
GRUB_FOLD=saved
==折腾
谢谢分享.......
ubuntu还没装个。红帽的应该差不多吧
这篇文章写的很给力啊,图文并茂,很直观!