<?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/"
	
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Rough Book &#187; networking</title>
	<atom:link href="http://vivin.net/tag/networking/feed/" rel="self" type="application/rss+xml" />
	<link>http://vivin.net</link>
	<description>random musings of just another computer nerd</description>
	<lastBuildDate>Tue, 17 Jan 2012 23:32:52 +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>GitHub broke my scp</title>
		<link>http://vivin.net/2010/03/09/github-broke-my-scp/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://vivin.net/2010/03/09/github-broke-my-scp/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 15:44:08 +0000</pubDate>
		<dc:creator>vivin</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[openssh]]></category>
		<category><![CDATA[scp]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://vivin.net/?p=1466</guid>
		<description><![CDATA[I set up git on my FreeBSD box so that I can commit my code to GitHub. Today I tried to scp some stuff over and I was met with this rather unhelpful message: vivin@serenity ~/Projects/code $ scp -r vivin@www.vivin.net:~/code/agnostic . Password: ps: Process environment requires procfs(5) Initializing new SSH agent... vivin@serenity ~/Projects/code $ I [...]]]></description>
			<content:encoded><![CDATA[<p>I set up <a href="http://en.wikipedia.org/wiki/Git_%28software%29">git</a> on my FreeBSD box so that I can commit my code to <a href="http://github.com/">GitHub</a>. Today I tried to scp some stuff over and I was met with this rather unhelpful message:</p>
<pre>
vivin@serenity ~/Projects/code
$ scp -r vivin@www.vivin.net:~/code/agnostic .
Password:
ps: Process environment requires procfs(5)
Initializing new SSH agent...

vivin@serenity ~/Projects/code
$
</pre>
<p>I fixed the procfs problem by adding the following to my <em>/etc/fstab</em>:</p>
<pre class="brush: php">
proc                    /proc           procfs  rw              0       0
linproc                 /compat/linux/proc      linprocfs       rw      0       0
</pre>
<p>and then running:</p>
<pre>
vivin@enterprise ~
$ sudo mount /compat/linux/proc

vivin@enterprise ~
$ sudo mount /proc
</pre>
<p>So I try to scp again and I get:</p>
<pre>
vivin@serenity ~/Projects/code
$ scp -r vivin@www.vivin.net:~/code/agnostic .
Password:
Initializing new SSH agent...

vivin@serenity ~/Projects/code
$
</pre>
<p>WTF? Then I remembered making some changes to my <em>.bashrc</em> to be able to commit to github:</p>
<pre class="brush: php">
function start_agent {
  echo &quot;Initializing new SSH agent...&quot;
  /usr/bin/ssh-agent | sed &#039;s/^echo/#echo/&#039; &gt; &quot;${SSH_ENV}&quot;
  echo succeeded
  chmod 600 &quot;${SSH_ENV}&quot;
  . &quot;${SSH_ENV}&quot; &gt; /dev/null
  /usr/bin/ssh-add;
}

# Source SSH settings, if applicable
if [ -f &quot;${SSH_ENV}&quot; ]; then
  . &quot;${SSH_ENV}&quot; &gt; /dev/null
  #ps ${SSH_AGENT_PID} doesn&#039;t work under cywgin
  ps -ef | grep ${SSH_AGENT_PID} | grep ssh-agent$ &gt; /dev/null || {
    start_agent;
  }
else
  start_agent;
fi
</pre>
<p>I pulled all that out of my <em>.bashrc</em> and made a separate shell script for it. After I did that, scp started working again. I had no idea that calling scp would actually run <em>.bashrc</em></p>
<br /><a href="http://vivin.net/?p=1466#comments" title="Comments on &quot;GitHub broke my scp&quot;"><img src="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?1466" alt="Comments" /></a><img src="http://vivin.net/?ak_action=api_record_view&#38;id=1466&#38;type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://vivin.net/2010/03/09/github-broke-my-scp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?1466" />
		<media:content url="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?1466" medium="image">
			<media:title type="html">Comments</media:title>
		</media:content>
		<media:content url="http://vivin.net/?ak_action=api_record_view&#38;id=1466&#38;type=feed" medium="image" />
	</item>
		<item>
		<title>Flu shot and bizarre network issues</title>
		<link>http://vivin.net/2009/10/27/flu-shot-and-bizarre-network-issues/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://vivin.net/2009/10/27/flu-shot-and-bizarre-network-issues/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 22:49:34 +0000</pubDate>
		<dc:creator>vivin</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[flu]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[vaccine]]></category>

		<guid isPermaLink="false">http://vivin.net/?p=1042</guid>
		<description><![CDATA[This last weekend I had drill and the medics gave us the seasonal-flu mist-vaccine. It&#8217;s the one where they squirt gooey, inactive virus up your nose. I&#8217;ve had the vaccine before without any adverse side-effects. Yeah, not this time. I got the shot on Saturday and I was fine on Sunday. Not so on Monday. [...]]]></description>
			<content:encoded><![CDATA[<p>This last weekend I had drill and the medics gave us the seasonal-flu mist-vaccine. It&#8217;s the one where they squirt gooey, inactive virus up your nose. I&#8217;ve had the vaccine before without any adverse side-effects. Yeah, not this time. I got the shot on Saturday and I was fine on Sunday. Not so on Monday. I woke up a few times in the middle of the night with a bit of a fever, but I figured that it would just go away. Yeah, didn&#8217;t happen. On Monday morning I felt like I had been run over by a semi. My throat felt like I had swallowed bits of broken glass. Needless to say, I didn&#8217;t go to work. I was bedridden most of the day, but towards the end I felt a little better. I tried to get a little work done but I wasn&#8217;t too successful since I had a hard time concentrating.<br />
<span id="more-1042"></span><br />
By around seven or eight in the evening I was checking my email and I realized that Gmail wasn&#8217;t picking up any mail from vivin.net. I thought that courier-imap might not be running, but it was. Gmail complained that the connection was timing out. Odd, because I hadn&#8217;t made any changes at all recently other than an <em>fsck</em> after a power failure. I decided to try out the POP3 tester over <a href="http://www.wormly.com/test_pop3_mail_server">here</a> and I also got a timeout error. However, when I did a command-line test of the POP3 server like so:</p>
<pre class="brush: php">
openssl s_client -connect localhost:995
</pre>
<p>Everything seemed fine. Furthermore, this problem seemed to be limited to both my FreeBSD servers. My Linux box seemed to be running fine. I tried a bunch of things. I restarted both machines, restarted the network interfaces, made sure firewalls weren&#8217;t running, reset my router&#8230; nothing seemed to work. Every time I tested the connection to the machines (using this awesome tool <a href="http://www.uptimeinspector.com/test-server-connection.html">here</a>), the connections would time out. What was even stranger was that a <em>netstat</em> showed connections to be in a SYN_RCVD state, which meant that the box had accepted the connection. It&#8217;s just that the response wasn&#8217;t getting out. Eventually I was so desperate that I decided to reinstall FreeBSD on one of the machines. I also posted to a BSD forum asking for help. I figured that next evening I could probably fix it after work.</p>
<p>Well, next morning I still felt terrible, but it wasn&#8217;t so bad. My throat wasn&#8217;t hurting as much and I didn&#8217;t have that much of a headache so I was able to work from home. Oh, and the installation had completed. I set everything up quickly and gave it a whirl. Nope. Same problem. Yeah, I was getting pretty frustrated and annoyed at this point. I went so far as to contemplate wiping my beloved FreeBSD off both machines and putting Linux on there. I updated my post at the forum and I checked on it periodically throughout the day as I kept working. Finally, a kind soul popped in to help me out. He helped me troubleshoot using <em>tcpdump</em> and I was able to confirm that the machine was responding to the incoming connection, but it wasn&#8217;t going out. Finally, he asked me to check the routing information. I&#8217;m not that well-versed with that so I didn&#8217;t see the problem until he pointed it out. The routing information was all wrong!</p>
<p>See, I have two network interfaces on the box. One for my internal network, and one pointing to the outside world. The one pointing to the outside world is statically configured, whereas the one for my internal network picks up its configuration from my AirPort Extreme router. What was happening was that <em>dhclient</em> was overwriting the route information. So when the machine tried to respond back, it saw its default route as the internal router, and <em>not</em> my modem! I had to update my <em>dhclient.conf</em> and force the router address to the correct one:</p>
<pre class="brush: php">
backoff-cutoff 2;
initial-interval 1;
retry 10;
select-timeout 0;
timeout 30;

interface &amp;quot;vr0&amp;quot; {
   supersede routers 209.x.y.54;
   supersede host-name &amp;quot;enterprise&amp;quot;;
   supersede domain-name &amp;quot;xxxx.xxx&amp;quot;;
   request subnet-mask,
           domain-name-servers;

   require subnet-mask,
           domain-name-servers;
}
</pre>
<p>The important line here is the one that says <em>supersede routers 209.x.y.54;</em> (I&#8217;ve hidden the actual numbers from teh hax0rs). This tells the <em>dhclient</em> to override the router information that it gets from the DHCP server. Once I did this, everything started working again. My thanks to <em>jggimi</em> at <a href = "http://www.daemonforums.org/showthread.php?t=3936">DaemonForums</a>!</p>
<br /><a href="http://vivin.net/?p=1042#comments" title="Comments on &quot;Flu shot and bizarre network issues&quot;"><img src="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?1042" alt="Comments" /></a><img src="http://vivin.net/?ak_action=api_record_view&#38;id=1042&#38;type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://vivin.net/2009/10/27/flu-shot-and-bizarre-network-issues/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:thumbnail url="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?1042" />
		<media:content url="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?1042" medium="image">
			<media:title type="html">Comments</media:title>
		</media:content>
		<media:content url="http://vivin.net/?ak_action=api_record_view&#38;id=1042&#38;type=feed" medium="image" />
	</item>
		<item>
		<title>Qwest charges a &#8220;setup fee&#8221; for static IP&#8217;s</title>
		<link>http://vivin.net/2009/10/13/qwest-charges-a-setup-fee-for-static-ips/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://vivin.net/2009/10/13/qwest-charges-a-setup-fee-for-static-ips/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 01:58:46 +0000</pubDate>
		<dc:creator>vivin</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[dyndns]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[qwest]]></category>

		<guid isPermaLink="false">http://vivin.net/?p=1028</guid>
		<description><![CDATA[Two weeks ago, I finally got my DSL upgrade from a measly 3Mbps to a whopping (for me) 12Mbps. I have been on 3Mbps since 2004, and the difference is amazing. I&#8217;m able to stream HD quality stuff from Netflix all the time! Qwest set me up with an Actiontec Q1000 router/modem, which as far [...]]]></description>
			<content:encoded><![CDATA[<p>Two weeks ago, I finally got my DSL upgrade from a measly 3Mbps to a whopping (for me) 12Mbps. I have been on 3Mbps since 2004, and the difference is amazing. I&#8217;m able to stream HD quality stuff from Netflix all the time! Qwest set me up with an Actiontec Q1000 router/modem, which as far as routers go, is not that great. But it does the job&#8230; somewhat. My previous modem (also from Qwest) would let me grab multiple IP&#8217;s from Qwest if I had it plugged into a switch (every machine that was plugged into that switch got an IP from Qwest&#8217;s pool). However, the Actiontec is different. Since it&#8217;s a router, it basically just enables DHCP and gives you an address. This was a problem for me because I have three machines that face the outside world and I use DynDNS so that I can access them. The router does some port-mapping, but that wasn&#8217;t an option. Since my website was my top priority, I set it up in a DMZ and figured that I could access the other two machines through my webserver, so no big deal. But yeah, didn&#8217;t work completely. DynDNS uses the modem&#8217;s IP for my webserver. I can access my website without any problem, from the outside world. But if I try to get to it from within my network, I end up at the Actiontec&#8217;s configuration page. Stupid. So eventually I just decided to get some static IP&#8217;s. The price was pretty reasonable: a block of 8 for $14.99 a month. Then I saw the setup fee: $50. Seriously? FIFTY dollars to set up a block of IP addresses?<span id="more-1028"></span> It gets even better. The more IP addresses you order, the higher the &#8220;setup fee&#8221; goes. Here&#8217;s the full chart:</p>
<table border="1">
<tbody>
<tr>
<td><strong># of IP Addresses</strong></td>
<td><strong>Monthly Rate</strong></td>
<td><strong>One Time Charge</strong></td>
</tr>
<tr>
<td>1 (1 useable)</td>
<td>$5.95</td>
<td>$25.00</td>
</tr>
<tr>
<td>8 (5 useable)</td>
<td>$14.95</td>
<td>$50.00</td>
</tr>
<tr>
<td>16 (13 useable)</td>
<td>$29.95</td>
<td>$75.00</td>
</tr>
<tr>
<td>32 (29 useable)</td>
<td>$59.95</td>
<td>$150.00</td>
</tr>
<tr>
<td>64 (61 useable)</td>
<td>$119.95</td>
<td>$250.00</td>
</tr>
</tbody>
</table>
<p><em>Source: <a href="http://www.qwest.net/help/static_ips.html#howmuch">Qwest.net:  How much do static IP addresses cost and how many addresses do I get?</a></em></p>
<p>I had a hard time understanding this. I mean, I&#8217;ll admit that I&#8217;m not a networking expert. But how hard can setting up static IP&#8217;s be? Does it <em>really</em> take $50 worth of work? I&#8217;m assuming it involves some configuration &#8211; probably a few keystrokes or something of that nature. $50 for that? Maybe it&#8217;s completely different from what I think. Maybe IP addresses are huge blocks of stone that need to be moved from place to place, therefore there are obvious labor costs. Whatever. $50 sounds ridiculous to me. I figured I&#8217;d talk to Qwest and see if they could explain this cost to me. I didn&#8217;t get anywhere with the reps online, but the prompt and helpful folks at <a href="http://twitter.com/TalkToQwest">@TalkToQwest</a> finally emailed me with an answer:</p>
<blockquote><p>Hello Vivin,</p>
<p>After doing a little research on the matter I have found out a little more about the business decision to charge for setting up Static IP’s. Initially, there is a lot more in the way of system software that has to be implemented on our order side to facilitate these orders as apposed to the standard issue.</p>
<p>Additionally, the potential costs of features/functions that are afforded the customer with these services potentially require more resources and as such, cost to maintain and implement.</p>
<p>The setup cost is a way to spread that cost across the specific platform at what is considered a reasonable amount. How exactly they come up with this figure is of course something that I would not be privy to and would be considered proprietary marketing/business internally confidential information that I could not disclose any how, but that is the basic reason why we charge for the setup. There are cost unique to Static IP’s and they need to be covered.</p>
<p>Hope that helps explain it a bit anyway.</p></blockquote>
<p>Not exactly the answer I was looking for, but I appreciate the time that the rep took to write me an email, and I guess I did understand the rep&#8217;s point that there are <em>some</em> costs involved. But come on, now&#8230; The point about &#8220;cost to maintain and implement&#8221; &#8211; I assume that this could easily be covered by the $14.99 I pay them every month. Other than that, I don&#8217;t see any reason to have a setup fee. If you ask me, there&#8217;s really only one reason. I apologize if I&#8217;m being cynical, but honestly I think it&#8217;s just a way for Qwest to make a quick buck. I can&#8217;t think of any other reason. I also don&#8217;t really buy into the whole &#8220;proprietary marketing/internal business/confidential&#8221; aspect of this, because come on&#8230; it&#8217;s just networking. I&#8217;m assuming that not too many people care about the fee, or ask about it and so Qwest is able to get away with it. Come to think of it, whoever invented the concept of a the &#8220;setup fee&#8221; is a genius. It&#8217;s a technical and important-sounding phrase that is also completely meaningless.</p>
<p>Anyway, I decided to take the hit and order them because I need the block. But overall I think it should be mandatory for companies to itemize and describe all the elements that make up a &#8220;setup fee&#8221; instead of just charging their customers some random amount. As customers we have a right to know what we&#8217;re paying for.</p>
<br /><a href="http://vivin.net/?p=1028#comments" title="Comments on &quot;Qwest charges a &#8220;setup fee&#8221; for static IP&#8217;s&quot;"><img src="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?1028" alt="Comments" /></a><img src="http://vivin.net/?ak_action=api_record_view&#38;id=1028&#38;type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://vivin.net/2009/10/13/qwest-charges-a-setup-fee-for-static-ips/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:thumbnail url="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?1028" />
		<media:content url="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?1028" medium="image">
			<media:title type="html">Comments</media:title>
		</media:content>
		<media:content url="http://vivin.net/?ak_action=api_record_view&#38;id=1028&#38;type=feed" medium="image" />
	</item>
		<item>
		<title>Wallpaper</title>
		<link>http://vivin.net/2003/02/27/wallpaper/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://vivin.net/2003/02/27/wallpaper/#comments</comments>
		<pubDate>Fri, 28 Feb 2003 05:42:53 +0000</pubDate>
		<dc:creator>vivin</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[shakira]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[wallpaper]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://vivin.net/?p=160</guid>
		<description><![CDATA[I added another wallpaper of Shakira. I have no life. It is official. I hope I get that job I applied for&#8230; It&#8217;s Web Development with PHP and MySQL&#8230; along with working on UNIX machines and network stuff. Fun stuff&#8230;]]></description>
			<content:encoded><![CDATA[<p>I added another wallpaper of Shakira. I have no life. It is official. I hope I get that job I applied for&#8230; It&#8217;s Web Development with PHP and MySQL&#8230; along with working on UNIX machines and network stuff. Fun stuff&#8230;</p>
<br /><a href="http://vivin.net/?p=160#comments" title="Comments on &quot;Wallpaper&quot;"><img src="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?160" alt="Comments" /></a><img src="http://vivin.net/?ak_action=api_record_view&#38;id=160&#38;type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://vivin.net/2003/02/27/wallpaper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?160" />
		<media:content url="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?160" medium="image">
			<media:title type="html">Comments</media:title>
		</media:content>
		<media:content url="http://vivin.net/?ak_action=api_record_view&#38;id=160&#38;type=feed" medium="image" />
	</item>
		<item>
		<title>smbfs</title>
		<link>http://vivin.net/2003/02/23/smbfs/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://vivin.net/2003/02/23/smbfs/#comments</comments>
		<pubDate>Mon, 24 Feb 2003 03:41:36 +0000</pubDate>
		<dc:creator>vivin</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[cups]]></category>
		<category><![CDATA[modelsim]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[sharity lite]]></category>
		<category><![CDATA[smbfs]]></category>
		<category><![CDATA[windows xp]]></category>
		<category><![CDATA[xilinx]]></category>

		<guid isPermaLink="false">http://vivin.net/?p=159</guid>
		<description><![CDATA[Sharity-Lite stopped working&#8230; No, wait&#8230; Actually it might have been my Windows machine. Ever since I installed that piece-of-crap Xilix ISE and ModelSim software my computer has been acting weird. It wouldn&#8217;t authenticate requests from Sharity-Light. The only way I could mount drives was if I enable simple file sharing. I couldn&#8217;t have that&#8230; I [...]]]></description>
			<content:encoded><![CDATA[<p>Sharity-Lite stopped working&#8230; No, wait&#8230; Actually it might have been my Windows machine. Ever since I installed that piece-of-crap Xilix ISE and ModelSim software my computer has been acting weird. It wouldn&#8217;t authenticate requests from Sharity-Light. The only way I could mount drives was if I enable simple file sharing. I couldn&#8217;t have that&#8230; I wanted it to be exclusive&#8230; It used to work before, but for some reason, now it doesn&#8217;t. That&#8217;s when I discovered SMBFS. It&#8217;s pretty neat. Mounts Windows shares really well! That and CUPS works really nicely with my HP Deskjet 812C, which is now connected to my FreeBSD machine. God I&#8217;m such a nerd!</p>
<br /><a href="http://vivin.net/?p=159#comments" title="Comments on &quot;smbfs&quot;"><img src="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?159" alt="Comments" /></a><img src="http://vivin.net/?ak_action=api_record_view&#38;id=159&#38;type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://vivin.net/2003/02/23/smbfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?159" />
		<media:content url="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?159" medium="image">
			<media:title type="html">Comments</media:title>
		</media:content>
		<media:content url="http://vivin.net/?ak_action=api_record_view&#38;id=159&#38;type=feed" medium="image" />
	</item>
		<item>
		<title>CUPS working</title>
		<link>http://vivin.net/2003/01/30/cups-working/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://vivin.net/2003/01/30/cups-working/#comments</comments>
		<pubDate>Fri, 31 Jan 2003 02:13:10 +0000</pubDate>
		<dc:creator>vivin</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[cups]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[printers]]></category>

		<guid isPermaLink="false">http://vivin.net/?p=150</guid>
		<description><![CDATA[Got CUPS working. I really should document my work&#8230; smb://vivin@excelsior/HPDeskjet812C&#8230; Anyways, all I have left to do is set up the colour scheme and stuff like that&#8230; of KDE&#8230; and install Mozilla again&#8230; Fun&#8230; Fun&#8230;]]></description>
			<content:encoded><![CDATA[<p>Got CUPS working. I really should document my work&#8230; smb://vivin@excelsior/HPDeskjet812C&#8230; Anyways, all I have left to do is set up the colour scheme and stuff like that&#8230; of KDE&#8230; and install Mozilla again&#8230; Fun&#8230; Fun&#8230;</p>
<br /><a href="http://vivin.net/?p=150#comments" title="Comments on &quot;CUPS working&quot;"><img src="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?150" alt="Comments" /></a><img src="http://vivin.net/?ak_action=api_record_view&#38;id=150&#38;type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://vivin.net/2003/01/30/cups-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?150" />
		<media:content url="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?150" medium="image">
			<media:title type="html">Comments</media:title>
		</media:content>
		<media:content url="http://vivin.net/?ak_action=api_record_view&#38;id=150&#38;type=feed" medium="image" />
	</item>
		<item>
		<title>Samba</title>
		<link>http://vivin.net/2002/12/11/samba/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://vivin.net/2002/12/11/samba/#comments</comments>
		<pubDate>Wed, 11 Dec 2002 17:19:20 +0000</pubDate>
		<dc:creator>vivin</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[nfs]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://vivin.net/?p=140</guid>
		<description><![CDATA[Got samba working on my FreeBSD machine. Now I can access NFS shares from my XP box.]]></description>
			<content:encoded><![CDATA[<p>Got samba working on my FreeBSD machine. Now I can access NFS shares from my XP box.</p>
<br /><a href="http://vivin.net/?p=140#comments" title="Comments on &quot;Samba&quot;"><img src="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?140" alt="Comments" /></a><img src="http://vivin.net/?ak_action=api_record_view&#38;id=140&#38;type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://vivin.net/2002/12/11/samba/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?140" />
		<media:content url="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?140" medium="image">
			<media:title type="html">Comments</media:title>
		</media:content>
		<media:content url="http://vivin.net/?ak_action=api_record_view&#38;id=140&#38;type=feed" medium="image" />
	</item>
		<item>
		<title>Fixed Sharity Light Problem</title>
		<link>http://vivin.net/2002/11/20/fixed-sharity-light-problem/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://vivin.net/2002/11/20/fixed-sharity-light-problem/#comments</comments>
		<pubDate>Wed, 20 Nov 2002 08:04:38 +0000</pubDate>
		<dc:creator>vivin</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://vivin.net/?p=130</guid>
		<description><![CDATA[Fixed the problem. I had (wrongly) set the hostname for my XP box as 10.0.0.1. D&#8217;OH! It should have been 10.0.0.2. Works perfectly now!]]></description>
			<content:encoded><![CDATA[<p>Fixed the problem. I had (wrongly) set the hostname for my XP box as 10.0.0.1. D&#8217;OH! It should have been 10.0.0.2. Works perfectly now!</p>
<br /><a href="http://vivin.net/?p=130#comments" title="Comments on &quot;Fixed Sharity Light Problem&quot;"><img src="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?130" alt="Comments" /></a><img src="http://vivin.net/?ak_action=api_record_view&#38;id=130&#38;type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://vivin.net/2002/11/20/fixed-sharity-light-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?130" />
		<media:content url="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?130" medium="image">
			<media:title type="html">Comments</media:title>
		</media:content>
		<media:content url="http://vivin.net/?ak_action=api_record_view&#38;id=130&#38;type=feed" medium="image" />
	</item>
		<item>
		<title>Horrible</title>
		<link>http://vivin.net/2002/11/15/horrible/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://vivin.net/2002/11/15/horrible/#comments</comments>
		<pubDate>Sat, 16 Nov 2002 02:14:24 +0000</pubDate>
		<dc:creator>vivin</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[webserver]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://vivin.net/?p=124</guid>
		<description><![CDATA[How hard can installing a new OS get? Pretty damn hard. It took three hard disks and two other OS&#8217;es to get it right. Huh what? Yeah you heard me&#8230; I wanted switch from Windows XP Home to Windows XP Professional. So I pull out a pre-activated copy (muhaha) that my buddy gave me a [...]]]></description>
			<content:encoded><![CDATA[<p>How hard can installing a new OS get? Pretty damn hard. It took <strong>three</strong> hard disks and <strong>two</strong> other OS&#8217;es to get it right. Huh what? Yeah you heard me&#8230; I wanted switch from Windows XP Home to Windows XP Professional. So I pull out a pre-activated copy (muhaha) that my buddy gave me a year ago and start installing it. I selected the &#8220;Update&#8221; option. Call it intuition. But after using computers for more than 12 years, I have an idea when things are about to go wrong. Sure enough, it did. I can probably illustrate this better in a more logical format:</p>
<p><strong><span style = "text-decoration:underline">Problem</span></strong></p>
<p>XP installation starts, runs for a while and then crashes with a blue screen. I rebooted and tried to install again. Same problem. Did this three times. No difference.</p>
<p><strong><span style = "text-decoration:underline">Solution</span></strong></p>
<p>Forget about installing XP professional. See if you can use the Alienware recovery CD and get XP Home back.</p>
<p><strong><span style = "text-decoration:underline">New Problem</span></strong></p>
<p>CD won&#8217;t boot for some bizarre reason. Later I found out that the machine had a problem recognizing signals from the USB Keyboard. The strange thing was that it would recognize the F2 keystroke for the BIOS setup, but wouldn&#8217;t recognize anything after that. It would say &#8220;Press any key to boot from CD&#8230;&#8221;, I&#8217;d press any key and nothing would happen. XP Installer would boot up (and crash).</p>
<p><strong><span style = "text-decoration:underline">Solution</span></strong></p>
<p>Remove hard drives from the boot sequence. I&#8217;ll see if I can force it to boot from the CD.</p>
<p><strong><span style = "text-decoration:underline">Bigger Problems</span></strong></p>
<p>Boot failure. Also, after restoring the boot sequence, it says the OS is corrupted. I still can&#8217;t boot from the Alienware Master CD.</p>
<p><strong><span style = "text-decoration:underline">Solution</span></strong></p>
<p>Try to boot up with FreeBSD CD. It worked! I installed FreeBSD on the 20Gb hard drive. Tried to boot up, but kept locating the 75Gb hard drive. Switched boot sequences. It worked! Mounted the 75 Gb as an nfs mount using mount_ntfs. Tried to move everything to /. Said it ran out of space. That didn&#8217;t make sense! I knew there was a whole lot of space left on the 20 Gb. Then I realized that / was on a different partition and that I should install it on /usr. Did that. Pulled out hard drive, put it into my FreeBSD machine (I could have left it in there and just transfered it using another mount_ntfs after I wiped out the 75 Gb and installed XP Professional&#8230; but it was 3 am and this didn&#8217;t occur to me). XP Installs fine. So now I set up the network and set up a shared dir on the XP box. I try to mount it from the FreeBSD box using sharity light. It dies. Then I figured out I had changed the machine name. Tried it again with the new machine name &#8211; it worked! Then I mount the 20 Gb. I go to /usr on the 20 Gb to get my files&#8230;</p>
<p><strong><span style = "text-decoration:underline">Really Big Problem</span></strong></p>
<p>I can&#8217;t find my files!! ls on /usr gives absolutely nothing!</p>
<p><strong><span style = "text-decoration:underline">Solution</span></strong></p>
<p>Then suddenly I had an epiphany&#8230; I was mounting /dev/ad1s1. This means drive 1, slice 1 as FreeBSD organizes the drive into partitions, and different dirs are mapped to different partitions. I try to mount /dev/ad1 directly and it gives me a superblock error. So then I try /dev/ad1s2 &#8211; same problem. So I goto /dev and list all ad1 devices. I see a bunch of /dev/ad1s1a, /dev/ad1s1b and so on&#8230; So I tried mounting those and eventually found all the rescued files. Then I transferred everything over the home network to my XP shared dir. Problem solved! I have XP Professional and everything works fine&#8230; well almost. The BIOS and XP can see my 20 Gb hard drive, but it doesn&#8217;t assign it a drive letter&#8230; I formatted it (using FreeBSD so that might be a problem&#8230; except I don&#8217;t think so, because I just zapped all the partitions), but it still doesn&#8217;t see it&#8230; I&#8217;ll have to figure out how to fix it. Also, Qwest is sending me a Cisco 678. Then I can buy some static IP&#8217;s and set up my webserver&#8230; finally! Ahhh&#8230; This was a very trying experience, but I learnt a lot&#8230;</p>
<br /><a href="http://vivin.net/?p=124#comments" title="Comments on &quot;Horrible&quot;"><img src="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?124" alt="Comments" /></a><img src="http://vivin.net/?ak_action=api_record_view&#38;id=124&#38;type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://vivin.net/2002/11/15/horrible/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?124" />
		<media:content url="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?124" medium="image">
			<media:title type="html">Comments</media:title>
		</media:content>
		<media:content url="http://vivin.net/?ak_action=api_record_view&#38;id=124&#38;type=feed" medium="image" />
	</item>
		<item>
		<title>I rule!</title>
		<link>http://vivin.net/2002/11/06/i-rule/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://vivin.net/2002/11/06/i-rule/#comments</comments>
		<pubDate>Thu, 07 Nov 2002 03:34:34 +0000</pubDate>
		<dc:creator>vivin</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[ip resolution]]></category>
		<category><![CDATA[nameserver]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[resolv.conf]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://vivin.net/?p=120</guid>
		<description><![CDATA[It works!! It works!! The machine wasn&#8217;t able to resolve IP addresses. So I added the IP of the nameserver (that I got from my WinXP box my using nslookup) to /etc/resolv.conf and now it works. =D I&#8217;m sooo happy!!]]></description>
			<content:encoded><![CDATA[<p>It works!! It works!! The machine wasn&#8217;t able to resolve IP addresses. So I added the IP of the nameserver (that I got from my WinXP box my using nslookup) to /etc/resolv.conf and now it works. =D</p>
<p>I&#8217;m sooo happy!!</p>
<br /><a href="http://vivin.net/?p=120#comments" title="Comments on &quot;I rule!&quot;"><img src="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?120" alt="Comments" /></a><img src="http://vivin.net/?ak_action=api_record_view&#38;id=120&#38;type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://vivin.net/2002/11/06/i-rule/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?120" />
		<media:content url="http://vivin.net/wp-content/plugins/feed-comments-number/image.php?120" medium="image">
			<media:title type="html">Comments</media:title>
		</media:content>
		<media:content url="http://vivin.net/?ak_action=api_record_view&#38;id=120&#38;type=feed" medium="image" />
	</item>
	</channel>
</rss>

