Grub 부팅할때 배경화면 하나 만들어봄

grub 부팅할때 바탕화면으로 사용할려고 하나 만들어서 [url:2cm1eyeq]http://www.gnome-look.org[/url:2cm1eyeq]에다 올렸어요.

[img:2cm1eyeq]http://gnome-look.org/CONTENT/content-pre1/116139-1.png[/img:2cm1eyeq]

내려받기: [url:2cm1eyeq]http://gnome-look.org/content/show.php/grub+splash%3A+where2go%3F?content=116139[/url:2cm1eyeq]

"어디로 갈래?"라는 글자는 맘대로 바꿀수 있도록 김프용 xcf 파일 같이 올렸어요.

karmic(ubuntu 9.10)에서 설치는
압축 푸셔서 where2go.tga 파일을 /boot/grub/ 에다 복사 하시고.

[code:2cm1eyeq]
sudo cp where2go.tga /boot/grub/
sudo vi /etc/grub.d/05_debian_theme
[/code:2cm1eyeq]
16 번째 라인을 파일 이름이 되도록 수정해 주세요.

[code:2cm1eyeq]16 for i in {/boot/grub,/usr/share/images/desktop-base}/where2go.{png,tga} ; do[/code:2cm1eyeq]
수정이 완료되면

[code:2cm1eyeq]sudo grub-mkconfig -o /boot/grub/grub.cfg

Generating grub.cfg ...
Found Debian background: where2go.tga
Found linux image: /boot/vmlinuz-2.6.31-14-generic-pae
Found initrd image: /boot/initrd.img-2.6.31-14-generic-pae
Found memtest86+ image: /boot/memtest86+.bin
Found Windows 7 (loader) on /dev/sda1
done
[/code:2cm1eyeq]
하시고 재시동 하시면 짜~잔…

아주 예쁜데요 !

배경에 한글이 있으니 느낌이 사뭇 다르네요.
게다가 반말까지 ㅎㅎㅎ

우와 잘만드셨네요!! ^.^

우분투 10.04를 사용하는데…

[code:3rc8ydi1]# this allows desktop-base to override our settings
f=/usr/share/desktop-base/grub_background.sh
if test -e ${f} ; then
source ${f}
else
WALLPAPER="/usr/share/images/desktop-base/moreblue-orbit-grub.png"
COLOR_NORMAL="black/black"
COLOR_HIGHLIGHT="magenta/black"
fi

set_mono_theme()
{
cat << EOF
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
EOF
}

check for usable backgrounds

use_bg=false
if [ "$GRUB_TERMINAL_OUTPUT" = "gfxterm" ] ; then
for i in /boot/grub/basename ${WALLPAPER} ${WALLPAPER} ; do
if is_path_readable_by_grub $i ; then
bg=$i
case ${bg} in
*.png) reader=png ;;
*.tga) reader=tga ;;
.jpg|.jpeg) reader=jpeg ;;
esac
if test -e /boot/grub/${reader}.mod ; then
echo "Found background image: basename ${bg}" >&2
use_bg=true
break
fi
fi
done
fi
[/code:3rc8ydi1]
이 중 어느부분을 수정해야되나요??

[code:3rc8ydi1] for i in /boot/grub/basename ${WALLPAPER} ${WALLPAPER} ; do
if is_path_readable_by_grub $i ; then
bg=$i
case ${bg} in
*.png) reader=png ;;
*.tga) reader=tga ;;
.jpg|.jpeg) reader=jpeg ;;
[/code:3rc8ydi1]
이 부분을 여러가지로 수정해보았는데 안되네요…

[quote="whiteshadow":3hz4sh6l]우분투 10.04를 사용하는데…

[code:3hz4sh6l]# this allows desktop-base to override our settings
f=/usr/share/desktop-base/grub_background.sh
if test -e ${f} ; then
source ${f}
else
WALLPAPER="/usr/share/images/desktop-base/moreblue-orbit-grub.png"
COLOR_NORMAL="black/black"
COLOR_HIGHLIGHT="magenta/black"
fi

set_mono_theme()
{
cat << EOF
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
EOF
}

check for usable backgrounds

use_bg=false
if [ "$GRUB_TERMINAL_OUTPUT" = "gfxterm" ] ; then
for i in /boot/grub/basename ${WALLPAPER} ${WALLPAPER} ; do
if is_path_readable_by_grub $i ; then
bg=$i
case ${bg} in
*.png) reader=png ;;
*.tga) reader=tga ;;
.jpg|.jpeg) reader=jpeg ;;
esac
if test -e /boot/grub/${reader}.mod ; then
echo "Found background image: basename ${bg}" >&2
use_bg=true
break
fi
fi
done
fi
[/code:3hz4sh6l]
이 중 어느부분을 수정해야되나요??

[code:3hz4sh6l] for i in /boot/grub/basename ${WALLPAPER} ${WALLPAPER} ; do
if is_path_readable_by_grub $i ; then
bg=$i
case ${bg} in
*.png) reader=png ;;
*.tga) reader=tga ;;
.jpg|.jpeg) reader=jpeg ;;
[/code:3hz4sh6l]
이 부분을 여러가지로 수정해보았는데 안되네요…[/quote:3hz4sh6l]

[url:3hz4sh6l]https://help.ubuntu.com/community/Grub2#Splash%20Images%20and%20Theming[/url:3hz4sh6l]
여기에 따르면, 루트권한으로 [color=#8000FF:3hz4sh6l]/etc/default/grub[/color:3hz4sh6l]를 아래와 같이 수정한 뒤에 터미널에 [color=#8000FF:3hz4sh6l]sudo update-grub[/color:3hz4sh6l]를 입력하면 된다고 하네요.
GRUB_BACKGROUND=[color=#8000FF:3hz4sh6l]/usr/share/images/desktop-base/moreblue-orbit-grub.png[/color:3hz4sh6l]
/usr 어쩌고엔 그림주소를 입력하시면 되요. tga/png/jpeg 지원한다고 하네요.

전 이방법으로 배경을 http://interfacelift.com/wallpaper_beta … owing.html 로 지정했습니다…

[quote:54jk1vv4]https://help.ubuntu.com/community/Grub2#Splash%20Images%20and%20Theming
여기에 따르면, 루트권한으로 /etc/default/grub를 아래와 같이 수정한 뒤에 터미널에 sudo update-grub를 입력하면 된다고 하네요.
GRUB_BACKGROUND=/usr/share/images/desktop-base/moreblue-orbit-grub.png
/usr 어쩌고엔 그림주소를 입력하시면 되요. tga/png/jpeg 지원한다고 하네요.[/quote:54jk1vv4]
빠른답변 감사합니다ㅋㅋㅋㅋ
아직 안해봤는데 좀이따 해봐야겠네요ㅋㅋ