<?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>Shadows of epiphany</title>
	<atom:link href="http://blog.bodhizazen.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.bodhizazen.net</link>
	<description>A LAMP in the Samsara</description>
	<lastBuildDate>Sun, 28 Apr 2013 20:53:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Selinux and confined users</title>
		<link>http://blog.bodhizazen.net/linux/selinux-and-confined-users/</link>
		<comments>http://blog.bodhizazen.net/linux/selinux-and-confined-users/#comments</comments>
		<pubDate>Sun, 28 Apr 2013 20:53:53 +0000</pubDate>
		<dc:creator>bodhi.zazen</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.bodhizazen.net/?p=2620</guid>
		<description><![CDATA[I admit to a paranoid streak and have been confining my users with selinux. I confine almost all users as user_u /usr/sbin/semanage login -a -s user_u $user Users who need admin access I confine as staff_u /usr/sbin/semanage login -a -s &#8230; <a href="http://blog.bodhizazen.net/linux/selinux-and-confined-users/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I admit to a paranoid streak and have been confining my users with selinux.</p>
<p>I confine almost all users as user_u</p>
<p class="code">/usr/sbin/semanage login -a -s user_u $user</p>
<p>Users who need admin access I confine as staff_u</p>
<p class="code">/usr/sbin/semanage login -a -s staff_u $user</p>
<p>There are 2 minor annoyances with this method.</p>
<p>First I like regular users to be able to ping. This is enabled as a boolean.</p>
<p class="code">setsebool -P selinuxuser_ping on</p>
<p>And second, although staff_u can use sudo, they are still restricted by selinux. To allow unlimited access, add or edit /etc/sudoers.d/sudo to read</p>
<p class="code">%user ALL=(ALL) TYPE=unconfined_t ROLE=unconfined_r ALL</p>
<p>Change &#8220;%user&#8221; to the user name you wish to allow unconfined root access.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bodhizazen.net/linux/selinux-and-confined-users/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Sound on Intel 811b</title>
		<link>http://blog.bodhizazen.net/linux/sound-on-intel-811b/</link>
		<comments>http://blog.bodhizazen.net/linux/sound-on-intel-811b/#comments</comments>
		<pubDate>Sun, 28 Apr 2013 16:33:38 +0000</pubDate>
		<dc:creator>bodhi.zazen</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.bodhizazen.net/?p=2615</guid>
		<description><![CDATA[With recent kernels the sound on my netbook skips. Sound card: Intel Corporation System Controller Hub (SCH Poulsbo) HD Audio Controller [8086:811b] (rev 07) After many attempts and much google searching, the solution has been to edit /etc/pulse/default.pa and add &#8230; <a href="http://blog.bodhizazen.net/linux/sound-on-intel-811b/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>With recent kernels the sound on my netbook skips. </p>
<p>Sound card:</p>
<p class="code">Intel Corporation System Controller Hub (SCH Poulsbo) HD Audio Controller [8086:811b] (rev 07)</p>
<p>After many attempts and much google searching, the solution has been to edit /etc/pulse/default.pa and add tsched=0 to the line load-module module-udev-detect</p>
<p class="code">load-module module-udev-detect tsched=0<br />
load-module module-detect tsched=0 </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bodhizazen.net/linux/sound-on-intel-811b/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>command line spell checking</title>
		<link>http://blog.bodhizazen.net/linux/command-line-spell-checking/</link>
		<comments>http://blog.bodhizazen.net/linux/command-line-spell-checking/#comments</comments>
		<pubDate>Tue, 26 Jun 2012 18:41:14 +0000</pubDate>
		<dc:creator>bodhi.zazen</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.bodhizazen.net/?p=2557</guid>
		<description><![CDATA[I often edit files with command line tools such as vim and personally find spell checking invaluable. Two high yield tips I have found&#58; VIM spell checking vim has built-in spell checking functionality. I add this to &#126;&#47;.vimrc These options &#8230; <a href="http://blog.bodhizazen.net/linux/command-line-spell-checking/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I often edit files with command line tools such as vim and personally find spell checking invaluable.</p>
<p>Two high yield tips I have found&#58;</p>
<h2>VIM spell checking</h2>
<p>vim has built-in spell checking functionality. I add this to &#126;&#47;.vimrc</p>
<p>These options are a little more than just spell checking mind you&#58;</p>
<p class="code">&#34; Show line numbers<br />
set number<br />
<br/>&#34; Prevent vim from emulating vi<br />
set nocompatible<br />
<br/>&#34; Syntax highlighting<br />
syntax on<br />
<br/>&#34; Set automatic indentation<br />
set autoindent<br />
set smartindent<br />
<br/>&#34; Set tabs at 4 spaces<br />
set tabstop&#61;4<br />
set shiftwidth&#61;4<br />
<br/>&#34; Show matching &#91;&#93; and &#123;&#125;<br />
set showmatch<br />
<br/>&#34; Spell check on<br />
set spell spelllang&#61;en&#95;us<br />
setlocal spell spelllang&#61;en&#95;us<br />
<br/>&#34; Toggle spelling with the F7 key<br />
nn &#60;F7&#62; &#58;setlocal spell&#33; spelllang&#61;en&#95;us&#60;CR&#62;<br />
imap &#60;F7&#62; &#60;C-o&#62;&#58;setlocal spell&#33; spelllang&#61;en&#95;us&#60;CR&#62;<br />
<br/>&#34; Spelling<br />
highlight clear SpellBad<br />
highlight SpellBad term&#61;standout ctermfg&#61;1 term&#61;underline cterm&#61;underline<br />
highlight clear SpellCap<br />
highlight SpellCap term&#61;underline cterm&#61;underline<br />
highlight clear SpellRare<br />
highlight SpellRare term&#61;underline cterm&#61;underline<br />
highlight clear SpellLocal<br />
highlight SpellLocal term&#61;underline cterm&#61;underline<br />
<br/>&#34; where it should get the dictionary files<br />
let g&#58;spellfile&#95;URL &#61; &#39;http&#58;&#47;&#47;ftp.vim.org&#47;vim&#47;runtime&#47;spell&#39;</p>
<p>Those options highlight and underline misspelled or unrecognized words.<br />
Some keyboard shortcuts to navigate and correct words</p>
<p>]s &#8211; move to next misppelled word<br />
[s - move to previous misspelled word<br />
z= - show list of correction options</p>
<p>4]s skip to 4th mispelled word, etc.</p>
<p><img src="http://bodhizazen.net/img/spell/vim1.png" alt="vim1" /><br />
<img src="http://bodhizazen.net/img/spell/vim2.png" alt="vim2" /></p>
<p>See <a href="http://vimdoc.sourceforge.net/htmldoc/spell.html" title="vim spelling documentation">vim spelling documentation</a> for details.</p>
<h2>Aspell</h2>
<p>Aspell provides very similar functionality if you wish to spell check a document.</p>
<p class="code">aspell check README</p>
<p>You then navigate with the keyboard</p>
<p>i &#8211; ignore<br />
a &#8211; add to (user) dictionary<br />
[0-9] &#8211; replace options<br />
r- replace x1<br />
R &#8211; replace all</p>
<p>In the event you need to revert changes, aspell saves a copy of the original document with a ~ at the end, in this example, README~</p>
<p><img src="http://bodhizazen.net/img/spell/aspell.png" alt="aspell" /></p>
<h2>LanguageTool</h2>
<p>Update: At the advice of dominiko (see comments) I took <a href="http://www.vim.org/scripts/script.php?script_id=3223" title="VIM Language tool">LanguageTool</a> for a test drive. LanguageTool does both spelling (with either hunspell or the built in vim spell checker) and grammar checking. I had to use the <a href="http://www.languagetool.org/download/snapshots/" title="LT snapshot">snapshot</a> of language tool.</p>
<p>This vim plugin works with java-1.7.0-openjdk and will integrate with libreoffice.</p>
<p>I found LanguageTool to be a very nice addition and would advise taking it for a test drive.</p>
<p><img src="http://bodhizazen.net/img/spell/LanguageTool.png" alt="LanguageTool" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bodhizazen.net/linux/command-line-spell-checking/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Fun with KDE</title>
		<link>http://blog.bodhizazen.net/linux/fun-with-kde/</link>
		<comments>http://blog.bodhizazen.net/linux/fun-with-kde/#comments</comments>
		<pubDate>Thu, 14 Jun 2012 06:15:03 +0000</pubDate>
		<dc:creator>bodhi.zazen</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.bodhizazen.net/?p=2550</guid>
		<description><![CDATA[Children are so much fun. With the release of Ubuntu 12.04 and Fedora we took a look at Desktop Environments. This time KDE won out hands down, although XFCE was a close second After they spent most of the weekend &#8230; <a href="http://blog.bodhizazen.net/linux/fun-with-kde/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Children are so much fun. With the release of Ubuntu 12.04 and Fedora we took a look at Desktop Environments. This time KDE won out hands down, although XFCE was a close second</p>
<p>After they spent most of the weekend playing with the desktop effects you just have to laugh.</p>
<p><img src="http://bodhizazen.net/img/Linux/Naomi.desktop.png" alt="KDE desktop" /></p>
<p>I counted 12 bouncing balls, 6 sets of xeyes, &#8220;life&#8221;, a doodle, and there is even a note to anyone snooping in on the desktop.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bodhizazen.net/linux/fun-with-kde/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Kwrite spell check</title>
		<link>http://blog.bodhizazen.net/linux/kwrite-spell-check/</link>
		<comments>http://blog.bodhizazen.net/linux/kwrite-spell-check/#comments</comments>
		<pubDate>Tue, 12 Jun 2012 07:58:49 +0000</pubDate>
		<dc:creator>bodhi.zazen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[kde]]></category>

		<guid isPermaLink="false">http://blog.bodhizazen.net/?p=2545</guid>
		<description><![CDATA[As of Fedora 17 I am using KDE and so am somewhat new to some of the default applications. The default text editor seems to be kwrite and although there is an option for spell checking , there was no &#8230; <a href="http://blog.bodhizazen.net/linux/kwrite-spell-check/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>As of Fedora 17 I am using KDE and so am somewhat new to some of the default applications. The default text editor seems to be kwrite and although there is an option for spell checking , there was no dictionary enabled by default.</p>
<p>I was able to enable spell checking by installing enchant-aspell =)</p>
<p class="code">yum install enchant-aspell</p>
<p>Worked for kate as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bodhizazen.net/linux/kwrite-spell-check/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to install ddate</title>
		<link>http://blog.bodhizazen.net/linux/how-to-install-ddate/</link>
		<comments>http://blog.bodhizazen.net/linux/how-to-install-ddate/#comments</comments>
		<pubDate>Sun, 10 Jun 2012 05:23:39 +0000</pubDate>
		<dc:creator>bodhi.zazen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Discordian]]></category>

		<guid isPermaLink="false">http://blog.bodhizazen.net/?p=2532</guid>
		<description><![CDATA[ddate is a &#8216;fun&#8217; program to display the date in Discordian calendar. ddate prints the date in Discordian date format. Example: Today is Setting Orange, the 14th day of Confusion in the YOLD 3178 Unfortunately, ddate was disabled / removed &#8230; <a href="http://blog.bodhizazen.net/linux/how-to-install-ddate/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>ddate is a &#8216;fun&#8217; program to display the date in <a href="http://www.subgenius.com/" title="Discordian">Discordian</a> calendar.</p>
<blockquote><p>ddate prints the date in Discordian date format. </p></blockquote>
<p>Example:</p>
<pre>Today is Setting Orange, the 14th day of Confusion in the YOLD 3178</pre>
<p>Unfortunately, ddate was disabled / removed from util&#45;linux.</p>
<p><a href="https://bugs.archlinux.org/task/25826" title="Arch">Discussion on Arch Linux</a><br />
<a href="http://osdir.com/ml/fedora-devel-list/2011-08/msg01691.html" title="Fedora">Fedora mailing list</a></p>
<p>If you would like to use ddate, it is rather trivial to compile.</p>
<p>Download the latest <a href="http://www.kernel.org/pub/linux/utils/util-linux/" title="util&#45;linux">util&#45;linux</a> (2.21.2 at the time of this post)</p>
<p>Extract the archive:</p>
<p class="code">tar xzvf util&#45;linux&#45;2.21.2.tar.gz</p>
<p>If needed, install gcc and ncurses headers (ncurses&#45;devel on Fedora or libncurses5&#45;dev on Ubuntu)</p>
<p><P class="code">&#35;Fedora<br />
sudo yum install gcc ncurses&#45;devel<br />
<br/>&#35;Ubuntu<br />
sudo apt&#45;get install gcc libncurses5&#45;dev</p>
<p>Update: I also had to install the pam headers</p>
<p class="code">sudo yum install pam-devel</p>
<p>Compile and install ddate</p>
<p class="code">cd util&#45;linux-2.21.2<br />
./configure &#45;&#45;prefix=/usr &#45;&#45;enable&#45;ddate<br />
cd misc&#45;utils<br />
make ddate<br />
sudo cp ddate /usr/local/bin</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bodhizazen.net/linux/how-to-install-ddate/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Proxmox using iptables in openvz guests</title>
		<link>http://blog.bodhizazen.net/linux/proxmox-using-iptables-in-openvz-guests/</link>
		<comments>http://blog.bodhizazen.net/linux/proxmox-using-iptables-in-openvz-guests/#comments</comments>
		<pubDate>Wed, 06 Jun 2012 19:42:34 +0000</pubDate>
		<dc:creator>bodhi.zazen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://blog.bodhizazen.net/?p=2526</guid>
		<description><![CDATA[I recently upgraded Proxmox and noticed iptables was not working in the guests. Turns out a small edit is required to /etc/vz/vz.conf (we need to add some more modules to be used in the openvz guests). Using any editor, open &#8230; <a href="http://blog.bodhizazen.net/linux/proxmox-using-iptables-in-openvz-guests/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I recently upgraded Proxmox and noticed iptables was not working in the guests.</p>
<p>Turns out a small edit is required to  /etc/vz/vz.conf (we need to add some more modules to be used in the openvz guests).</p>
<p>Using any editor, open  /etc/vz/vz.conf and change and find the &#8220;IPTABLES=&#8221; line</p>
<p>Change:</p>
<p class=code>IPTABLES=&#34;ipt&#95;REJECT ipt&#95;tos ipt&#95;limit ipt&#95;multiport iptable&#95;filter iptable&#95;mangle ipt&#95;TCPMSS ipt&#95;tcpmss ipt&#95;ttl ipt&#95;length&#34;</p>
<p>To:</p>
<p class="code">IPTABLES=&#34;ipt&#95;REJECT ipt&#95;tos ipt&#95;TOS ipt&#95;LOG ip&#95;conntrack ipt&#95;limit ipt&#95;multiport iptable&#95;filter iptable&#95;mangle ipt&#95;TCPMSS ipt&#95;tcpmss ipt&#95;ttl ipt&#95;length ipt&#95;state iptable&#95;nat ip&#95;nat&#95;ftp&#34;</p>
<p>Then reboot (you can probably just re-start your guests).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bodhizazen.net/linux/proxmox-using-iptables-in-openvz-guests/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Fedora 17 GMA500 (Poulsbo)</title>
		<link>http://blog.bodhizazen.net/linux/fedora-17-gma500-poulsbo/</link>
		<comments>http://blog.bodhizazen.net/linux/fedora-17-gma500-poulsbo/#comments</comments>
		<pubDate>Tue, 05 Jun 2012 04:28:03 +0000</pubDate>
		<dc:creator>bodhi.zazen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[gma500]]></category>

		<guid isPermaLink="false">http://blog.bodhizazen.net/?p=2509</guid>
		<description><![CDATA[Good news for those of us with the GMA500 (Poulsbo) graphics card ! Fedora 17 ships with the 3.3.4 kernel and my GMA500 works out of the box without the need for any customizations to the boot options. Simply put &#8230; <a href="http://blog.bodhizazen.net/linux/fedora-17-gma500-poulsbo/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Good news for those of us with the GMA500 (Poulsbo) graphics card !</p>
<p>Fedora 17 ships with the 3.3.4 kernel and my GMA500 works out of the box without the need for any customizations to the boot options. Simply put the .iso onto a flash drive and boot.</p>
<p>Again, the gma500_gfx offers 2d graphics (no 3d). So while gnome-shell is working with llvmpipe, but there is a noticeable performance hit.</p>
<p><a href="http://bodhizazen.net/img/Linux/fedora.png" alt="fedora gnome"><img src="http://bodhizazen.net/img/Linux/fedora.png" width="240" height="150"></a></p>
<p>While it is novel to see gnome-shell running on the GMA500, I suggest the kde spin (if you want eye candy) or the xfce or lxde spin.</p>
<p><a href="http://bodhizazen.net/img/Linux/fedora-17_kde.png" alt="fedora gnome"><img src="http://bodhizazen.net/img/Linux/fedora-17_kde.png" width="240" height="150"></a></p>
<p>The gma500 should work, with 2d graphics, using the 3.3.4 or higher kernel, on any Linux distribution.</p>
<p>You may need to add (kernel) boot options for suspend or brightness keys. These features are often BIOS dependent.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bodhizazen.net/linux/fedora-17-gma500-poulsbo/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Desktop Environments RAM use</title>
		<link>http://blog.bodhizazen.net/linux/desktop-environments-ram-use/</link>
		<comments>http://blog.bodhizazen.net/linux/desktop-environments-ram-use/#comments</comments>
		<pubDate>Fri, 01 Jun 2012 12:08:05 +0000</pubDate>
		<dc:creator>bodhi.zazen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Desktop Environments]]></category>

		<guid isPermaLink="false">http://blog.bodhizazen.net/?p=2480</guid>
		<description><![CDATA[As a result of a recent discussion on IRC, I decided to take a number of DE (Desktop Environments) for a test drive and see how much ram they used. Test machine &#8211; Netbook with 2 Gb RAM Method &#8211; &#8230; <a href="http://blog.bodhizazen.net/linux/desktop-environments-ram-use/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>As a result of a recent discussion on IRC, I decided to take a number of DE (<a href="http://xwinman.org/intro.php">Desktop Environments</a>) for a test drive and see how much ram they used.</p>
<p>Test machine &#8211; Netbook with 2 Gb RAM</p>
<p>Method &#8211; This is a very casual test (sorry no &#8220;benchmarks&#8221;), I merely booted the appropriate Live CD, opened a terminal, and reviewed the RAM use. YMMV.</p>
<p>These results are simply using the default configuration as provided by the developers of the various distros and I made no attempt to tweak or adjust the RAM use.</p>
<p>Please keep in mind, RAM use is a crude measure of &#8220;performance&#8221;. The &#8220;responsiveness&#8221; of your window manager is dependent on a number of variables including graphics cards, desktop effects, and even sometimes a misconfigured or misbehaving wireless card. For example, on my netbook gnome-shell is using llvmpipe. llvmpipe comes with a noticeable performance hit on my netbook so while the ram use is similar to Unity, Unity gives much better performance.</p>
<p>Distros: I used the latest distros, even if they are in Alpha/Beta, so as to get the best possible video performance on my netbook (gma500_gfx).</p>
<p>I chose a range of distros to make the comparisons a little more interesting. I find XFCE uses about the same amount of RAM on Xubuntu as it does on Fedora (XFCE spin). They are at least in the same ballpark. Notice how Lubuntu (openbox + LXDE) and Crunchbang (also openbox) are &#8220;close enough&#8221;, at least for my purpose, at 165 vs 112 mb RAM.</p>
<p>Bodhi Linux 2.0 (beta)<br />
Crunchbang 11 (Waldorf)<br />
Fedora 17 (Beefy Miracle)<br />
Linux Mint 13 (Maya)<br />
Ubuntu 12.10 (Quantal Quetzal) (Alpha)</p>
<p>Results:</p>
<p><a href="http://cdimage.ubuntu.com/daily-live/current/" title="quantal">Ubuntu 12.10 (Quantal Quetzal)</a></p>
<ul>
<li>Unity &#8211; 335 mb</li>
<li>Lubuntu &#8211; 165 mb</li>
<li>Kubuntu &#8211; 261 mb</li>
<li>Xubuntu &#8211; 230 mb</li>
</ul>
<p><a href="http://spins.fedoraproject.org/" title="fedora spins">Fedora 17 (Beefy Miracle)</a></p>
<ul>
<li>Gnome-shell &#8211; 335 mb</li>
<li>lxde &#8211; 151 mb</li>
<li>kde &#8211; 277 mb</li>
<li>xfce &#8211; 179 mb</li>
</ul>
<p><a href="http://www.linuxmint.com/about.php">Linux Mint 13 (Maya)</a></p>
<ul>
<li><a href="http://mate-desktop.org/about/" title="MATE">MATE</a> &#8211; 311 mb</li>
<li><a href="http://cinnamon.linuxmint.com/" title="cinnamon">Cinnamon</a> &#8211; 196 mb</li>
</ul>
<p><a href="http://www.bodhilinux.com/about.php" title="bodhi">Bodhi Linux 2.0 (Beta)</a></p>
<ul>
<li><strong>Enlightenment &#8211; 116 mb</strong></li>
</ul>
<p><a href="http://crunchbanglinux.org/" title="crunchbang">Crunchbang 11 (Waldorf)</a></p>
<ul>
<li>Openbox &#8211; 112 mb</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.bodhizazen.net/linux/desktop-environments-ram-use/feed/</wfw:commentRss>
		<slash:comments>39</slash:comments>
		</item>
		<item>
		<title>Linux-libre</title>
		<link>http://blog.bodhizazen.net/linux/linux-libre/</link>
		<comments>http://blog.bodhizazen.net/linux/linux-libre/#comments</comments>
		<pubDate>Sat, 05 May 2012 06:33:04 +0000</pubDate>
		<dc:creator>bodhi.zazen</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[libre]]></category>

		<guid isPermaLink="false">http://blog.bodhizazen.net/?p=2440</guid>
		<description><![CDATA[Confessions of a &#8220;practical&#8221; FSF fanboi Without getting into all the politics, we all use GNU/Linux and many of us appreciate the four freedoms advocated by the Free Software Foundation. The freedom to run the program, for any purpose (freedom &#8230; <a href="http://blog.bodhizazen.net/linux/linux-libre/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><img src="http://trisquel.info/logos/libre.png" alt="Linux-libre" /></p>
<h2>Confessions of a &#8220;practical&#8221; FSF fanboi</h2>
<p>Without getting into <a href="http://en.wikipedia.org/wiki/GNU/Linux_naming_controversy" title="Linux_naming_controversy" target="_blank">all the politics</a>, we all use <a href="http://www.gnu.org/gnu/linux-and-gnu.html" title="GNU/Linux" target="_blank">GNU/Linux</a> and many of us appreciate the <a href="http://www.gnu.org/philosophy/free-sw.html" title="4 freedoms" target="_blank">four freedoms</a> advocated by the <a href="http://www.fsf.org/" title="FSF Home Page" target="_blank">Free Software Foundation</a>.</p>
<blockquote>
<ul>
<li>The freedom to run the program, for any purpose (freedom 0).</li>
<li>The freedom to study how the program works, and change it so it does your computing as you wish (freedom 1). Access to the source code is a precondition for this.</li>
<li>The freedom to redistribute copies so you can help your neighbor (freedom 2).</li>
<li>The freedom to distribute copies of your modified versions to others (freedom 3). By doing this you can give the community a chance to help from your changes. Access to the source code is a precondition for this.</li>
</blockquote>
<h2>Linux-libre</h2>
<p><img src="http://trisquel.info/files/trisquel-logo-compact.png" alt="Trisquel logo" /> <img src="http://bodhizazen.net/img/parabola.png" alt="Parabola linux" /></p>
<p>I came across the <a href="http://www.fsfla.org/svnwiki/selibre/linux-libre/" title="linux-libre">GNU/Linux-libre</a> almost by accident and have enjoyed taking <a href="http://trisquel.info/" title="Trisquel">Trisquel</a> and <a href="https://parabolagnulinux.org/" title="parabola">Parabola gnulinux</a> for a test drive. I found both communities friendly and helpful.</p>
<p>Trisquel 5.5 is based on Ubuntu 11.10 and has a visually pleasing gnome-shell</p>
<p><img src="http://trisquel.info/files/screenshots/Classic%20desktop%20experience.jpeg" alt="gnome-shell" /></p>
<p>KDE is also available.</p>
<p><a href="http://bodhizazen.net/img/Trisquel/trisquel.png" title="Trisquel screenshot"><img src="http://bodhizazen.net/img/Trisquel/trisquel_thumb.png" alt="Trisquel thumb" /></a></p>
<p>Parabola gnu/linux is based on Arch and is thus a rolling release. The installer is a bit dated and hopefully they will release an updated CD in the near future.</p>
<p>I made a pair if user bars, feel free to use them if you wish</p>
<p><img src="http://bodhizazen.net/img/trisquel-linux-libre.png" alt="Trisquel user bar" /></p>
<p><img src="http://bodhizazen.net/img/parabola-GNU-linux-libre.jpg" alt="Parabola user bar" /></p>
<h2>Rubber meet pavement</h2>
<p>Booting Trisquel, Parabola, or a gnu/linux-libre kernel is where the rubber hits the pavement and many people will find it frustrating if, as with any operating system, they do not have compatible hardware. The two most common problems are incompatibility with graphics cards and wireless, although you could also have problems with BIOS.</p>
<p>You basically have to buy hardware that is compatible with the FSF GNU/Linux-libre definition of open source drivers.</p>
<p>While this may sound harsh, it is true of any OS, and while I do not expect everyone to run out and purchase new hardware, understanding hardware compatibility is crucial to successful future purchases.</p>
<h3>GNU/Linux pre-installed</h3>
<p>Many people buy hardware with Windows or OSX pre-installed and then have a bad experience when they try to install &#8220;Linux&#8221;.</p>
<p>The simplest solution is to encourage &#8220;Linux users&#8221; (yes you) to make their next hardware purchase with Linux pre-installed. We should support OEM that support Linux.</p>
<h3>Home work</h3>
<p>It is due diligence to research your hardware before you buy. There are several online resources available, <a href="http://www.h-node.org/" title="H-node">h-node</a> maintains a hardware listing of -libre compatible equipment.</p>
<p>Using that guide, I was able to find graphics cards, manufactured in 2010, ranging from as little as $10 (single head) up to $50 (dual head) in less then 10 minutes.</p>
<p>Wireless cards are a little more difficult as you need to identify the wireless chip, which is not always easy. I found USB wireless cards ranging from $10 to $20.</p>
<p>So for a little as $20 I could find both a graphics card and wireless card that offer decent performance ( video single head 1600&#215;1200 ).</p>
<p>Again, next time you purchase hardware, I strongly advise -libre compatible hardware. Compatible hardware is not more expensive, will work with any distro, and performance will be better than a more expensive, incompatible, unsupported piece of hardware.</p>
<h2>Recent experiences</h2>
<p>Politics aside, hardly a day goes by when I do not see someone on IRC converting from closed source hardware drivers to open source. The costs are minimal and it is simply less hassle to use compatible hardware. For example, if you have a Nvidia card, and you have not taken the open source nouveau driver for a test spin, I highly encourage you to do so. It is not uncommon for people to find adequate or sometimes better performance with the nouveau driver then the Nvidia driver.</p>
<p>Again, if you use Linux, consider supporting the OEM who support open source. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bodhizazen.net/linux/linux-libre/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

 Served from: blog.bodhizazen.net @ 2013-05-21 02:33:34 by W3 Total Cache -->