<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title> &#187; grub</title>
	<atom:link href="http://www.oojahtech.com/tag/grub/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.oojahtech.com</link>
	<description></description>
	<lastBuildDate>Thu, 22 Jul 2010 17:16:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Grub2/Grub-PC monitor resolution for Debian Squeeze</title>
		<link>http://www.oojahtech.com/2010/04/19/grub2grub-pc-monitor-resolution-for-debian-squeeze/</link>
		<comments>http://www.oojahtech.com/2010/04/19/grub2grub-pc-monitor-resolution-for-debian-squeeze/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 17:10:35 +0000</pubDate>
		<dc:creator>fishbowl</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Tutorial & How-To's]]></category>
		<category><![CDATA[bootloader]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[monitor resolution]]></category>
		<category><![CDATA[squeeze]]></category>

		<guid isPermaLink="false">http://www.oojahtech.com/?p=497</guid>
		<description><![CDATA[As some people have noticed, Debian has switched from the old Grub 0.9x series to the new Grub2 and where some things look like business as usual on the surface you quickly learn they are not. Case in point, changing the resolution of the grub menu and the terminal. This used to be accomplished by [...]]]></description>
			<content:encoded><![CDATA[<p>As some people have noticed, Debian has switched from the old Grub 0.9x series to the new Grub2 and where some things look like business as usual on the surface you quickly learn they are not. Case in point, changing the resolution of the grub menu and the terminal. This used to be accomplished by editing the /boot/grub/menu.lst file and amending VGA=791. However, trying this with the new Grub2 does nothing. It took me a while to find a descent explanation and tutorial on how to do this in Grub2. <a href="http://harrison3001.blogspot.com/2009/09/grub-2-graphical-boot-tips-to-set.html" target="_blank">I found one from Harrison3001&#8242;s blog. </a>I will summarize the steps I had taken to get the desired effect; however, I highly recommend reading the post to get a better understanding of what is different between Grub2 and Grub Legacy.</p>
<p>first as root edit /etc/default/grub and uncomment (remove the # before) and change the value to look like this:</p>
<blockquote><p>GRUB_GFXMODE=1280&#215;800</p></blockquote>
<p>Then as root edit /etc/grub.d/00_header and find this line:</p>
<blockquote><p>set gfxmode=${GRUB_GFXMODE}</p></blockquote>
<p>insert below it this line:</p>
<blockquote><p>set gfxpayload=keep</p></blockquote>
<p>Once that is done run as root:</p>
<blockquote><p>update-grub</p></blockquote>
<p>Now reboot and you should have the Grub2 menu and the terminal set to the new monitor resolution.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.oojahtech.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.oojahtech.com/2010/04/19/grub2grub-pc-monitor-resolution-for-debian-squeeze/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beautify Boot in Debian</title>
		<link>http://www.oojahtech.com/2009/07/12/beautify-boot-in-debian/</link>
		<comments>http://www.oojahtech.com/2009/07/12/beautify-boot-in-debian/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 02:02:16 +0000</pubDate>
		<dc:creator>fishbowl</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Tutorial & How-To's]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[splash]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[To give your GRUB a little extra flair, instead of the boring blue, white, black default, you can add a grub splash image to /boot/grub/menu.lst # general configuration: timeout 5 default 0 splashimage /boot/grub/splash.xpm.gz I like to use this GRUB theme which Franlin Piat developed. Once downloaded coppy into the directory specified in /boot/brub/menu.lst (change [...]]]></description>
			<content:encoded><![CDATA[<p>To give your GRUB a little extra flair, instead of the boring blue, white, black default, you can add a grub splash image to /boot/grub/menu.lst</p>
<blockquote>
<pre># general configuration:
timeout   5
default   0
splashimage /boot/grub/splash.xpm.gz</pre>
</blockquote>
<p>I like to use <a href="http://www.klabs.be/%7Efpiat/linux/boot/grub/fp-debian%28grub%29-discret.xpm.gz">this GRUB theme</a> which Franlin Piat developed. Once downloaded coppy into the directory specified in /boot/brub/menu.lst (change splash.xpm.gz to the file you wish to use)</p>
<p>You can also install a collection GRUB images</p>
<blockquote><p>sudo apt-get install grub-splashimages</p></blockquote>
<p>I also like to have a high resolution frame buffer. Generaly, I add vga=791 to the end of the kernel line in /boot/grub/menu.lst for 1024&#215;768; However, <a href="http://codehunk.wordpress.com/2009/07/02/booting-debian-lenny-into-widescreen-framebuffer/">codehunk</a> suggests vga=865 for 1280&#215;800 widescreen resolution.</p>
<p>To have a nice boot-splash image install and configure splashy:</p>
<blockquote><p>sudo-apt-get install splashy splashy-themes</p></blockquote>
<p>The splashy themes are stored in /etc/splashy/themes, and the theme can be change by editing /etc/splashy/config.xml within the &lt;current_theme&gt; tag (I like debian3).  edit /boot/grub/menu.list and add <em>&#8220;splash quiet&#8221;</em> at the end of the kernel line. Once this is done run:</p>
<blockquote><p>sudo update-initramfs -u -t -k `uname -r`</p></blockquote>
<p>To help simplify this processes you can install a program to manage both Splashy and GRUB images</p>
<blockquote><p>sudo apt-get install startup manager</p></blockquote>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.oojahtech.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.oojahtech.com/2009/07/12/beautify-boot-in-debian/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
