<?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:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">

<channel>
	<title>Thomas Nybergh &#187; linux/unix</title>
	<atom:link href="http://www.nybergh.net/notes/category/linuxunix/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nybergh.net</link>
	<description></description>
	<lastBuildDate>Mon, 28 Nov 2011 20:34:23 +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>Batch convert Irssi logs or other text files to UTF-8 using recode</title>
		<link>http://www.nybergh.net/notes/2009/02/08/batch-convert-irssi-logs-or-other-text-files-to-utf-8-using-recode/</link>
		<comments>http://www.nybergh.net/notes/2009/02/08/batch-convert-irssi-logs-or-other-text-files-to-utf-8-using-recode/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 14:27:50 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[link tips]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=173</guid>
		<description><![CDATA[When I recently rented a VPS running a fresh install of Debian, I thought it was about time to stick with the now default Unicode locale, UTF-8. Doing this switch in a sensible fashion would include converting often used text files, such as chat logs from the older, more compatible but limited ISO 8859-15 charset. [...]]]></description>
			<content:encoded><![CDATA[<p>When I recently rented a <a href="http://en.wikipedia.org/wiki/Virtual_private_server">VPS</a> running a fresh install of <a href="http://www.debian.org">Debian</a>, I thought it was about time to stick with the now default <a href="http://en.wikipedia.org/wiki/Unicode">Unicode</a> locale, <a href="http://en.wikipedia.org/wiki/UTF-8" target="_blank">UTF-8</a>. Doing this switch in a sensible fashion would include converting often used text files, such as chat logs from the older, more compatible but limited <a href="http://en.wikipedia.org/wiki/ISO/IEC_8859-15">ISO 8859-15</a> charset.</p>
<p>(By the way: <a href="http://www.linode.com/?r=1a6b2f3b1d8d45c56752699f0b2e3755964a7cc3" target="_blank">Linode</a>, my VPS host, seems to be <a href="http://hostingfu.com/article/linode-xen-vps-review">awesome</a>.)</p>
<p>My chat client <a href="http://www.irssi.org" target="_blank">Irssi</a> combined with <a href="http://www.openssh.com" target="_blank">OpenSSH</a>, <a href="http://www.gnu.org/software/screen/" target="_blank">GNU Screen</a> and <a href="http://www.bitlbee.org" target="_blank">Bitlbee</a> provides me with hugely powerful social infrastructure in the form of continuous conversations that can be reached with any SSH client. Add logging and basic Unix tools to the mix and you have a silly fast and simple way of finding stuff you&#8217;ve discussed. In other words: my IRC/Live/Jabber logs are important works of reference and must be kept up to date with the system locale.</p>
<p>I failed to find any directly suitable or functional shell one-liners for this operation, until <a href="http://www.cs.helsinki.fi/u/tajnyman/" target="_blank">Thomas</a> handed me something that worked for me.</p>
<p>The conversion command later on this page converts all files in Irssi&#8217;s default log location, <code>~/irclogs</code>, and its subdirectories from ISO-8859-15 to UTF-8.  The conversion is performed on the files themselves<strong> </strong>using <a href="http://www.gnu.org/software/recode/" target="_blank">recode</a> <strong>in their current location</strong>. Don&#8217;t run with scissors, please do yourself a favor by making a <a href="http://420.thrashbarg.net/jesus_saves_incremental_backups.jpg">backup</a> copy of your precious logs. The most obvious tool for that is perhaps:</p>
<p><code>"cp -r ~/irclogs ~/backup_irclogs"</code></p>
<p><strong>This is <a href="http://www.cs.helsinki.fi/u/tajnyman/">Thomas</a>&#8216; conversion command:</strong></p>
<p><code>"find ~/irclogs/* | while read i; do echo "Converting $i"; recode ISO-8859-15..UTF-8 "$i"; done"</code></p>
<p><a href="http://www.waino.org" target="_blank">Stig</a> later informed me about <a href="http://www.gnu.org/software/findutils/" target="_blank">find</a> having exec capablities, but since I&#8217;m lazy and all that, you&#8217;ll have to optimze the above version yourself.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.nybergh.net">Thomas Nybergh</a></strong>. Unless something else is specified, the content of this post is licensed under the <a href="http://creativecommons.org/licenses/by-nc-sa/1.0/fi/deed.en">Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license</a>. Questions related to licensing can be sent to thomas [at] nybergh.net. Now, go eat some ice cream.<img src="http:///misc.nybergh.net/trk/white_pixel_nybergh.gif"><br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.nybergh.net/notes/2009/02/08/batch-convert-irssi-logs-or-other-text-files-to-utf-8-using-recode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HP GPLs the Tru64 Unix Advanced File System</title>
		<link>http://www.nybergh.net/notes/2008/06/23/hp-gpls-the-tru64-unix-advanced-file-system/</link>
		<comments>http://www.nybergh.net/notes/2008/06/23/hp-gpls-the-tru64-unix-advanced-file-system/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 21:26:52 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[file systems]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=137</guid>
		<description><![CDATA[Hewlett-Packard has released the source code of AdvFS under the GNU General Public License. AdvFS is an advanced file system (with features such as snapshots and storage pools) used by the company&#8217;s high end Tru64 UNIX operating system. This probably means that HP does a lot of business with Linux, and that there really is [...]]]></description>
			<content:encoded><![CDATA[<p>Hewlett-Packard has <a href="http://linux.slashdot.org/linux/08/06/23/1728259.shtml" target="_blank">released</a> the <a href="http://advfs.sf.net/" target="_blank">source code</a> of <a href="http://en.wikipedia.org/wiki/AdvFS" target="_blank">AdvFS</a> under the GNU General Public License. AdvFS is an advanced file system (with features such as snapshots and storage pools) used by the company&#8217;s high end <a href="http://en.wikipedia.org/wiki/Tru64_UNIX" target="_blank">Tru64 UNIX</a> operating system.</p>
<p>This probably means that HP does a lot of business with Linux, and that there really is a real demand for a GPL&#8217;d modern file system with features comparable to those of <a href="http://en.wikipedia.org/wiki/ZFS">ZFS</a>.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.nybergh.net">Thomas Nybergh</a></strong>. Unless something else is specified, the content of this post is licensed under the <a href="http://creativecommons.org/licenses/by-nc-sa/1.0/fi/deed.en">Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license</a>. Questions related to licensing can be sent to thomas [at] nybergh.net. Now, go eat some ice cream.<img src="http:///misc.nybergh.net/trk/white_pixel_nybergh.gif"><br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.nybergh.net/notes/2008/06/23/hp-gpls-the-tru64-unix-advanced-file-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing omglog.com</title>
		<link>http://www.nybergh.net/notes/2008/06/22/introducing-omglogcom/</link>
		<comments>http://www.nybergh.net/notes/2008/06/22/introducing-omglogcom/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 13:05:44 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[link tips]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[omglog]]></category>
		<category><![CDATA[projects]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=132</guid>
		<description><![CDATA[For some time, I&#8217;ve wanted another blog with a significantly lower threshold for posting short shutouts of those random links that keep me distracted. The source of this text, the notes section on my personal site, should for a number of reasons be kept relatively tidy and reserved for longer posts with my own, original [...]]]></description>
			<content:encoded><![CDATA[<p>For some time, I&#8217;ve wanted another blog with a significantly lower threshold for posting short shutouts of those random links that keep me distracted. The source of this text, the notes section on my personal site, should  for a number of reasons be kept relatively tidy and reserved for longer posts with my own, original content. There&#8217;s at least the aspect of tagging and categorizing mutating into some completely different, before unseen beast on any site with more than 5 posts a day; designing sites with lots of different content is difficult. &#8220;Difficult&#8221; is a word I&#8217;d like to not be descriptive of a site that one day might become a CV of some kind.</p>
<p>I like writing longer texts, but length leads to a number of problems. Most importantly: the editing process of making a long text readable is a timesink in itself. To make things more difficult, I&#8217;m usually blogging in a language I don&#8217;t speak natively, which makes it hard to live up to the ideal of posting nothing but well structured divine words of wisdom, unless I choose to give writing indecent amounts of time I&#8217;d rather spend procrastinating in a different fashion. Also: no one reads long texts on the web, at least I know I hardly do so.</p>
<p>In other words, by writing only longer texts, fewer individual works get written and I&#8217;m giving any readers I might have less useful information. Choosing to focus on longer texts of a certain level of depth causes the the exclusion of stuff that really should be posted somewhere.</p>
<p><a href="http://omglog.com"><img title="Honestly, this isn't Twitter" src="http://www.nybergh.net/stuff/linked/2008/06/2008-06-18-omglogcom-with-prologue-theme-150x150.png" alt="omglog.com 2008-06-16" width="150" height="150" /></a></p>
<p><strong>I think I&#8217;ve now solved this dilemma</strong>. No, I didn&#8217;t discover <a href="http://del.icio.us">Delicious</a>/<a href="http://www.stumbleupon.com" target="_blank">SU</a> or the for <a href="http://twitterholic.com" target="_blank">&#8216;merican Internet celebrity and presidential candidate types</a> so popular combination of <a href="http://twitter.com/" target="_blank">Twitter</a> and <a href="http://tinyurl.com/" target="_blank">Tinyurl</a> &#8211; the whole point here is to be self hosted, and besides I already use IRC and Facebook for real world contacts.</p>
<p>What I did do was to open a WP site at <strong><a href="http://omglog.com" target="_blank">omglog.com</a></strong>. Beginning with the <a href="http://en.blog.wordpress.com/2008/01/28/introducing-prologue/" target="_blank">Prologue</a> based design, it feels like a combination of a <a href="http://en.wikipedia.org/wiki/Micro-blogging" target="_blank">microblog</a> and a <a href="http://en.wikipedia.org/wiki/Tumblelog" target="_blank">tumblelog</a>. Keeping <strong><a href="http://omglog.com" target="_blank">omglog.com</a> </strong>within the bounds of being <strong>a simple diary of notable links</strong> is a high priority, as I believe that all the five to eight people who read my posts regularly don&#8217;t need another source of lengthy rants written in dysfunctional English.</p>
<p>Hoping to activate a few potential contributors, I chose to include the author&#8217;s name in the &#8220;permalink structure&#8221;, the way URLs look on the blog. To illustrate this: my entries can be reached at <strong><a href="http://omglog.com/thomas" target="_blank">omglog.com/thomas</a></strong>. All authors obviously have individual feeds with their own posts; my first use for this was to automatically import my posts as &#8220;notes&#8221; on Facebook and similar places.</p>
<p>I invite all readers of this to subsribe to the <strong><a href="http://feeds.omglog.com/omglog">main omglog feed</a></strong>. Anyone I know is also welcome to join <strong><a href="http://omglog.com">omglog.com</a></strong> as a contributor, consider contacting me if you need a place for storing interesting links in mainly English, Finnish and Scandinavian languages. The goal is to be very free-form, all contributors are asked to kindly define &#8220;interesting&#8221; by themselves, I&#8217;m already busy being interested on my own.</p>
<p>If you don&#8217;t want to post yourself, feel free to send me links (hello [at] omglog [dot] com).</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.nybergh.net">Thomas Nybergh</a></strong>. Unless something else is specified, the content of this post is licensed under the <a href="http://creativecommons.org/licenses/by-nc-sa/1.0/fi/deed.en">Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license</a>. Questions related to licensing can be sent to thomas [at] nybergh.net. Now, go eat some ice cream.<img src="http:///misc.nybergh.net/trk/white_pixel_nybergh.gif"><br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.nybergh.net/notes/2008/06/22/introducing-omglogcom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File system expert from Sun posts &#8220;ZFS Pics&#8221; from meeting with Torvalds</title>
		<link>http://www.nybergh.net/notes/2008/05/19/file-system-expert-from-sun-posts-zfs-pics-from-meeting-with-torvalds/</link>
		<comments>http://www.nybergh.net/notes/2008/05/19/file-system-expert-from-sun-posts-zfs-pics-from-meeting-with-torvalds/#comments</comments>
		<pubDate>Mon, 19 May 2008 21:35:42 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[Sun]]></category>
		<category><![CDATA[ZFS]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=108</guid>
		<description><![CDATA[Something exciting may be going on. Jeff Bonwick, storage expert and leader of the ZFS team at Sun has posted pictures from a seemingly informal meeting with Linus Torvalds on his blog. Sr Program Manager at Sun, Jim Grisanzio also links to the pictures in a blog post of his own titled &#8220;ZFS Pics&#8220;. Does [...]]]></description>
			<content:encoded><![CDATA[<p>Something exciting may be going on. Jeff Bonwick, storage expert and leader of the <a href="http://en.wikipedia.org/wiki/ZFS" target="_blank">ZFS</a> team at Sun has posted pictures from a seemingly informal meeting with Linus Torvalds <a href="http://blogs.sun.com/bonwick/entry/Casablanca" target="_blank">on his blog</a>. Sr Program Manager at Sun, Jim Grisanzio also links to the pictures in a blog post of his own titled &#8220;<a href="http://blogs.sun.com/jimgris/entry/zfs_pics" target="_blank">ZFS Pics</a>&#8220;.</p>
<p>Does this imply that the Jesus of file systems for serious storage needs may be ported to a near future version of the Linux kernel, despite the <a href="http://en.wikipedia.org/wiki/ZFS#Linux" target="_blank">current licensing issues</a>?
<p><a href='http://www.nybergh.net/stuff/linked/2008/05/zfs.png'><img src="http://www.nybergh.net/stuff/linked/2008/05/zfs-150x150.png" alt="Apple:ish ZFS text" title="Some people need all sorts of glossy effects to get excited by ZFS" width="150" height="150" class="alignnone size-thumbnail wp-image-109" /></a></p>
<p>(image borrowed from <a href="http://www.storiediapple.it/discs-filesystems-and-macs-interview-with-drew-thaler.html">some Apple dude</a>)</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.nybergh.net">Thomas Nybergh</a></strong>. Unless something else is specified, the content of this post is licensed under the <a href="http://creativecommons.org/licenses/by-nc-sa/1.0/fi/deed.en">Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license</a>. Questions related to licensing can be sent to thomas [at] nybergh.net. Now, go eat some ice cream.<img src="http:///misc.nybergh.net/trk/white_pixel_nybergh.gif"><br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.nybergh.net/notes/2008/05/19/file-system-expert-from-sun-posts-zfs-pics-from-meeting-with-torvalds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amarok&#8217;s sound output broken by default in Ubuntu 8.04</title>
		<link>http://www.nybergh.net/notes/2008/05/16/amaroks-sound-output-broken-by-default-in-ubuntu-804/</link>
		<comments>http://www.nybergh.net/notes/2008/05/16/amaroks-sound-output-broken-by-default-in-ubuntu-804/#comments</comments>
		<pubDate>Fri, 16 May 2008 18:07:40 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Amarok]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Hardy Heron]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=95</guid>
		<description><![CDATA[After installing Ubuntu Linux 8.04 (Hardy Heron), I didn&#8217;t get any sound when I tried to play sound files in Amarok (the distribution&#8217;s own package of version 1.4.9.1), a music oriented audio player/music library for *nix. I fixed this by changing opening Settings - Configure Amarok - Engine and changing the Xine engine&#8217;s (no other [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nybergh.net/stuff/linked/2008/05/amarok-1491-engine-configuration-output-plugin-selection-ubuntu-804-screenshot.png"><img class="alignnone size-medium wp-image-97" style="vertical-align: middle;" title="Changing the settings saves you from loss of music and cake" src="http://www.nybergh.net/stuff/linked/2008/05/amarok-1491-engine-configuration-output-plugin-selection-ubuntu-804-screenshot-279x300.png" alt="Screenshot of Amarok 1.4.9.1's engine configuration output plugin selection in Ubuntu 8.04" width="279" height="300" /></a></p>
<p>After installing <a href="http://www.ubuntu.com">Ubuntu</a> Linux 8.04 (Hardy Heron), I didn&#8217;t get any sound when I tried to play sound files in <a href="http://amarok.kde.org">Amarok</a> (the distribution&#8217;s own package of version 1.4.9.1), a music oriented audio player/music library for *nix.</p>
<p>I fixed this by changing opening <code>Settings - Configure Amarok - Engine</code> and changing the Xine engine&#8217;s (<a href="http://amarok.kde.org/blog/archives/91-Backends,-Phonon,-GStreamer.html">no other engine</a> is installed by default these days) output plugin from &#8220;<code>default</code>&#8221; to &#8220;<code>alsa</code>&#8220;. The problem is probably related to <a href="http://pulseaudio.org">PulseAudio</a>, <a href="http://en.wikipedia.org/wiki/PulseAudio">a new sound server</a> used by default in many recent GNU/Linux distributions.</p>
<p><a href="http://www.nybergh.net/stuff/linked/2008/05/amarok-1491-engine-configuration-output-plugin-selection-ubuntu-804-screenshot.png"><br />
</a></p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.nybergh.net">Thomas Nybergh</a></strong>. Unless something else is specified, the content of this post is licensed under the <a href="http://creativecommons.org/licenses/by-nc-sa/1.0/fi/deed.en">Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license</a>. Questions related to licensing can be sent to thomas [at] nybergh.net. Now, go eat some ice cream.<img src="http:///misc.nybergh.net/trk/white_pixel_nybergh.gif"><br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.nybergh.net/notes/2008/05/16/amaroks-sound-output-broken-by-default-in-ubuntu-804/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Printing with a Lexmark E232 via Apple Airport in Ubuntu Linux</title>
		<link>http://www.nybergh.net/notes/2008/05/13/lexmark-232-in-ubuntu-linux/</link>
		<comments>http://www.nybergh.net/notes/2008/05/13/lexmark-232-in-ubuntu-linux/#comments</comments>
		<pubDate>Tue, 13 May 2008 15:20:00 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[hardware]]></category>
		<category><![CDATA[in English]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[AirPort]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Crapple]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[printing]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=93</guid>
		<description><![CDATA[The Lexmark E232 laser printer I need to use at the office works for me in Ubuntu Linux 8.04 (Hardy Heron) if added in the &#8220;System -&#62; Administration -&#62; Printing&#8221; as a &#8220;Generic PCL 5c Printer&#8221; using the &#8220;CUPS+Gutenprint v5.0.2 Simplified&#8221; CUPS driver. In this particular setup, the printer is shared from its USB port [...]]]></description>
			<content:encoded><![CDATA[<p>The Lexmark E232 laser printer I need to use at the office works for me in <a href="http://www.ubuntu.com" target="_blank">Ubuntu</a> Linux 8.04 (Hardy Heron) if added in the &#8220;<code>System -&gt; Administration -&gt; Printing</code>&#8221; as a &#8220;<code>Generic PCL 5c Printer</code>&#8221; using the &#8220;<code>CUPS+Gutenprint v5.0.2 Simplified</code>&#8221; CUPS driver.</p>
<p><a href='http://www.nybergh.net/stuff/linked/2008/05/crapple-airport-extreme-2007.jpg'><img src="http://www.nybergh.net/stuff/linked/2008/05/crapple-airport-extreme-2007-300x200.jpg" alt="Crapple Airport Extreme (2007 model)" title="NUKE CUPERTINO!" width="300" height="200" class="alignnone size-medium wp-image-94" /></a></p>
<p>In this particular setup, the printer is shared from its USB port using one of those utterly disgusting <a href="http://en.wikipedia.org/wiki/AirPort">Apple Airport</a> Extremes that don&#8217;t even have an http user interface for configuration. <strong>Don&#8217;t buy Apple&#8217;s networking equipment!</strong> The hardware may be of good quality and well designed but the devices are, thanks to their software, obfuscated and very limited in terms of functionality. Why do people even buy routers that require special software for both the initial setup and any later configuration changes? There certainly are cheaper an more functional printer and file servers for home networks.</p>
<p>I configured the E232 as an HP Jetdirect device (port 9100 on the IP address used by the Crapple Airport Extreme and printer sharing). Printing works fine using these settings.</p>
<p>[via:<a href="http://www.linuxforums.org/forum/ubuntu-help/70037-lexmark-e232.html#post366642" target="_blank">Linux Forums</a>]</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.nybergh.net">Thomas Nybergh</a></strong>. Unless something else is specified, the content of this post is licensed under the <a href="http://creativecommons.org/licenses/by-nc-sa/1.0/fi/deed.en">Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license</a>. Questions related to licensing can be sent to thomas [at] nybergh.net. Now, go eat some ice cream.<img src="http:///misc.nybergh.net/trk/white_pixel_nybergh.gif"><br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.nybergh.net/notes/2008/05/13/lexmark-232-in-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amarok in Ubuntu 8.04 won&#8217;t scrobble</title>
		<link>http://www.nybergh.net/notes/2008/05/09/amarok-in-ubuntu-804-wont-scrobble/</link>
		<comments>http://www.nybergh.net/notes/2008/05/09/amarok-in-ubuntu-804-wont-scrobble/#comments</comments>
		<pubDate>Fri, 09 May 2008 12:06:59 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Amarok]]></category>
		<category><![CDATA[Hardy]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=83</guid>
		<description><![CDATA[EDIT: This post gets some traffic from Google users who probably are more interested in a later post on fixing a problem causing Ubuntu 8.04&#8242;s Amarok not to play any sound. After upgrading to Ubuntu Linux 8.04 LTS (Hardy Heron) I noticed that Amarok (Ubuntu package version 1.4.9.1-0ubuntu3), one of my preferred audio players/music libraries, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>EDIT: This post gets some traffic from Google users who probably are more interested in <a href="/notes/2008/05/16/amaroks-sound-output-broken-by-default-in-ubuntu-804/">a later post on fixing a problem causing Ubuntu 8.04&#8242;s Amarok not to play any sound</a>.</strong></p>
<p><a href="http://www.nybergh.net/stuff/linked/2008/05/amarok-1491-configure-window-lastfm-ubuntu-804-hardy-heron-screenshot.png"><img class="alignnone size-medium wp-image-84" title="Last.fm configuration window for Amarok 1.4.9.1 under Ubuntu 8.04 LTS (Hardy Heron) - Enter your username in ALL CAPS to solve the scrobbling problem" src="http://www.nybergh.net/stuff/linked/2008/05/amarok-1491-configure-window-lastfm-ubuntu-804-hardy-heron-screenshot-300x225.png" alt="Enter your username in ALL CAPS to solve the scrobbling problem" width="300" height="225" /></a></p>
<p>After upgrading to <a href="http://www.ubuntu.com" target="_blank">Ubuntu Linux</a> 8.04 LTS (Hardy Heron) I noticed that <a href="http://amarok.kde.org" target="_blank">Amarok</a> (Ubuntu <a href="http://packages.ubuntu.com/hardy/amarok">package</a> version 1.4.9.1-0ubuntu3), one of my preferred audio players/music libraries, didn&#8217;t properly submit tracks to <a href="http://www.last.fm" target="_blank">last.fm</a>. All settings were OK, and Amarok even announced that it submitted the tracks, but nothing appeared on <a href="http://www.last.fm/user/apecat">my profile</a>.</p>
<p>Google revealed that this problem can be solved by <a href="http://ubuntuforums.org/showthread.php?t=135744#post4881561" target="_blank">entering a last.fm user name in ALL CAPS</a> in Amarok&#8217;s settings window. The same solution can be applied to solve the same no-scrobbling problem as it may appear while using <a href="http://www.gnome.org/projects/rhythmbox/" target="_blank">Rhytmbox</a>, another free software audio player.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.nybergh.net">Thomas Nybergh</a></strong>. Unless something else is specified, the content of this post is licensed under the <a href="http://creativecommons.org/licenses/by-nc-sa/1.0/fi/deed.en">Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license</a>. Questions related to licensing can be sent to thomas [at] nybergh.net. Now, go eat some ice cream.<img src="http:///misc.nybergh.net/trk/white_pixel_nybergh.gif"><br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.nybergh.net/notes/2008/05/09/amarok-in-ubuntu-804-wont-scrobble/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GNOME lunacy: missing option for disabling cursor blinks in Ubuntu 8.04&#8242;s gnome-terminal</title>
		<link>http://www.nybergh.net/notes/2008/05/08/gnome-lunacy-missing-option-for-disabling-cursor-blinks-in-ubuntu-804s-gnome-terminal/</link>
		<comments>http://www.nybergh.net/notes/2008/05/08/gnome-lunacy-missing-option-for-disabling-cursor-blinks-in-ubuntu-804s-gnome-terminal/#comments</comments>
		<pubDate>Thu, 08 May 2008 15:38:51 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=82</guid>
		<description><![CDATA[The GNOME desktop environment project is plagued by a design philosophy that apparently aims to make user interfaces suitable for lobotomy victims at the cost of removing features and options from the GUI. This has been discussed endlessly elsewhere. Something probably related to this surfaced when I upgraded to Ubuntu Linux 8.04 LTS (Hardy Heron). [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://en.wikipedia.org/wiki/GNOME">GNOME desktop environment</a> project is plagued by a design philosophy that apparently aims to make user interfaces suitable for <a href="http://en.wikipedia.org/wiki/Lobotomy">lobotomy</a> victims at the cost of removing features and options from the GUI. This has been <a href="http://linux.slashdot.org/article.pl?sid=05/12/13/1340215">discussed endlessly elsewhere</a>.</p>
<p>Something probably related to this surfaced when I upgraded to <a href="http://www.ubuntu.com">Ubuntu Linux</a> 8.04 LTS (Hardy Heron). A program I use a lot, <a href="http://en.wikipedia.org/wiki/GNOME_Terminal">gnome-terminal</a>, no longer has its own setting for disabling cursor blinks under <code>Edit -&gt; Current Profile</code>. Users who want to get rid of this obnoxious response to &#8220;no keyboard input&#8221; now need to alter the system wide &#8220;<code>Cursor blinks in text fields</code>&#8221; option under the &#8220;<code>System -&gt; Preferences -&gt; Keyboard -&gt; General</code>&#8221; menu.</p>
<p>What if I only want to disable cursor blinks in gnome-terminal? In some situations in our world that forces black text on white backgrounds upon us, it&#8217;s hard to spot a static, one pixel wide cursor, but in a white or gray on black terminal with <a href="/notes/2008/03/17/consolas-vs-terminus-my-personal-monospaced-font-war/">a fixed width font</a> and a wide cursor, this problem doesn&#8217;t exist. By the way, why anyone would agree to use a terminal with black text on a white background is beyond me.</p>
<p>The crippled cursor problem isn&#8217;t limited to the gnome-terminal version 2.22.1 binary bundled with Ubuntu 8.04, it&#8217;s in the upstream version too. Luckily there&#8217;s <a href="http://www.chrishowie.com/2008/03/28/gnome-terminal-cursor/">at least one patch that removes this restriction</a>. I&#8217;m sure I won&#8217;t take the time to roll my own patched gnome-terminal, but it&#8217;s good to know that I&#8217;m not the only one who gets annoyed by shit like this.</p>
<p><strong>EDIT: </strong>I later realized that a <a href="http://www.jcornwall.me.uk/2008/04/hardy-heron-and-the-blinkin-terminal/">patched binary</a> has been made available by JLTC. </p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.nybergh.net">Thomas Nybergh</a></strong>. Unless something else is specified, the content of this post is licensed under the <a href="http://creativecommons.org/licenses/by-nc-sa/1.0/fi/deed.en">Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license</a>. Questions related to licensing can be sent to thomas [at] nybergh.net. Now, go eat some ice cream.<img src="http:///misc.nybergh.net/trk/white_pixel_nybergh.gif"><br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.nybergh.net/notes/2008/05/08/gnome-lunacy-missing-option-for-disabling-cursor-blinks-in-ubuntu-804s-gnome-terminal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable Nautilus pop-up on media insert in Ubuntu 8.04</title>
		<link>http://www.nybergh.net/notes/2008/05/08/disable-nautilus-pop-up-on-media-insert-in-ubuntu-804/</link>
		<comments>http://www.nybergh.net/notes/2008/05/08/disable-nautilus-pop-up-on-media-insert-in-ubuntu-804/#comments</comments>
		<pubDate>Thu, 08 May 2008 14:03:54 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[autorun]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Hardy Heron]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[wtf]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=77</guid>
		<description><![CDATA[Although the new Ubuntu Linux 8.04 LTS release is nice and polished, there are a few glitches in how the bundled GNOME environment allows the user to customize some behavior. Settings for how the desktop environment should handle removable media are important for me as I loathe the idea of having to deal with any [...]]]></description>
			<content:encoded><![CDATA[<p>Although the new <a href="http://www.ubuntu.com">Ubuntu Linux</a> 8.04 LTS release is nice and polished, there are a few glitches in how the bundled <a href="http://en.wikipedia.org/wiki/GNOME">GNOME</a> environment allows the user to customize some behavior. </p>
<p>Settings for how the desktop environment should handle removable media are important for me as I loathe the idea of having to deal with any autorun/auto play or popup nonsense every time i attach removable storage devices.<br />
Settings for this have been available under the <code>System -&gt; Preferences -&gt; Removable Drives and Media</code> menu item in earlier versions of Ubuntu/Gnome.</p>
<p><strong>Previously</strong>, said window looked approximately like <a href="http://www.nybergh.net/stuff/linked/2008/05/removable-drives-and-media-preferences-ubuntu-gnome-earlier-versions-screenshot.png">this:</p>
<p><img src="http://www.nybergh.net/stuff/linked/2008/05/removable-drives-and-media-preferences-ubuntu-gnome-earlier-versions-screenshot-300x230.png" alt="Removable drives and media preferences in earlier Ubuntu versions" title="Removable drives and media preferences in earlier Ubuntu versions" width="300" height="230" class="alignnone size-medium wp-image-79" /></a><br />
(image borrowed from <a href="http://vertito.blogspot.com/2007/08/removable-drives-devices-and-media.html">The Sysad Linux Blog</a>)</p>
<p>In Ubuntu 8.04/Hardy Heron&#8217;s Gnome 2.22.1, <a href='http://www.nybergh.net/stuff/linked/2008/05/removable-drives-and-media-preferences-ubuntu-804-hardy-heron-gnome-screenshot.png'>things look different:</p>
<p><img src="http://www.nybergh.net/stuff/linked/2008/05/removable-drives-and-media-preferences-ubuntu-804-hardy-heron-gnome-screenshot-300x227.png" alt="\&quot;Removable Drives and Media\&quot; preferences in Ubuntu 8.04" title="removable-drives-and-media-preferences-ubuntu-804-hardy-heron-gnome-screenshot" width="300" height="227" class="alignnone size-medium wp-image-78" /></a>.</p>
<p>Note the lack of reference to anything related to actual removable storage media (CD&#8217;s, DVD&#8217;s, Blu-ray, flash drives, USB hard drives&#8230;). Having settings only for scanners, cameras and such under a &#8220;removable media&#8221; window looks like a mistake in UI design to me&#8230; I haven&#8217;t checked if this is Ubuntu specific or something relevant to the vanilla Gnome release as well.</p>
<p>I found a way to <a href="http://ubuntuforums.org/showthread.php?t=758208#post4750015">stop the dreadful autorun/popup flood</a> posted by user <em>noynac</em> in the Ubuntu forums:  </p>
<blockquote><p>&#8220;Load Nautilus and enter <code>edit -&gt; preferences -&gt; media</code>&#8220;</p></blockquote>
<p><a href='http://www.nybergh.net/stuff/linked/2008/05/nautilus-file-management-preferences-removable-media-gnome-ubuntu-804-hardy-heron.png'><img src="http://www.nybergh.net/stuff/linked/2008/05/nautilus-file-management-preferences-removable-media-gnome-ubuntu-804-hardy-heron-300x225.png" alt="Nautilus file manager, settings for removable media, Ubuntu 8.04" title="nautilus-file-management-preferences-removable-media-gnome-ubuntu-804-hardy-heron" width="300" height="225" class="alignnone size-medium wp-image-81" /></a></p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.nybergh.net">Thomas Nybergh</a></strong>. Unless something else is specified, the content of this post is licensed under the <a href="http://creativecommons.org/licenses/by-nc-sa/1.0/fi/deed.en">Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license</a>. Questions related to licensing can be sent to thomas [at] nybergh.net. Now, go eat some ice cream.<img src="http:///misc.nybergh.net/trk/white_pixel_nybergh.gif"><br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.nybergh.net/notes/2008/05/08/disable-nautilus-pop-up-on-media-insert-in-ubuntu-804/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Consolas vs. Terminus &#8211; my personal monospaced font war</title>
		<link>http://www.nybergh.net/notes/2008/03/17/consolas-vs-terminus-my-personal-monospaced-font-war/</link>
		<comments>http://www.nybergh.net/notes/2008/03/17/consolas-vs-terminus-my-personal-monospaced-font-war/#comments</comments>
		<pubDate>Sun, 16 Mar 2008 23:49:25 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[in Swedish]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[Consolas]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Terminus]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/notes/2008/03/17/consolas-vs-terminus-my-personal-monospaced-font-war/</guid>
		<description><![CDATA[(I hate Courier New) For some time, I&#8217;ve used Dimitar Zhekov&#8217;s clean, fixed-width font Terminus for terminal-heavy situations in both GNU/Linux and Windows. I&#8217;m clueless in the area of typography, but Terminus looks oddly appealing when looking at e.g. code (which I don&#8217;t write myself), configuration and log files. I keep backup copies of a [...]]]></description>
			<content:encoded><![CDATA[<p><strong>(I hate <a href="http://en.wikipedia.org/wiki/Courier_(typeface)" target="_blank">Courier New</a>)</strong></p>
<p>For some time, I&#8217;ve used <a href="http://www.is-vn.bg/hamster/" target="_blank">Dimitar Zhekov&#8217;s clean, fixed-width font Terminus</a> for terminal-heavy situations in both GNU/Linux and Windows. I&#8217;m clueless in the area of typography, but Terminus looks oddly appealing when looking at e.g. code (which I don&#8217;t write myself), configuration and log files. <a href="http://misc.nybergh.net/pub/fonts/terminus/" target="_blank">I keep backup copies of a TTF version of Terminus in my public file archive</a>.</p>
<p>A few days ago, I discovered <a href="http://en.wikipedia.org/wiki/Consolas" target="_blank">Consolas</a>, a somewhat recent addition to Microsoft&#8217;s free TTF font collection (<a href="http://www.microsoft.com/downloads/details.aspx?familyid=22e69ae4-7e40-4807-8a86-b3d36fab68d3" target="_blank">available for download on microsoft.com</a>, no special MS software like Visual Studio is required), and I&#8217;m probably going to use it for some console based tasks, at least on Windows machines. Please note that Consolas is designed to be used with <a href="http://en.wikipedia.org/wiki/ClearType" target="_blank">ClearType</a>, a font anti-aliasing technology found in Windows XP and later. Without ClearType, Consolas <a href="http://www.codinghorror.com/blog/archives/000356.html" target="_blank">isn&#8217;t worth looking at</a>.</p>
<p>What I&#8217;ve found comparing the aforementioned fonts so far, is that while I like looking at Consolas in my <a href="http://irssi.org" target="_blank">IRC client</a>, I still prefer the more blockish Terminus for staring at and scanning through code and logs. Consolas makes text in human languages, including busy IRC debates, readable at smaller sizes, but is in my opinion suboptimal for navigating through and quickly locating parts of structured text blocks.</p>
<p><strong>EDIT: </strong>I&#8217;ve later found the following comparisons of fixed-width programming fonts: <a href="http://www.codeproject.com/KB/work/FontSurvey.aspx">CodeProject</a>, <a href="http://stackoverflow.com/questions/4689/recommended-fonts-for-programming">Stack Overflow</a>.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.nybergh.net">Thomas Nybergh</a></strong>. Unless something else is specified, the content of this post is licensed under the <a href="http://creativecommons.org/licenses/by-nc-sa/1.0/fi/deed.en">Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license</a>. Questions related to licensing can be sent to thomas [at] nybergh.net. Now, go eat some ice cream.<img src="http:///misc.nybergh.net/trk/white_pixel_nybergh.gif"><br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.nybergh.net/notes/2008/03/17/consolas-vs-terminus-my-personal-monospaced-font-war/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

