<?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>Libre Things &#187; Grub</title>
	<atom:link href="http://positon.org/tag/grub/feed" rel="self" type="application/rss+xml" />
	<link>http://positon.org</link>
	<description></description>
	<lastBuildDate>Tue, 23 Feb 2016 20:01:11 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.7.1</generator>
	<item>
		<title>The ultimate live USB MultiBoot solution: Easy2Boot</title>
		<link>http://positon.org/the-ultimate-live-usb-multiboot-solution-easy2boot</link>
		<comments>http://positon.org/the-ultimate-live-usb-multiboot-solution-easy2boot#comments</comments>
		<pubDate>Sat, 16 Mar 2013 16:41:00 +0000</pubDate>
		<dc:creator><![CDATA[dooblem]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Easy2Boot]]></category>
		<category><![CDATA[Grub]]></category>
		<category><![CDATA[grub4dos]]></category>
		<category><![CDATA[USB]]></category>

		<guid isPermaLink="false">http://positon.org:81/?p=120</guid>
		<description><![CDATA[I&#8217;ve spent days looking for a good live Multiboot USB solution. I mean a way to include many downloaded ISO files in a single USB stick. I was looking for a system allowing to drop the ISOs in a folder on the key, just showing a menu with the ISO files to boot. Easy2Boot does [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve spent days looking for a good live Multiboot USB solution. I mean a way to include many downloaded ISO files in a single USB stick. I was looking for a system allowing to drop the ISOs in a folder on the key, just showing a menu with the ISO files to boot. <a href="http://www.rmprepusb.com/tutorials/72---easyboot---a-grubdos-multiboot-drive-that-is-easy-to-maintain">Easy2Boot</a> does exactly that!</p>
<p>Booting an ISO file is complex because lots of live operating systems expect to be at the root of a DOS partition. After some research I found several posts saying that generic ISO chainloading is very hard (<a href="http://tinyapps.org/blog/misc/201005080700_boot_any_iso_from_usb.html">p1</a> <a href="http://comptb.cects.com/67-multi-boot-usb-with-syslinux-and-grub4dos">p2</a>).</p>
<p>I found solutions like <a href="http://www.pendrivelinux.com">YUMI (Your Universal Multiboot Installer</a> (windows) or <a href="http://liveusb.info/dotclear/">MultiSystem</a>. At this time, the problem of those programs is that they use specific &#8220;tricks&#8221; for each distribution to build a menu that will load directly the Linux kernel. It&#8217;s not as simple as dropping your ISOs in a folder: you have to use the software to build the multiboot usb key. Another drawback is that you will loose the <a href="http://www.syslinux.org">SYSLINUX</a> boot menus of the distros, because it loads directly the Linux kernels.</p>
<p>You also have hardware usb disk drives emulating a cdrom device. It&#8217;s probably the most reliable solution, but it&#8217;s not cheap, and bigger that a small USB key.</p>
<p>Easy2Boot, with grub4dos scripting, uses a nice trick (<a href="http://reboot.pro/topic/16429-easy2boot-development-discussion/page-2#entry169026">described here</a>): when the iso file is chosen from the boot menu, a DOS partition (number 4) is created starting and ending at the position of the .iso file on the FAT filesystem. This method is more &#8220;ISO generic&#8221; and can boot many ISO files (99% of Live Linuxes). The drawbacks is that you have a partition overlapping the other (this is not a problem, at least under Linux), and you have to make sure that the FAT filesystem will not fragment your ISO files when you copy them on the key.</p>
<p>Under Windows, you can use the <a href="http://www.rmprepusb.com/">RMPrepUSB</a> software (freeware/not opensource) to prepare your USB key.</p>
<p>Under Linux/Ubuntu, this is simple too:</p>
<ol>
<li>Format your USB key with a single FAT partition (I recommend <a href="http://en.wikipedia.org/wiki/GParted">gparted</a>).</li>
<li><a href="http://www.rmprepusb.com/tutorials/72---easyboot---a-grubdos-multiboot-drive-that-is-easy-to-maintain">Download Easy2Boot</a> (v1 Beta06 works fine) and put all the files at the root of the partition.</li>
<li><a href="https://code.google.com/p/grub4dos-chenall/downloads/list">Download grub4dos</a> (take the last Featured version) and extract the archive on your PC (not on the usb stick)</li>
<li>From the grub4dos folder, run <code>sudo ./bootlace.com --time-out=0 /dev/sdX</code> to install grub4dos MBR (make sure you use the right device!).</li>
<li>Put some ISOs directly in the <code>/MAINMENU</code> directory</li>
<li>Here you go. Reboot and enjoy!</li>
</ol>
<p>Thanks to RMPrepUSB and to the reboot.pro forum guys!</p>
<p><ins>Hints</ins>:</p>
<ul>
<li>If you have FAT fragmentation problems (&#8220;File for drive emulation must be in one contiguous disk area&#8221;), you can degragment by copying all the files locally, format, then copy back the files. I asked a <a href="http://unix.stackexchange.com/questions/68189/a-clever-way-to-defragment-a-fat-filesystem">question on StackExchange</a> to know if a better method exists.</li>
<li>Use <a href="http://unix.stackexchange.com/questions/37779/how-do-i-boot-from-a-liveusb-using-qemu-kvm">VirtualBox or KVM/Qemu to test your live usb stick</a> without rebooting (VirtualBox seems faster).</li>
</ul>
<p><ins>Links</ins>:</p>
<ul>
<li><a href="http://www.rmprepusb.com/">RMPrepUSB website</a>: Easy2Boot, and lots of great bootloading tutorials (<a href="http://www.rmprepusb.com/tutorials/grub4dos">grub4dos tuto</a>, <a href="http://www.rmprepusb.com/tutorials/autoiso">autoiso tuto</a>)</li>
<li><a href="http://www.rmprepusb.com/tutorials/72---easyboot---a-grubdos-multiboot-drive-that-is-easy-to-maintain">RMPrepUSB Easy2Boot tuto</a></li>
<li>grub4dos : <a href="http://gna.org/projects/grub4dos/">gna page</a>, <a href="http://code.google.com/p/grub4dos-chenall/">googlecode chenall page</a>, <a href="http://microsaint.narod.ru/_Info_Grub4Dos/Grub4dos_tutorial.html">wiki doc</a>, <a href="http://diddy.boot-land.net/grub4dos/Grub4dos.htm">diddy guide</a></li>
<li><a href="http://reboot.pro">Reboot.pro forum</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://positon.org/the-ultimate-live-usb-multiboot-solution-easy2boot/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Windows XP broken after Ubuntu Lucid upgrade</title>
		<link>http://positon.org/windows-xp-broken-after-ubuntu-lucid-upgrade</link>
		<comments>http://positon.org/windows-xp-broken-after-ubuntu-lucid-upgrade#comments</comments>
		<pubDate>Sun, 20 Jun 2010 22:12:00 +0000</pubDate>
		<dc:creator><![CDATA[dooblem]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Grub]]></category>
		<category><![CDATA[Lucid]]></category>
		<category><![CDATA[TestDisk]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://positon.org:81/?p=97</guid>
		<description><![CDATA[A friend of mine has a PC with Windows XP / Ubuntu in dual boot. After the Lucid upgrade, Windox fails to boot (strange lines on the screen after Grub&#8230;). TestDisk saved us: sudo aptitude install testdisk sudo testdisk Choose [ Create ] Create a new log file Choose windows physical disk, then [Proceed ] [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>A friend of mine has a PC with Windows XP / Ubuntu in dual boot. After the Lucid upgrade, Windox fails to boot (strange lines on the screen after Grub&#8230;).</p>
<p><a href="http://www.cgsecurity.org/wiki/TestDisk">TestDisk</a> saved us:</p>
<pre>
sudo aptitude install testdisk
sudo testdisk
</pre>
<ol>
<li>Choose <code>[ Create ]  Create a new log file</code></li>
<li>Choose windows physical disk, then <code>[Proceed ]</code></li>
<li>Choose <code>[ Continue ]  Continue even if there are hidden data</code></li>
<li>Choose <code>[Intel  ]  Intel/PC partition</code></li>
<li><code>[ Advanced ]  Filesystem Utils</code></li>
<li>On Windows XP partition, <code>boot sector</code> is generally <code>bad</code> or non identical to backup sector (<code>Sectors are not identical.</code>).</li>
<li>Choose <code>[ Backup BS ]</code> to copy the backup sector to the master sector.</li>
<li>After that, quit, reboot and test.</li>
</ol>
<p><ins>Sources</ins>:</p>
<ul>
<li><a href="http://www.cgsecurity.org/wiki/TestDisk_Step_By_Step#NTFS_Boot_sector_recovery" title="http://www.cgsecurity.org/wiki/TestDisk_Step_By_Step#NTFS_Boot_sector_recovery">http://www.cgsecurity.org/wiki/TestDisk_Step_By_Step#NTFS_Boot_sector_recovery</a></li>
<li><a href="http://ubuntuforums.org/showthread.php?p=9263959" title="http://ubuntuforums.org/showthread.php?p=9263959">http://ubuntuforums.org/showthread.php?p=9263959</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://positon.org/windows-xp-broken-after-ubuntu-lucid-upgrade/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3D performance problems with KMS</title>
		<link>http://positon.org/3d-performance-problems-with-kms</link>
		<comments>http://positon.org/3d-performance-problems-with-kms#comments</comments>
		<pubDate>Thu, 03 Jun 2010 12:48:00 +0000</pubDate>
		<dc:creator><![CDATA[dooblem]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Grub]]></category>
		<category><![CDATA[jeux]]></category>
		<category><![CDATA[KMS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Lucid]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://positon.org:81/?p=94</guid>
		<description><![CDATA[With the last Ubuntu Lucid 10.04 come a new graphical module: KMS or Kernel-based Mode-Setting. If you have performance problems in some games like Quake 3 or TCE / Enemy Territory, try to disable KMS. The problem can also be with the mouse pointer (slowness, lag, delay or inacuracy). Grub 2 Add nomodeset in /etc/default/grub [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>With the last Ubuntu Lucid 10.04 come a new graphical module: <a href="http://en.wikipedia.org/wiki/Mode-setting">KMS or Kernel-based Mode-Setting</a>.</p>
<p>If you have performance problems in some games like Quake 3 or TCE / Enemy Territory, try to disable KMS.<br />
The problem can also be with the mouse pointer (slowness, lag, delay or inacuracy).</p>
<h2>Grub 2</h2>
<p>Add <code>nomodeset</code> in <code>/etc/default/grub</code> then issue the command <code>update-grub</code>.</p>
<pre>
vi /etc/default/grub
GRUB_CMDLINE_LINUX=&quot;nomodeset&quot;
update-grub
</pre>
<h2>Grub 1</h2>
<p>Add <code>nomodeset</code> at the end of the <code># kopt</code> line, then issue command <code>update-grub</code>.</p>
<pre>
vi /boot/grub/menu.lst
# kopt=root=/dev/sda1 ro nomodeset
update-grub
</pre>
<p>Someone also told me that disabling KMS solved his Firefox javascript speed problem in Yahoo Mail.</p>
]]></content:encoded>
			<wfw:commentRss>http://positon.org/3d-performance-problems-with-kms/feed</wfw:commentRss>
		<slash:comments></slash:comments>
		</item>
		<item>
		<title>Display Ubuntu boot commands</title>
		<link>http://positon.org/display-ubuntu-boot-commands</link>
		<comments>http://positon.org/display-ubuntu-boot-commands#comments</comments>
		<pubDate>Mon, 14 Dec 2009 00:00:00 +0000</pubDate>
		<dc:creator><![CDATA[dooblem]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Grub]]></category>
		<category><![CDATA[Karmic]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://positon.org:81/?p=77</guid>
		<description><![CDATA[By default, Ubuntu starts with splash screen in quiet mode without displaying startup actions. Before Ubuntu Karmic (legacy Grub), you have to edit /boot/grub/menu.lst to remove the quiet words. Since Ubuntu Karmic (new Grub): sudo vi /etc/default/grub # remove &#34;quiet&#34; sudo update-grub Link: http://doc.ubuntu-fr.org/grub See also: [Ubuntu Karmic] Disable XSplash [Ubuntu Karmic] Disable USplash]]></description>
				<content:encoded><![CDATA[<p>By default, Ubuntu starts with splash screen in quiet mode without displaying startup actions.</p>
<p>Before Ubuntu Karmic (legacy <a href="http://fr.wikipedia.org/wiki/GRand_Unified_Bootloader">Grub</a>), you have to edit <code>/boot/grub/menu.lst</code> to remove the <code>quiet</code> words.</p>
<p>Since Ubuntu Karmic (new <a href="http://fr.wikipedia.org/wiki/GRand_Unified_Bootloader">Grub</a>):</p>
<pre>
sudo vi /etc/default/grub
# remove &quot;quiet&quot;
sudo update-grub
</pre>
<p><ins>Link</ins>:</p>
<ul>
<li><a href="http://doc.ubuntu-fr.org/grub" title="http://doc.ubuntu-fr.org/grub">http://doc.ubuntu-fr.org/grub</a></li>
</ul>
<p><ins>See also</ins>:</p>
<ul>
<li><a href="/ubuntu-karmic-disable-xsplash">[Ubuntu Karmic] Disable XSplash</a></li>
<li><a href="/ubuntu-karmic-disable-usplash">[Ubuntu Karmic] Disable USplash</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://positon.org/display-ubuntu-boot-commands/feed</wfw:commentRss>
		<slash:comments></slash:comments>
		</item>
	</channel>
</rss>
