Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
07-24-2003, 08:26 AM
|
#1
|
Member
Registered: Jul 2003
Location: The Netherlands
Distribution: Gentoo Linux
Posts: 213
Rep:
|
GRUB help!!
hello,
i wanna install grub, and want the same style suse has. How can I do this? SuSE has this nice graphical-like interface, it looks really good.
Also, how can I edit/make the graphic used by grub? I want to edit the grub bootloader graphic on my suse machine.
thanks in advance for any help!
|
|
|
07-24-2003, 09:23 AM
|
#2
|
Senior Member
Registered: Feb 2001
Location: Montreal, Quebec, Canada
Distribution: RedHat, Fedora, CentOS, SUSE
Posts: 1,403
Rep:
|
Once you have installed the RPM, use the following command to install GRUB in the MBR:
Code:
/sbin/grub-install /dev/hda
The splash image for GRUB is splash.xpm.gz
This image is 640x480 with a 14 color palette.
It is in XPM format and then compressed with GZip.
GRUB documentation
http://www.gnu.org/manual/grub/
|
|
|
07-24-2003, 10:19 AM
|
#3
|
Member
Registered: Jul 2003
Location: The Netherlands
Distribution: Gentoo Linux
Posts: 213
Original Poster
Rep:
|
Seems like suse hasn't got any splash.xpm.gz file  ...and the gnu.org site is down  .
|
|
|
07-24-2003, 10:41 AM
|
#5
|
Member
Registered: Jul 2003
Location: The Netherlands
Distribution: Gentoo Linux
Posts: 213
Original Poster
Rep:
|
But where does suse store this stuff?? They have a graphical menu.
There is a reference to /boot/message (~138kb) in grub.conf, but I can't open this file with the gimp (also says unknown file). Is this a microsoft-like mistery?
|
|
|
07-24-2003, 12:11 PM
|
#6
|
Senior Member
Registered: Feb 2001
Location: Montreal, Quebec, Canada
Distribution: RedHat, Fedora, CentOS, SUSE
Posts: 1,403
Rep:
|
No such thing in Linux.
To find GRUB related files, type whereis grub.
If splash.xpm.gz does not exist, you must create it.
In the grub.conf, add splashimage=(hd0,1)/grub/splash.xpm.gz
In Linux terms, the line means that the splash image is located on hda (primary HD) and in partition 1 with the specified path.
|
|
|
07-24-2003, 12:24 PM
|
#7
|
Member
Registered: Jul 2003
Location: The Netherlands
Distribution: Gentoo Linux
Posts: 213
Original Poster
Rep:
|
My menu.lst:
Quote:
# Modified by YaST2. Last modification on Sun Jul 20 13:00:42 2003
color white/blue black/light-gray
default 0
gfxmenu (hd0,3)/boot/message
timeout 8
title Linux (SuSE 8.2)
kernel (hd0,3)/boot/vmlinuz root=/dev/hda4 vga=0x317 hdd=ide-scsi hddlun=0 splash=silent showopts acpi=off
initrd (hd0,3)/boot/initrd
title Windows XP Home Edition
root (hd0,0)
chainloader +1
title Floppy
root (fd0)
chainloader +1
title Failsafe
kernel (hd0,3)/boot/vmlinuz.shipped root=/dev/hda4 showopts ide=nodma apm=off acpi=off vga=normal nosmp noapic maxcpus=0 3
initrd (hd0,3)/boot/initrd.shipped
|
|
|
|
07-24-2003, 12:52 PM
|
#8
|
Senior Member
Registered: Feb 2001
Location: Montreal, Quebec, Canada
Distribution: RedHat, Fedora, CentOS, SUSE
Posts: 1,403
Rep:
|
More GRUB files may be located in /boot/grub.
You can save your new image to /boot
Then add the following line right after timeout 8
Code:
splashimage=(hd0,3)/boot/splash.xpm.gz
Comment out the following lines with a #
Code:
# color white/blue black/light-gray
# gfxmenu (hd0,3)/boot/message
The file associated with gfxmenu is a graphical menu object file. So, you should use splashimage instead.
If you want to create a graphical menu object, you will need gfxboot.
|
|
|
07-24-2003, 12:55 PM
|
#9
|
Member
Registered: Jul 2003
Location: The Netherlands
Distribution: Gentoo Linux
Posts: 213
Original Poster
Rep:
|
I think you misunderstood me - I want to know how SuSE did the trick, and want to add an image myself to another pc's grub install. The menu.lst is the one from the SuSE pc, which has this suse-grub bootloader which is kinda graphical (its like when u boot the suse cd/dvd). They dont use splashimage...  .
|
|
|
07-25-2003, 07:13 AM
|
#10
|
Member
Registered: Jul 2003
Location: The Netherlands
Distribution: Gentoo Linux
Posts: 213
Original Poster
Rep:
|
seems like i got it...check /usr/share/gfxboot/SuSE. here is the 'source' of /boot/message, which involves the nice graphical boot. You can compile it with mkbootmsg (root).
are there any utils to create a gfxboot some easier?
|
|
|
07-25-2003, 04:10 PM
|
#11
|
Senior Member
Registered: Feb 2001
Location: Montreal, Quebec, Canada
Distribution: RedHat, Fedora, CentOS, SUSE
Posts: 1,403
Rep:
|
I don't know. 
I never tried to create a graphical menu object file.
|
|
|
07-26-2003, 04:41 AM
|
#12
|
Member
Registered: Jul 2003
Location: The Netherlands
Distribution: Gentoo Linux
Posts: 213
Original Poster
Rep:
|
seems like i gotta patch grub for graphical menus and splashscreens - is that true and how can i do that?
|
|
|
07-31-2003, 06:22 AM
|
#13
|
Member
Registered: Jul 2003
Location: The Netherlands
Distribution: Gentoo Linux
Posts: 213
Original Poster
Rep:
|
help!!
|
|
|
All times are GMT -5. The time now is 10:17 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|