美化开机画面

系统安装、升级讨论
版面规则
我们都知道新人的确很菜,也喜欢抱怨,并且带有浓厚的Windows习惯,但既然在这里询问,我们就应该有责任帮助他们解决问题,而不是直接泼冷水、简单的否定或发表对解决问题没有任何帮助的帖子。乐于分享,以人为本,这正是Ubuntu的精神所在。
回复
头像
EcoliSCU
帖子: 62
注册时间: 2008-04-27 23:23

美化开机画面

#1

帖子 EcoliSCU » 2008-06-03 12:22

原文参考 http://ubuntuforums.org/showthread.php?t=208855
Howto : GfxBoot ( Grub like suse )
Gfxboot makes grub look nicer but with the same features
In this howto you will install gfxboot and a suse theme for it, soon I'll make an ubuntu one
Ok, let's start

Download the grub-gfxboot.deb
And the message.suse

First remove your old grub
Code:

sudo apt-get remove grub

Then Install the gfxboot-grub
Code:

sudo dpkg -i grub-gfxboot_0.97-5_i386.deb

then we're going to move the message
Code:

sudo cp message.suse /boot/grub/ # the suse can be replaced by the one you downloaded

Then edit your menu.lst

Code:

sudo cp /boot/grub/menu.lst /boot/grub/menu.lst_backup
sudo gedit /boot/grub/menu.lst

and make it use gfxboot
Code:

gfxmenu /boot/grub/message.suse # the suse can be replaced


Then do :
Code:

sudo grub

grub> find /boot/grub/stage1
(hdx,y) # this will be the output
grub> root (hdx,y)
grub> setup (hdx)

-- Howto make you own theme --


Code:

mkdir /home/name/whatever
cpio -i < /boot/grub/message.suse # replace it by the name of you message
edit the pictures
sudo ls . |cpio -o > /boot/grub/message.new

Reboot and enjoy
Thanks to Quasar_freak and kno

here are some themes posted in this thread ( ty )


中文参考: http://odinq.blogspot.com/2008/02/ubuntu-suse-grub.html

Ubuntu 安裝 Suse Grub 開機畫面

好久沒寫網誌了,其實我一直有蒐集寫網誌的素材,但人性就是懶惰啊... (時間到了自然就開工了 )

最近打算寫一些 Ubuntu 的文章,多半都是網路資訊的匯整,有些人會覺得系統可以用就好,但 Linux 可以調教的東西很多,多知道一些當然更有搞頭啦!

今天的主題是更換開機 Loader,Ubuntu 採用 Grub 做為開機選單,但預設的畫面相當簡陋。

預設選單真的是很單調啊

我第一次接觸 Suse 時(Linux 其中一個發行版本)就被其漂亮的 Grub 選單震撼到,配色漂亮還有個可愛的蜥蜴註冊商標,不過 Suse 在台灣始終沒有火紅過。現在這個漂亮的選單也可以在 Ubuntu 使用啦!
1. 首先下載 grub-gfxboot.deb 以及 message.suse
他們分別是 Grub 程式及開機畫面

2. 移除原版 Grub
sudo apt-get remove grub

3. 安裝 Grub-gfxboot
sudo dpkg -i grub-gfxboot_0.97-5_i386.deb

4. 將開機畫面複製到 /boot/grub/
sudo cp message.suse /boot/grub/

5. 修改開機設定檔,指定載入開機畫面
sudo gedit /boot/grub/menu.lst

加入這行 (我是加在開機計時的下一行,我放在最末行就不能用了)
gfxmenu /boot/grub/message.suse

6. 安裝 Grub 至 MBR 中
有兩個方法可以安裝,但首先要知道 Ubuntu 的 /boot 安裝在哪個磁區中,可以參考 /boot/grub/ment.lst 內寫的設定,我的是安裝在 (hd0,6) 中

安裝方法一
sudo grub
grub> root (hdx,y) # x,y 就是上述的 hd0,6,請對照自己的磁區吧
grub> setup (hdx)

安裝方法二
sudo grub-install /dev/sda # 我的是 sata 硬碟

到此安裝完成,重新啟動系統就可以看到漂亮的開機畫面。
如果沒有成功的話,請檢查 menu.lst 有沒有寫對,檔案有沒有放錯位置...
我因為這些小錯誤搞了好久,其實是很簡單的啦。

勇士們加油吧!
附件
Red ubuntu theme
Red ubuntu theme
头像
qiang_liu8183
论坛版主
帖子: 10701
注册时间: 2006-09-10 22:36
系统: Arch Debian
来自: 北京

#2

帖子 qiang_liu8183 » 2008-06-03 13:55

不用dm~~~
干不了大事就把小事干的大气点
myubunt_720
帖子: 232
注册时间: 2008-06-04 11:24

#3

帖子 myubunt_720 » 2008-06-04 11:44

强人,真是强!grub都能美化。
头像
ebok
帖子: 852
注册时间: 2008-02-15 0:09

#4

帖子 ebok » 2008-06-04 12:17

觉得这个没什么必要,还是简单点好
Somebody think they are full of niubility, so they play a zhuangbility, but only reflect their shability.
回复