<?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>LaslowNET &#187; Fedora</title>
	<atom:link href="http://laslow.net/tag/fedora/feed/" rel="self" type="application/rss+xml" />
	<link>http://laslow.net</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 03:06:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Fedora 14: Framebuffer and Xorg in 1680&#215;1050 with Nvidia Drivers</title>
		<link>http://laslow.net/2010/12/11/fedora-14-framebuffer-and-xorg-in-1680x1050-with-nvidia-drivers/</link>
		<comments>http://laslow.net/2010/12/11/fedora-14-framebuffer-and-xorg-in-1680x1050-with-nvidia-drivers/#comments</comments>
		<pubDate>Sat, 11 Dec 2010 21:28:47 +0000</pubDate>
		<dc:creator>Laslow</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Nvidia]]></category>

		<guid isPermaLink="false">http://www.laslow.net/?p=1070</guid>
		<description><![CDATA[So out-of-box, Fedora 14 does a pretty good job handling graphics, but if you want to run with Nvidia&#8217;s drivers you need to do a little leg work. Fortunately, it&#8217;s very, very easy if you know your way around the system even a little. First off, you should download the driver binaries from Nvidia&#8217;s site. [...]]]></description>
			<content:encoded><![CDATA[<p>So out-of-box, Fedora 14 does a pretty good job handling graphics, but if you want to run with Nvidia&#8217;s drivers you need to do a little leg work. Fortunately, it&#8217;s very, very easy if you know your way around the system even a little.</p>
<p>First off, you should download the driver binaries from <a href="http://www.nvidia.com" target="_blank">Nvidia&#8217;s site</a>. Save them in an easy-to-access place and then do a quick &#8216;chmod 777&#8242; on the package so you can execute it later. Also, make sure you have the kernel-headers and kernel-devel packages installed, plus gcc so the Nvidia installer can make the kernel module.</p>
<p>Now that the driver is downloaded, we need to disable the Nouveau driver that comes with Fedora. This is a two-step process.</p>
<ol>
<li>As root, edit &#8216;/etc/modprobe.d/blacklist.conf&#8217; and add the following lines to the bottom:</li>
<blockquote><p># Nouveau<br />
blacklist nouveau</p></blockquote>
<li>Now edit &#8216;/boot/grub/menu.lst&#8217; and add the following to the end of the kernel line:</li>
<blockquote><p>nouveau.modeset=0<br />
e.g, &#8220;kernel /vmlinuz-2.6.35.9-64.fc14.x86_64 ro root=UUID=00311e4e-0043-498c-8532-7301b19eae76 rd_NO_LUKS rd_NO_LVM rd_NO_MD rd_NO_DM LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYTABLE=us rhgb quiet <strong>nouveau.modeset=0</strong>&#8220;</p></blockquote>
</ol>
<p>With that done, reboot. As your computer boots, press the Tab key repeatedly before the Fedora splash screen appears to get the Grub Menu to appear. Press &#8216;a&#8217; to do a one-time edit of the kernel options (you&#8217;ll see the line above appear) and add the number &#8217;3&#8242; (no quotes) to the end, like so:</p>
<blockquote><p>kernel /vmlinuz-2.6.35.9-64.fc14.x86_64 ro root=UUID=00311e4e-0043-498c-8532-7301b19eae76 rd_NO_LUKS rd_NO_LVM rd_NO_MD rd_NO_DM LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYTABLE=us rhgb quiet nouveau.modeset=0 3</p></blockquote>
<p>This will do a one-time boot to Run Level 3, much like adding &#8216;single&#8217; to the end of the above line would put you in to Single User Mode. Once you&#8217;re at the text-mode long prompt (at a really low screen resolution, I might add), login as root and browse to the folder you saved the driver binary to, then run it. Let it go through it&#8217;s process and create the files it wants to, and when it finishes, you&#8217;re almost done.</p>
<p>The last thing to do is make the framebuffer work on the correct resolution. In my case, my monitor uses 1680&#215;1050 as it&#8217;s native resolution, so that&#8217;s what I want to set it to.</p>
<p>Reboot the computer again, and do the Tab key trick to get back to the Grub Menu. Once again, press &#8216;a&#8217; to edit the kernel options and this time add &#8216;vga=ask&#8217; in addition to the number &#8217;3&#8242; to the end of the line, and then press enter. You should get a list of the framebuffer modes. Find the one that matches your resolution, enter it (and make a note of it), and then press enter. When you get to the login prompt, you should see that everything is the correct size and resolution. If not, try again. For reference, 1680&#215;1050 in 32bit colour for my GeForce 260 is mode 369.</p>
<p>Once you have the correct mode, we&#8217;re ready to make it permanent. Login as root and edit the &#8216;/boot/grub/menu.lst&#8217; file again. Now add the following to the end of the kernel line:</p>
<blockquote><p>vga=873 video=nvidiafb</p>
<p>eg, kernel /vmlinuz-2.6.35.9-64.fc14.x86_64 ro root=UUID=00311e4e-0043-498c-8532-7301b19eae76 rd_NO_LUKS rd_NO_LVM rd_NO_MD rd_NO_DM LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYTABLE=us rhgb quiet nouveau.modeset=0 3 vga=873 video=nvidiafb</p></blockquote>
<p>Where <em>873</em> is the the mode you entered above converted from hex to decimal (369 hex == 873 dec).</p>
<p>Save, reboot, and watch as both the framebuffer and Xorg now work at the proper resolution for your monitor. You&#8217;ll also now be able to turn on Desktop Effects in Gnome if you so choose.</p>
]]></content:encoded>
			<wfw:commentRss>http://laslow.net/2010/12/11/fedora-14-framebuffer-and-xorg-in-1680x1050-with-nvidia-drivers/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>MSI Wind/Fedora 12 Beta &#8211; Still Pulsing (Updated)</title>
		<link>http://laslow.net/2009/10/23/msi-windfedora-12-beta-still-pulsing/</link>
		<comments>http://laslow.net/2009/10/23/msi-windfedora-12-beta-still-pulsing/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 16:03:53 +0000</pubDate>
		<dc:creator>Laslow</dc:creator>
				<category><![CDATA[Beta Testing]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[MSI Wind]]></category>

		<guid isPermaLink="false">http://www.laslow.net/?p=476</guid>
		<description><![CDATA[I like bleeding-edge technology. The newer, the better, as there are usually fun little things to discover and rarely does anything bleeding-edge actually work perfectly, giving me ample opportunity to mess around with things. Enter Fedora 12. I&#8217;ve played with the initial Alpha release, several of the Snap releases, and as of this morning, the Beta release. [...]]]></description>
			<content:encoded><![CDATA[<p>I like bleeding-edge technology. The newer, the better, as there are usually fun little things to discover and rarely does anything bleeding-edge actually work perfectly, giving me ample opportunity to mess around with things.</p>
<p>Enter Fedora 12. I&#8217;ve played with the initial Alpha release, several of the Snap releases, and as of this morning, the Beta release. So far, at least as far as my MSI Wind 123 goes, they&#8217;re all unusable.</p>
<p>The biggest problem so far is the display &#8211; as soon as GDM kicks in, prior to the login screen loading, the screen starts to &#8216;pulse&#8217;. To be more specific, if you were to tap the &#8216;Brightness Up&#8217; and &#8216;Brightness Down&#8217; keys fairly quickly between two different levels, you&#8217;d get the same effect. This continues incessantly, and makes it impossible to use the GUI. If I boot in runlevel 3 (direct-to-console), everything is fine, so the issue is restricted to Xorg.</p>
<p>As far as the beta goes, there&#8217;s been a little regression. In the Alpha and Snap releases, I was able to get all the way to the desktop, despite the pulsing display. Now, with the beta, it takes just over 2 minutes just to get past the boot animation, and then it stalls before the login screen loads. Whether or not this has anything to do with the fact this is a livecd on a USB stick (made with the Fedora live-usbcreator for Windows, with persistent overlay), I&#8217;m not sure. I&#8217;ll probably download another spin (maybe the KDE version) and see if I have any more luck.</p>
<p><em>Update</em>: Progess! On a whim, I removed <em>rhgb</em> from the kernel line when booting (press Tab to cancel automatic boot, and then again to edit boot options) and was actually able to get to the desktop, albeit with no improvement to the speed of things. The screen still pulses, however I did notice something interesting: while the screen pulses (briefly before the login screen appears, then it stops until you choose a user, and then it starts again), if I switch to another terminal (CTRL+ALT+F2, for example), the login name starts to fill with &#8220;^@&#8221; repeated several times, and then stops. If I then switch back to the GDM terminal (CTRL+ALT+F1), the pulsing stops.</p>
<p>At least that gives me something to go on.</p>
<p><em style="font-weight: bold;">Further Update (Dec 12, 2010): </em>The Wind U123 works perfectly on Fedora 14 with no additional hacks/changes needed.</p>
]]></content:encoded>
			<wfw:commentRss>http://laslow.net/2009/10/23/msi-windfedora-12-beta-still-pulsing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora 11 on the MSI Wind</title>
		<link>http://laslow.net/2009/09/02/fedora-11-on-the-msi-wind/</link>
		<comments>http://laslow.net/2009/09/02/fedora-11-on-the-msi-wind/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 19:45:22 +0000</pubDate>
		<dc:creator>Laslow</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[MSI Wind]]></category>
		<category><![CDATA[Netbook]]></category>

		<guid isPermaLink="false">http://www.laslow.net/?p=360</guid>
		<description><![CDATA[I recently picked up an MSI Wind U123, and have been doing my usual try-every-operating-system-I-can-find-and-see-what-happens tests. Along the way, I&#8217;ve tried Windows XP (was installed by MSI, lasted a few minutes before I got rid of it), Windows 7 (worked fine out-of-box, no extra drivers needed), Moblin v2 (not a big fan of the UI, [...]]]></description>
			<content:encoded><![CDATA[<p>I recently picked up an MSI Wind U123, and have been doing my usual try-every-operating-system-I-can-find-and-see-what-happens tests. Along the way, I&#8217;ve tried Windows XP (was installed by MSI, lasted a few minutes before I got rid of it), Windows 7 (worked fine out-of-box, no extra drivers needed), <a href="http://www.moblin.org">Moblin v2 </a>(not a big fan of the UI, but ran very well from an 8GB SDHC card), Fedora 12 (big issues with this one, but it&#8217;s only an Alpha release), and now I&#8217;m at Fedora 11.</p>
<p>I dumped the Live image of Fedora 11 (Gnome desktop manager) on to my SD card (the U123 supports booting from SD cards, something my old Acer AspireONE couldn&#8217;t do), and installed it in less than 10 minutes, boot times included. Almost everything works out-of-box, however the Gnome UI was horrifically huge. Most windows would fill the screen and beyond, making it impossible to see buttons, let alone click them.</p>
<p>The solution? Change the default DPI. To do this, login, then click the <em>System</em> menu, followed by <em>Preferences</em> and <em>Appearance</em>. In the resulting window, click the <em>Fonts</em> tab, then the <em>Details</em> button at the bottom. In the new window, change <em>Resolution</em> to <em>96</em> and hit Enter on your keyboard (as the <em>Close</em> button is just out-of-view). Everything should be back to normal.</p>
<p>In addition to this, I also changed all of the font sizes to 8, but that isn&#8217;t strictly necessary &#8211; I just like to get as much on the screen as I can.</p>
<p>Beyond that, everything else works perfectly, including sound, wireless, the SD card reader, and even the webcam.</p>
<p><em><strong>Update (Dec 12, 2010)</strong>: </em>The Wind U123 works perfectly on Fedora 14 with no additional hacks/changes needed.</p>
]]></content:encoded>
			<wfw:commentRss>http://laslow.net/2009/09/02/fedora-11-on-the-msi-wind/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

