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]
하시고 재시동 하시면 짜~잔…
[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]
이 부분을 여러가지로 수정해보았는데 안되네요…
[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 지원한다고 하네요.
[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]
빠른답변 감사합니다ㅋㅋㅋㅋ
아직 안해봤는데 좀이따 해봐야겠네요ㅋㅋ