<?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>Schlunix.org &#187; Linux</title>
	<atom:link href="http://schlunix.org/archives/category/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://schlunix.org</link>
	<description>endeavors in *nix</description>
	<lastBuildDate>Thu, 30 Sep 2010 03:40:42 +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>Oops, I updated Windows and overwrote the MBR</title>
		<link>http://schlunix.org/archives/37</link>
		<comments>http://schlunix.org/archives/37#comments</comments>
		<pubDate>Sat, 16 Jan 2010 08:31:50 +0000</pubDate>
		<dc:creator>Lyle</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[dual boot]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[mbr]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://schlunix.org/?p=37</guid>
		<description><![CDATA[I just updated to Windows 7 on my dual-boot laptop, and of course, Windows is greedy, and with its brain-dead installation process it just assumes I would like to overwrite the MBR. Here&#8217;s how I got GRUB working again: I downloaded the latest ArchLinux Live distro from http://arch-live.isawsome.net/iso/ which at the time of writing was [...]]]></description>
			<content:encoded><![CDATA[<p>I just updated to Windows 7 on my dual-boot laptop, and of course, Windows is greedy, and with its brain-dead installation process it just assumes I would like to overwrite the MBR. Here&#8217;s how I got GRUB working again:</p>
<p>I downloaded the latest ArchLinux Live distro from <a href="http://arch-live.isawsome.net/iso/" target="_blank">http://arch-live.isawsome.net/iso/</a> which at the time of writing was &#8220;20080731&#8243;. Burned the ISO to a disk and booted the computer from it. I chose the console only boot option, no need for a full desktop session as this is a quick fix.</p>
<p>The steps to locate the correct GRUB info and rewrite the MBR, directly from the ArchLinux wiki pages at <a href="http://wiki.archlinux.org/index.php/Grub" target="_blank">http://wiki.archlinux.org/index.php/Grub</a>. Just be mindful, like always, that if you do this wrong you may make matters worse, so do your reading first! If you screw up your computer, it&#8217;s your own fault.</p>
<p>If you are unaware of the the location of /boot, use the GRUB shell find command to locate the GRUB files.  Enter the GRUB shell by:</p>
<pre># grub
</pre>
<p>The following example is for systems <em>without</em> a separate /boot partition, wherein /boot is merely a directory under /:</p>
<pre>grub&gt; find /boot/grub/stage1
</pre>
<p>The following example is for systems <em>with</em> a separate /boot partition:</p>
<pre>grub&gt; find /grub/stage1
</pre>
<p>GRUB will find the file, and output the location of the stage1 file. For example:</p>
<pre>(hd0,0)
</pre>
<p>This value should be entered on the root line in your configuration file.</p>
<p>Use the root command with the output from the find command to instruct GRUB which partition contains stage1 (and therefore, /boot):</p>
<pre>grub&gt; root (hd0,0)</pre>
<p>The following example installs GRUB to the MBR of the first drive:</p>
<pre>grub&gt; setup (hd0)</pre>
<p>Then just reboot, pop the live CD out, and you have control of your computer again!</p>
]]></content:encoded>
			<wfw:commentRss>http://schlunix.org/archives/37/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cannot Connect to Hidden Wireless Network</title>
		<link>http://schlunix.org/archives/31</link>
		<comments>http://schlunix.org/archives/31#comments</comments>
		<pubDate>Sat, 01 Aug 2009 04:00:06 +0000</pubDate>
		<dc:creator>Lyle</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[crda]]></category>
		<category><![CDATA[hidden network]]></category>
		<category><![CDATA[ssid]]></category>
		<category><![CDATA[wifi]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://schlunix.org/?p=31</guid>
		<description><![CDATA[I don&#8217;t know if this is Arch Linux specific or not. After a recent kernel upgrade, 2.6.28, I was not able to connect to hidden wireless networks. This could either be fixed by unhiding the SSID, or by the steps below. Install the &#8220;crda&#8221; package: # pacman -S crda Uncomment your region in the &#8220;wireless-regdom&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know if this is Arch Linux specific or not. After a recent kernel upgrade, 2.6.28, I was not able to connect to hidden wireless networks. This could either be fixed by unhiding the SSID, or by the steps below.</p>
<p>Install the &#8220;crda&#8221; package:<br />
# pacman -S crda</p>
<p>Uncomment your region in the &#8220;wireless-regdom&#8221; file:<br />
# vi /etc/conf.d/wireless-regdom</p>
<p>Add &#8220;wireless-regdom&#8221; to the daemons line of rc.conf:<br />
# vi /etc/rc.conf</p>
<blockquote><p>DAEMONS=(syslog-ng hal dhcdbd !network wireless-regdom networkmanager rpcbind nfs-common @alsa @openntpd @netfs @crond gdm)</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://schlunix.org/archives/31/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arch Linux Package Mirror</title>
		<link>http://schlunix.org/archives/10</link>
		<comments>http://schlunix.org/archives/10#comments</comments>
		<pubDate>Sat, 28 Jun 2008 00:46:24 +0000</pubDate>
		<dc:creator>Lyle</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[arch linux]]></category>
		<category><![CDATA[package mirror]]></category>
		<category><![CDATA[pacman]]></category>

		<guid isPermaLink="false">http://schlunix.org/2008/06/arch-linux-package-mirror/</guid>
		<description><![CDATA[I finally get a chance to give something back to the Linux community that has been so good to me over the past few years. I started a package mirror for Arch Linux, sure there are plenty of other ones to chose from. But this is a way I can at least do a little [...]]]></description>
			<content:encoded><![CDATA[<p>I finally get a chance to give something back to the Linux community that has been so good to me over the past few years.</p>
<p>I started a package mirror for Arch Linux, sure there are plenty of other ones to chose from. But this is a way I can at least do a little something to give back. Plus, there is one more thing that will hopefully help people out from time to time. I am going to try to never delete any old packages. That way if you ever need to roll back a package but don&#8217;t have it locally, there will be a good chance you will be able to find it here.</p>
<p>Just add the following to your /etc/pacman.d/mirrorlist</p>
<p>for i686:<br />
Server = http://www.schlunix.org/archlinux/$repo/os/i686</p>
<p>or if using x86_64:<br />
Server = http://www.schlunix.org/archlinux/$repo/os/x86_64</p>
<p>Some older i686 packages are still located at <a href="http://schlunix.org/arch-linux/i686" target="_blank">http://schlunix.org/arch-linux/i686</a></p>
]]></content:encoded>
			<wfw:commentRss>http://schlunix.org/archives/10/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

