<?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>Thirtyfootscrew's Blog &#187; unix</title>
	<atom:link href="http://thirtyfootscrew.com/tag/unix/feed/" rel="self" type="application/rss+xml" />
	<link>http://thirtyfootscrew.com</link>
	<description>I'm not here to sell cookies...</description>
	<lastBuildDate>Tue, 24 Jan 2012 06:10:37 +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>See a USB or CD/DVD drive in Terminal on Mac OS X</title>
		<link>http://www.bisql.net/2010/02/slashvolumes/</link>
		<comments>http://www.bisql.net/2010/02/slashvolumes/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 04:14:37 +0000</pubDate>
		<dc:creator>thirtyfootscrew</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Popular]]></category>
		<category><![CDATA[command-line]]></category>
		<category><![CDATA[darwin]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://thirtyfootscrew.com/?p=351</guid>
		<description><![CDATA[Here&#8217;s a quick tip that will allow you to see a a mounted USB drive or CD/DVD from the terminal in Mac OS X Snow Leopard (though this probably works in all versions of OS X)&#8230; cd /Volumes This is the location of all mounted drives, including CDs, DVDs, USB Hard Disks, Flash Drives and [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick tip that will allow you to see a a mounted USB drive or CD/DVD from the terminal in Mac OS X Snow Leopard (though this probably works in all versions of OS X)&#8230;</p>
<p style="padding-left: 30px;">cd /Volumes</p>
<p>This is the location of all mounted drives, including CDs, DVDs, USB Hard Disks, Flash Drives and even Mobile Me&#8217;s iDisk &#8211; they should all be available as folders below &#8220;/Volumes&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bisql.net/2010/02/slashvolumes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to throttle bandwidth on Mac OS X</title>
		<link>http://www.bisql.net/2009/08/how-to-throttle-bandwidth-on-mac-os-x/</link>
		<comments>http://www.bisql.net/2009/08/how-to-throttle-bandwidth-on-mac-os-x/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 06:51:52 +0000</pubDate>
		<dc:creator>thirtyfootscrew</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Popular]]></category>
		<category><![CDATA[bandwidth]]></category>
		<category><![CDATA[darwin]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[sudo]]></category>
		<category><![CDATA[throttle]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://thirtyfootscrew.com/?p=250</guid>
		<description><![CDATA[Everyone living in a shared house will eventually run up against the problem of sharing broadband, especially if you&#8217;re downloading music, movies, games and system updates.   I live with my girlfriend and a couple of days ago she was working from home and I really needed to download some Audible books for a long [...]]]></description>
			<content:encoded><![CDATA[<p>Everyone living in a shared house will eventually run up against the problem of sharing broadband, especially if you&#8217;re downloading music, movies, games and system updates.   I live with my girlfriend and a couple of days ago she was working from home and I really needed to download some <a href="http://www.audible.com/twit2" target="_blank">Audible</a> books for a long journey I had the next day, unfortunately whenever I tried to do this it kept knocking her off of her company&#8217;s VPN connection.  Now, I&#8217;ve seen download managers and bittorrent clients with bandwidth restrictions but nothing that would throttle a web browser so I did a bit of Googling and found <a href="http://www.macosxhints.com/article.php?story=20080119112509736">this helpful post</a>.  Basically I&#8217;d worked out that at full pelt I was getting 135Kbps and this caused a problem with the VPN connection so I figured that maybe a third of that (45Kbps) would be a fair amount of bandwith to take, to do implement the bandwidth cap I had to&#8230;</p>
<ul>
<li>Open up a session on OSX as the Administrator (I did this in parallel to my existing login).</li>
<li>Open up Terminal.</li>
<li>Type:
<pre><span style="color: #800000;"><strong>sudo ipfw pipe 1 config bw 45KByte/s</strong></span></pre>
<p>This sets up the rule limiting your bandwidth.</li>
<li>Type:
<pre><strong><span style="color: #800000;">sudo ipfw add 1 pipe 1 src-port 80</span></strong></pre>
<p>This enables the rule.</li>
</ul>
<p>Once you&#8217;ve finished the downloading you wanted to limit you&#8217;ll need to flip back into the administrator profile and do this&#8230;</p>
<ul>
<li>Type:
<pre><strong><span style="color: #800000;">sudo ipfw delete 1</span></strong></pre>
<p>This deletes the rule.</li>
</ul>
<p>If you have any questions, feel free to leave a comment. Please note that this only restricts Port 80 which is the general web traffic port, if you had other activity going on (Skype, Bittorrent) then you&#8217;d need to add a rule for each relevant port.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bisql.net/2009/08/how-to-throttle-bandwidth-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

