<?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>TechStuff</title>
	<atom:link href="http://www.shicho.net/lamp/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.shicho.net/lamp</link>
	<description>Tech stuff and info dump</description>
	<lastBuildDate>Wed, 02 May 2012 10:59:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Windows 7: How to stop Windows from automatically maximizing when all you want to do is gently resize them (eg turn off Aero Snap)</title>
		<link>http://www.shicho.net/lamp/?p=222</link>
		<comments>http://www.shicho.net/lamp/?p=222#comments</comments>
		<pubDate>Wed, 02 May 2012 10:58:13 +0000</pubDate>
		<dc:creator>grid</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.shicho.net/lamp/?p=222</guid>
		<description><![CDATA[This seems to differ slightly between different versions of Windows. The following works for Windows 7 Professional (Version 6.1, Build 7601: Service Pack 1). Click the Windows icon start menu button (usually at the lower left) which may look like this: Click on &#8216;Control Panel&#8217;. Click on &#8216;Ease of Access&#8217; Click on &#8216;Ease of Access [...]]]></description>
			<content:encoded><![CDATA[<p>This seems to differ slightly between different versions of Windows.  The following works for Windows 7 Professional (Version 6.1, Build 7601: Service Pack 1).</p>
<p>Click the Windows icon start menu button (usually at the lower left) which may look like this:</p>
<p><a href="http://www.shicho.net/lamp/wp-content/uploads/2012/05/windows-start.jpg"><img src="http://www.shicho.net/lamp/wp-content/uploads/2012/05/windows-start.jpg" alt="" title="windows-start" width="46" height="44" class="alignnone size-full wp-image-224" /></a></p>
<p>Click on &#8216;Control Panel&#8217;.</p>
<p>Click on &#8216;Ease of Access&#8217;</p>
<p>Click on &#8216;Ease of Access Center&#8217;</p>
<p>Click on &#8216;Change how your mouse works&#8217;</p>
<p>Under the &#8216;Make it easier to manage windows&#8217; heading, tick the box next to the option that says &#8216;Prevent windows from being automatically arranged when moved to the edge of the screen&#8217;</p>
<p>Click &#8216;OK&#8217;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shicho.net/lamp/?feed=rss2&#038;p=222</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to tell which version of windows you&#8217;re running</title>
		<link>http://www.shicho.net/lamp/?p=219</link>
		<comments>http://www.shicho.net/lamp/?p=219#comments</comments>
		<pubDate>Tue, 01 May 2012 09:58:41 +0000</pubDate>
		<dc:creator>grid</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.shicho.net/lamp/?p=219</guid>
		<description><![CDATA[Click the Start button or Windows icon. Usually this is in the bottom right corner. It may not say &#8216;Start&#8217;; instead, it might look something like this: In the search box where you can freely enter text (which may or may not say &#8216;Search programs and files&#8217; in light grey letters), type: winver and a [...]]]></description>
			<content:encoded><![CDATA[<p>Click the Start button or Windows icon.  Usually this is in the bottom right corner.  It may not say &#8216;Start&#8217;; instead, it might look something like this:</p>
<p><a href="http://www.shicho.net/lamp/wp-content/uploads/2012/05/windows-start.jpg"><img src="http://www.shicho.net/lamp/wp-content/uploads/2012/05/windows-start.jpg" alt="" title="windows-start" width="46" height="44" class="alignnone size-full wp-image-224" /></a></p>
<p>In the search box where you can freely enter text (which may or may not say &#8216;Search programs and files&#8217; in light grey letters), type:</p>
<p><code>winver</code></p>
<p>and a pop-up window should appear telling you the version of windows.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shicho.net/lamp/?feed=rss2&#038;p=219</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find out which version of django you&#8217;re running (linux, ubuntu)</title>
		<link>http://www.shicho.net/lamp/?p=212</link>
		<comments>http://www.shicho.net/lamp/?p=212#comments</comments>
		<pubDate>Mon, 12 Sep 2011 10:22:37 +0000</pubDate>
		<dc:creator>grid</dc:creator>
				<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.shicho.net/lamp/?p=212</guid>
		<description><![CDATA[At the command line, type: python Once you&#8217;re running python, type: import django django.get_version() You&#8217;ll get an output like: '1.1.1' which tells you you&#8217;re running Django version 1.1.l&#8230;although hopefully you&#8217;ll be running a newer version! : ) (In Ubuntu 10.10 and others, you can get to a command line prompt by selecting Application -> Accessories [...]]]></description>
			<content:encoded><![CDATA[<p>At the command line, type:</p>
<p><code>python</code></p>
<p>Once you&#8217;re running python, type:</p>
<p><code><br />
import django<br />
django.get_version()<br />
</code></p>
<p>You&#8217;ll get an output like:</p>
<p><code><br />
'1.1.1'<br />
</code></p>
<p>which tells you you&#8217;re running Django version 1.1.l&#8230;although hopefully you&#8217;ll be running a newer version! : )</p>
<p>(In Ubuntu 10.10 and others, you can get to a command line prompt by selecting Application -> Accessories -> Terminal from the desktop toolbar.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shicho.net/lamp/?feed=rss2&#038;p=212</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Ubuntu: How to get NPR&#8217;s &#8216;Car Talk&#8217; podcast (and other great shows) using gPodder</title>
		<link>http://www.shicho.net/lamp/?p=210</link>
		<comments>http://www.shicho.net/lamp/?p=210#comments</comments>
		<pubDate>Wed, 30 Mar 2011 09:55:11 +0000</pubDate>
		<dc:creator>grid</dc:creator>
				<category><![CDATA[gPodder]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Ubuntu 10.04]]></category>
		<category><![CDATA[Car Talk]]></category>

		<guid isPermaLink="false">http://www.shicho.net/lamp/?p=210</guid>
		<description><![CDATA[I recently spent way too much time faffing with trying to listen to one of my favourite NPR shows of all time: Car Talk. I&#8217;m running Ubuntu 10.04 so the iTunes option is a bit of a faff** and I had trouble with the play-online option. Thus, I went on a search for a Ubuntu [...]]]></description>
			<content:encoded><![CDATA[<p>I recently spent way too much time faffing with trying to listen to one of my favourite NPR shows of all time: Car Talk.  I&#8217;m running Ubuntu 10.04 so the iTunes option is a bit of a faff** and I had trouble with the play-online option.  </p>
<p>Thus, I went on a search for a Ubuntu Car Talk podcast strategy that I&#8217;d be happy recommending to my parents.  The winner is gPodder.  (There may be others equally good or better, but I came across this one quite early in my search and it does the job.)</p>
<p>Here&#8217;s how to install it and get Car Talk up and running:</p>
<p>Open Synaptic Package Manager.  On Ubuntu 10.4 and others, this can be found under System -> Administration -> Synaptic Package Manager.  (You may have to enter your password to open Synaptic.)</p>
<p>Once Synaptic is open, you should see a box entitled &#8216;Quick search&#8217; at the top. Click the mouse in this box, type in &#8216;gpodder&#8217; then click enter.  A package called &#8216;gpodder&#8217; should come up in the search results.</p>
<p>If this program is already installed, there will be a version number listed in the &#8216;Installed Version&#8217; column.  If it isn&#8217;t installed, click the tickbox to the left of &#8216;gpodder&#8217; and choose &#8216;Mark for installation&#8217;.  You may be asked to install other files which support gpodder &#8211; this kind of message usually comes up in a box titled &#8216;Mark additional required changes?&#8217;.  Agree to install these other files by clicking on the button labelled &#8216;Mark&#8217;.</p>
<p>Once you are done with all of that, click the button with the green tick and the words &#8216;Apply&#8217; at the top of the main Synaptic window.  Wait for awhile whilst the package is downloaded and installed.  (You will need an internet connection for this.)  Eventually, the &#8216;Applying changes&#8217; window will disappear or give you a message saying that everything has been installed.  At this point, you can close the Synaptic window by clicking on the &#8216;x&#8217; at the top of the window.</p>
<p>Now, you can open gpodder, a nice piece of Ubunutu-friendly podcast software.  You can find this in Applications -> Sound &#038; Video -> gPodder Podcast Client.</p>
<p>When you open the client for the first time, you get a little window called the &#8216;gPodder startup assistant&#8217;.  There is a button entitled &#8216;Choose from a list of example podcasts&#8217;.  Click this button!</p>
<p>This opens a new window called &#8216;Find new podcasts&#8217;.  If you click on the &#8216;Top podcasts&#8217; tab, you&#8217;ll find a list with some gems on it.  Most importantly, if you scroll down a bit, you&#8217;ll find &#8216;NPR: Car Talk Podcast&#8217;!</p>
<p>For each podcast to which you&#8217;d like to subscribe, tick the check-box to the left of the podcast.  When you&#8217;re done, click the &#8216;Add&#8217; button.</p>
<p>You might then get a window that says &#8216;New episodes available&#8217;.  Select which ones you want by ticking the checkboxes next to the episodes (if they&#8217;re not already ticked) and then clicking the &#8216;Download&#8217; button.</p>
<p>Once an episode has downloaded, it will have a little icon next to it under the &#8216;Status&#8217; column.  You can click on the episode to choose it and then click the &#8216;Play&#8217; button at the top of the window.</p>
<p>You might notice older episodes that are available but that aren&#8217;t being automatically downloaded.  (This is when you&#8217;re in the Podcast tan and you&#8217;ve clicked on the title of a certain show to see what episodes are available.)  If you want these as well, you can right-click on the show title and choose &#8216;Download&#8217;.  Once an episode is downloaded, you can delete it by right-clicking and choosing &#8216;Delete&#8217;.</p>
<p>Also, if you want gPodder to automatically download new episodes, you&#8217;ll need to go to Podcasts -> Preferences -> General and tick the boxes under &#8216;Automatic download of episode list&#8217; which will allow gPodder to know when new episodes are available.  You can then go to Podcasts -> Preferences -> Tray Icon.  Here you can choose how gPodder is displayed on your computer and you can choose &#8216;Always automatically download new episodes&#8217; under the &#8216;Advanced window options&#8217; heading.  </p>
<p>Of course, there&#8217;s a lot more to gPodder and you may want to use; Help -> User manual is a good place to start if you&#8217;re having trouble.</p>
<p>** Archduke did manage to download and play an episode of Car Talk using iTunes with wine, but it was all a bit touch and go, and not something I would recommend in general.  When wine/iTunes were running, the display went a bit weird and one got the feeling that Bad Things Might Happen At Any Moment.  So&#8230;I don&#8217;t think that&#8217;s a good long-term solution for people who aren&#8217;t looking for trouble.  It&#8217;s very possible that with some tweaking, iTunes works perfectly under wine but life is short and I like gPodder&#8217;s simple, straight-forward design.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.shicho.net/lamp/?feed=rss2&#038;p=210</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 10.04 &amp; Synaptic Package Manager 0.63.1: Adding &#8216;Universe&#8217; repository</title>
		<link>http://www.shicho.net/lamp/?p=206</link>
		<comments>http://www.shicho.net/lamp/?p=206#comments</comments>
		<pubDate>Thu, 01 Jul 2010 18:26:09 +0000</pubDate>
		<dc:creator>grid</dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[Ubuntu 10.04]]></category>
		<category><![CDATA[repositories]]></category>
		<category><![CDATA[Synaptic Package Manager]]></category>

		<guid isPermaLink="false">http://www.shicho.net/lamp/?p=206</guid>
		<description><![CDATA[To add the &#8216;Universe&#8217; repository, open Synaptic Package Manager by typing System -> Administration -> Synaptic Package Manager and entering your password in the pop-up window. In the main Synaptic window, go to Settings -> Repositories and then click the &#8216;Ubuntu Software&#8217; tab. In the &#8216;Sources&#8217; pop-up, click the tickbox next to the line that [...]]]></description>
			<content:encoded><![CDATA[<p>To add the &#8216;Universe&#8217; repository, open Synaptic Package Manager by typing System -> Administration -> Synaptic Package Manager and entering your password in the pop-up window.  </p>
<p>In the main Synaptic window, go to Settings -> Repositories and then click the &#8216;Ubuntu Software&#8217; tab. In the &#8216;Sources&#8217; pop-up, click the tickbox next to the line that reads &#8216;Community maintained Open Source software (universe)&#8217;.  </p>
<p>Click &#8216;Close&#8217; on the pop-up.</p>
<p>This allows one to download programmes from the &#8216;Universe&#8217; repository using either Synaptic Package Manager or apt-get install.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shicho.net/lamp/?feed=rss2&#038;p=206</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(Ubuntu) linux: how to find out what processor/CPU</title>
		<link>http://www.shicho.net/lamp/?p=196</link>
		<comments>http://www.shicho.net/lamp/?p=196#comments</comments>
		<pubDate>Sun, 06 Jun 2010 09:47:39 +0000</pubDate>
		<dc:creator>grid</dc:creator>
				<category><![CDATA[Command line]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[cpu]]></category>
		<category><![CDATA[processor]]></category>

		<guid isPermaLink="false">http://www.shicho.net/lamp/?p=196</guid>
		<description><![CDATA[Open a terminal (Applications -> Accessories -> Terminal in Ubuntu 10.04) and type: less /proc/cpuinfo This gives a lot of information. Look for the &#8216;model name&#8217; entry the top of the list. For example, here are the first several lines of my /proc/cpuinfo: processor : 0 vendor_id : GenuineIntel cpu family : 6 model : [...]]]></description>
			<content:encoded><![CDATA[<p>Open a terminal (Applications -> Accessories -> Terminal in Ubuntu 10.04) and type:</p>
<blockquote><p>less /proc/cpuinfo</p></blockquote>
<p>This gives a lot of information.  Look for the &#8216;model name&#8217; entry the top of the list.</p>
<p>For example, here are the first several lines of my /proc/cpuinfo:</p>
<blockquote><p>processor       : 0<br />
vendor_id       : GenuineIntel<br />
cpu family      : 6<br />
model           : 28<br />
model name      : Intel(R) Atom(TM) CPU N270   @ 1.60GHz<br />
stepping        : 2<br />
cpu MHz         : 800.000<br />
cache size      : 512 KB<br />
&#8230;</p></blockquote>
<p>Press the spacebar to go down a &#8216;page&#8217; and &#8216;q&#8217; to quit.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shicho.net/lamp/?feed=rss2&#038;p=196</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find recently modified files (linux)</title>
		<link>http://www.shicho.net/lamp/?p=197</link>
		<comments>http://www.shicho.net/lamp/?p=197#comments</comments>
		<pubDate>Sun, 06 Jun 2010 09:40:57 +0000</pubDate>
		<dc:creator>grid</dc:creator>
				<category><![CDATA[Command line]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[recently modified files]]></category>

		<guid isPermaLink="false">http://www.shicho.net/lamp/?p=197</guid>
		<description><![CDATA[Open a terminal (Applications -> Accessories -> Terminal in Ubuntu 10.04, for example). Typing: find . -mtime -1 -print will find files in the current directory that have been modified in the past 24 hours. The &#8216;.&#8217; can be replaced with another directory. Thanks to My Digital Life for the information &#8211; this site gives [...]]]></description>
			<content:encoded><![CDATA[<p>Open a terminal (Applications -> Accessories -> Terminal in Ubuntu 10.04, for example).  Typing:</p>
<blockquote><p>find . -mtime -1 -print</p></blockquote>
<p>will find files in the current directory that have been modified in the past 24 hours.  The &#8216;.&#8217; can be replaced with another directory.</p>
<p>Thanks to <a href="http://www.mydigitallife.info/2006/01/19/find-files-that-are-modified-today-or-since-certain-time-ago-in-unix/">My Digital Life</a> for the information &#8211; this site gives more information and other options.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shicho.net/lamp/?feed=rss2&#038;p=197</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>grep: how to use grep to search history (linux)</title>
		<link>http://www.shicho.net/lamp/?p=184</link>
		<comments>http://www.shicho.net/lamp/?p=184#comments</comments>
		<pubDate>Mon, 31 May 2010 10:43:58 +0000</pubDate>
		<dc:creator>grid</dc:creator>
				<category><![CDATA[Command line]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[grep]]></category>
		<category><![CDATA[history]]></category>

		<guid isPermaLink="false">http://www.shicho.net/lamp/?p=184</guid>
		<description><![CDATA[I often remember only part of something I did before and want to remember how I&#8217;ve done something. To easily search through the history, the glorious grep can be invoked like this: history &#124; grep phrase_to_search_for If the phrase to search for involves spaces or special characters, then quotes can be used around the phrase: [...]]]></description>
			<content:encoded><![CDATA[<p>I often remember only part of something I did before and want to remember how I&#8217;ve done something.  To easily search through the history, the glorious <code>grep</code> can be invoked like this:</p>
<blockquote><p>history | grep phrase_to_search_for</p></blockquote>
<p>If the phrase to search for involves spaces or special characters, then quotes can be used around the phrase:</p>
<blockquote><p>history | grep &#8216;phrase to search for&#8217;</p></blockquote>
<p>To search for something with quotes, you can surround your phrase-to-search-for with the &#8216;other&#8217; kind of quote.</p>
<p>For example,</p>
<blockquote><p>history | grep &#8216;phrase to &#8220;search&#8221; for&#8217;</p></blockquote>
<p>will match</p>
<blockquote><p>phrase to &#8220;search&#8221; for</p></blockquote>
<p>and </p>
<blockquote><p>history | grep &#8220;phrase to &#8216;search&#8217; for&#8221;</p></blockquote>
<p>will match </p>
<blockquote><p>phrase to &#8216;search&#8217; for</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.shicho.net/lamp/?feed=rss2&#038;p=184</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>linux: find out what you&#8217;ve recently typed at the command line</title>
		<link>http://www.shicho.net/lamp/?p=182</link>
		<comments>http://www.shicho.net/lamp/?p=182#comments</comments>
		<pubDate>Mon, 31 May 2010 10:43:53 +0000</pubDate>
		<dc:creator>grid</dc:creator>
				<category><![CDATA[Command line]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[history]]></category>

		<guid isPermaLink="false">http://www.shicho.net/lamp/?p=182</guid>
		<description><![CDATA[If you open a terminal window (in Ubuntu 10.04, go to Applications->Accessories->Terminal) and type history this will print out a list of things that have been recently typed at the command line. If you&#8217;re curious, the history is stored in a file called .bash_history which you can view as a file. In Ubuntu, for example, [...]]]></description>
			<content:encoded><![CDATA[<p>If you open a terminal window (in Ubuntu 10.04, go to Applications->Accessories->Terminal) and type</p>
<blockquote><p>history</p></blockquote>
<p>this will print out a list of things that have been recently typed at the command line.</p>
<p>If you&#8217;re curious, the history is stored in a file called <code>.bash_history</code> which you can view as a file.  In Ubuntu, for example, you can open it with gedit by opening a terminal window and typing</p>
<blockquote><p>gedit .bash_history</p></blockquote>
<p>at the command line.</p>
<p>Note: if you have two (or more) terminal windows open and are typing commands in all of them, the history of one terminal window won&#8217;t know about what you&#8217;ve typed in the other window.  If you close, say terminal window A, leave terminal window B open. and then open terminal window C, typing <code>history</code> in terminal window C will display what you&#8217;ve typed in A but not in B.</p>
<p>Examples of using <code>grep</code> to search through the history are <a href="http://www.shicho.net/lamp/?p=184">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shicho.net/lamp/?feed=rss2&#038;p=182</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to list partitions and basic partition information: linux</title>
		<link>http://www.shicho.net/lamp/?p=179</link>
		<comments>http://www.shicho.net/lamp/?p=179#comments</comments>
		<pubDate>Mon, 31 May 2010 10:09:40 +0000</pubDate>
		<dc:creator>grid</dc:creator>
				<category><![CDATA[Command line]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[fdisk]]></category>
		<category><![CDATA[partitions]]></category>

		<guid isPermaLink="false">http://www.shicho.net/lamp/?p=179</guid>
		<description><![CDATA[To find out basic information about partitions, open a terminal window (Applications -> Accessories -> Terminal in Ubuntu 10.04 and others) and type fdisk -l at the command line. (If nothing happens, try typing sudo fdisk -l at the command line and entering your password when prompted.) Something like this should be displayed: Disk /dev/sda: [...]]]></description>
			<content:encoded><![CDATA[<p>To find out basic information about partitions, open a terminal window (<code>Applications -> Accessories -> Terminal</code> in Ubuntu 10.04 and others) and type</p>
<blockquote><p>fdisk -l</p></blockquote>
<p>at the command line.</p>
<p>(If nothing happens, try typing</p>
<blockquote><p>sudo fdisk -l</p></blockquote>
<p>at the command line and entering your password when prompted.)  </p>
<p>Something like this should be displayed:</p>
<blockquote><p>
Disk /dev/sda: 160.0 GB, 160041885696 bytes<br />
255 heads, 63 sectors/track, 19457 cylinders<br />
Units = cylinders of 16065 * 512 = 8225280 bytes<br />
Sector size (logical/physical): 512 bytes / 512 bytes<br />
I/O size (minimum/optimal): 512 bytes / 512 bytes<br />
Disk identifier: 0&#215;66666666</p>
<p>Device Boot      Start         End      Blocks   Id  System<br />
/dev/sda1   *           1        2613    20988891    c  W95 FAT32 (LBA)<br />
/dev/sda2            2614       17532   119830471+   f  W95 Ext&#8217;d (LBA)<br />
/dev/sda3           17532       19458    15471448   12  Compaq diagnostics<br />
/dev/sda5           13566       17532    31856640    7  HPFS/NTFS<br />
/dev/sda6            2614       13194    84991819+  83  Linux<br />
/dev/sda7           13195       13565     2980026   82  Linux swap / Solaris
</p></blockquote>
<p>Here, <code>/dev/sda6</code> is my linux partition.</p>
<p>In Ubuntu 10.04, you can navigate to System -> Administration -> Disk Utility to get a big graphical display of this information (and more).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shicho.net/lamp/?feed=rss2&#038;p=179</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

