<?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>killerturtle&#039;s Arch Linux  Blog</title>
	<atom:link href="http://archlinux.me/killerturtle/feed/" rel="self" type="application/rss+xml" />
	<link>http://archlinux.me/killerturtle</link>
	<description>Just another Arch Linux Blog site</description>
	<lastBuildDate>Fri, 22 Apr 2011 19:05:18 +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>Not authorized error when mounting usb device</title>
		<link>http://archlinux.me/killerturtle/2011/04/22/not-authorized-error-when-mounting-usb-device/</link>
		<comments>http://archlinux.me/killerturtle/2011/04/22/not-authorized-error-when-mounting-usb-device/#comments</comments>
		<pubDate>Fri, 22 Apr 2011 19:05:18 +0000</pubDate>
		<dc:creator>killerturtle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://archlinux.me/killerturtle/?p=35</guid>
		<description><![CDATA[Here&#8217;s what I did to fix auto-mounting, trash and authorization problems: Install gvfs-afc (which added: gvfs, libsoup-gnome, libsoup, libproxy, gconf, orbit2, libcdio, libcddb, gnome-disk-utility, libunique, libgnome-keyring). /etc/rc.conf: DAEMONS=(... dbus ...) .xinitrc: exec ck-launch-session dbus-launch openbox-session dbus needs to be after consolekit to fix the authorization problems. source: https://bbs.archlinux.org/viewtopic.php?id=111867&#38;p=5]]></description>
				<content:encoded><![CDATA[<p>Here&#8217;s what I did to fix auto-mounting, trash and authorization problems:</p>
<p>Install gvfs-afc (which added: gvfs, libsoup-gnome, libsoup, libproxy, gconf, orbit2, libcdio, libcddb, gnome-disk-utility, libunique, libgnome-keyring).</p>
<p>/etc/rc.conf:</p>
<div>
<pre><code>DAEMONS=(... dbus ...)</code></pre>
</div>
<p>.xinitrc:</p>
<div>
<pre><code>exec ck-launch-session dbus-launch openbox-session</code></pre>
</div>
<p>dbus needs to be after consolekit to fix the authorization problems.</p>
<p>source: https://bbs.archlinux.org/viewtopic.php?id=111867&amp;p=5</p>
]]></content:encoded>
			<wfw:commentRss>http://archlinux.me/killerturtle/2011/04/22/not-authorized-error-when-mounting-usb-device/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Set the text color in Gnome-globalmenu</title>
		<link>http://archlinux.me/killerturtle/2011/04/17/set-the-text-color-in-gnome-globalmenu/</link>
		<comments>http://archlinux.me/killerturtle/2011/04/17/set-the-text-color-in-gnome-globalmenu/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 19:01:05 +0000</pubDate>
		<dc:creator>killerturtle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://archlinux.me/killerturtle/?p=32</guid>
		<description><![CDATA[I installed Gnome-globalmenu. This litte gem acts like the top panel in OS X. So the menubar of the window that is active is showed in the top panel. But when you have a light colored panel, the white tekst is difficult to read. The solution: &#160; Change the text color in Gnome-globalmenu: GlobalMenu&#8217;s text [...]]]></description>
				<content:encoded><![CDATA[<p>I installed Gnome-globalmenu. This litte gem acts like the top panel in OS X. So the menubar of the window that is active is showed in the top panel. But when you have a light colored panel, the white tekst is difficult to read.</p>
<p>The solution:</p>
<p>&nbsp;</p>
<p><strong><span style="text-decoration: underline">Change the text color in Gnome-globalmenu:</span></strong><br />
GlobalMenu&#8217;s text is determined by your desktop theme. If you want to change it do the following:<br />
- add this code to ~/.gtk-2.0<br />
(note: &#8221;~&#8221; is your home directory, and to be able to see .gtk-2.0 there you&#8217;ll need to press ctrl-h or select View -&gt; Show Hidden Files)</p>
<div>
<div>Code:</div>
<pre>  style "menu_item"
 {
   fg[NORMAL] = "#000000"
 }
widget_class "**"				style "menu_item"
  style "menubar"
 {
   fg[NORMAL] = "#FFFFFF"
 }
widget_class "**" 				style "menubar"</pre>
</div>
<p>#FFFFFF is white, and is the colour that will be used for &#8221;File Edit View&#8230;&#8221;<br />
#000000 is black, and is what will be used in the drop down menus, eg. &#8221;New Open Close Save&#8230;&#8221;</p>
<p>Change the colours to whatever you want. Just use 6 characters, where each character is one of &#8221;0123456789ABCDEF&#8221;<br />
The first pair of characters is for red, the second for green, and the third for blue.</p>
<p>Note: this will also change the menu clour in Firefox (which is not compatible with GlobalMenu) so you may want to change your firefox theme to suit (Tools -&gt; Addons -&gt; Themes in Firefox)</p>
<p>Thanks to Ayoli <a href="http://ubuntuforums.org/member.php?u=122327" target="_blank">http://ubuntuforums.org/member.php?u=122327</a><br />
for showing me how to do this <img src="http://ubuntuforums.org/images/smilies/icon_biggrin.gif" border="0" alt="" /><br />
If anyone finds this helpful please thank him, not me.</p>
]]></content:encoded>
			<wfw:commentRss>http://archlinux.me/killerturtle/2011/04/17/set-the-text-color-in-gnome-globalmenu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problems mounting storage devices: Not authorized</title>
		<link>http://archlinux.me/killerturtle/2011/04/13/problems-mounting-storage-devices-not-authorized/</link>
		<comments>http://archlinux.me/killerturtle/2011/04/13/problems-mounting-storage-devices-not-authorized/#comments</comments>
		<pubDate>Wed, 13 Apr 2011 13:37:48 +0000</pubDate>
		<dc:creator>killerturtle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[authorized]]></category>
		<category><![CDATA[ConsoleKit]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[mounting]]></category>
		<category><![CDATA[not]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[USB]]></category>

		<guid isPermaLink="false">http://archlinux.me/killerturtle/?p=29</guid>
		<description><![CDATA[The problem: I did a fresh install of Arch. Then installed several windowmanagers / DE&#8217;s. But it didnt&#8217; matter which I choose, everytime I tried to mount a external storage device i.e. USB drive, hardrive, MMC card that horrible error popped up: Error mounting the device: Not authorized&#8230;. After hours digging in the forums I [...]]]></description>
				<content:encoded><![CDATA[<p>The problem:</p>
<p>I did a fresh install of Arch. Then installed several windowmanagers / DE&#8217;s. But it didnt&#8217; matter which I choose, everytime I tried to mount a external storage device i.e. USB drive, hardrive, MMC card that horrible error popped up: Error mounting the device: Not authorized&#8230;.</p>
<p>After hours digging in the forums I found the solution:</p>
<p>First, remove your &#8220;dbus-launch&#8221; and  &#8220;ck-launch-session&#8221; calls in your .xinitrc. Then, in /etc/slim.conf,  change &#8220;login_cmd&#8221; to this:<br />
&#8220;login_cmd           exec ck-launch-session /bin/bash -login ~/.xinitrc %session&#8221;</p>
<p>This  circumvents the need for dbus-launch, and also makes sure that  everything in .xinitrc is automatically in a ConsoleKit session. This is  documented here. (<a href="https://wiki.archlinux.org/index.php/Slim#PolicyKit">https://wiki.archlinux.org/index.php/Slim#PolicyKit</a>)</p>
<p>Install udisk and udiskie:</p>
<p>#yaourt -S udisk</p>
<p>#yaourt -S udiskie</p>
<p>Greetz Sven</p>
]]></content:encoded>
			<wfw:commentRss>http://archlinux.me/killerturtle/2011/04/13/problems-mounting-storage-devices-not-authorized/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daemons and other spooky stuff</title>
		<link>http://archlinux.me/killerturtle/2011/03/09/daemons-and-other-spooky-stuff/</link>
		<comments>http://archlinux.me/killerturtle/2011/03/09/daemons-and-other-spooky-stuff/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 14:37:02 +0000</pubDate>
		<dc:creator>killerturtle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://archlinux.me/killerturtle/?p=26</guid>
		<description><![CDATA[A lot off times reading the forums, it get&#8217;s mentioned&#8230;. add [xxxx] to your daemons. Huh&#8230; daemons, what&#8217;s that? Daemons are programs that are started and run in the background after you (re)boot your machine. Where do i find daemons? Edit the file &#8220;rc.conf&#8221; located in /etc : # sudo nano /etc/rc.conf Good luck!]]></description>
				<content:encoded><![CDATA[<p>A lot off times reading the forums, it get&#8217;s mentioned&#8230;. add [xxxx] to your daemons. Huh&#8230; daemons, what&#8217;s that?</p>
<p>Daemons are programs that are started and run in the background after you (re)boot your machine.</p>
<p>Where do i find daemons?</p>
<p>Edit the file &#8220;rc.conf&#8221; located in /etc :</p>
<p><span style="color: #3366ff"># sudo nano /etc/rc.conf</span></p>
<p><span style="color: #000000">Good luck!</span></p>
]]></content:encoded>
			<wfw:commentRss>http://archlinux.me/killerturtle/2011/03/09/daemons-and-other-spooky-stuff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sharing files in your home network with Samba</title>
		<link>http://archlinux.me/killerturtle/2011/02/25/sharing-files-in-your-home-network-with-samba/</link>
		<comments>http://archlinux.me/killerturtle/2011/02/25/sharing-files-in-your-home-network-with-samba/#comments</comments>
		<pubDate>Fri, 25 Feb 2011 14:35:07 +0000</pubDate>
		<dc:creator>killerturtle</dc:creator>
				<category><![CDATA[Samba]]></category>
		<category><![CDATA[filesharing]]></category>

		<guid isPermaLink="false">http://archlinux.me/killerturtle/?p=18</guid>
		<description><![CDATA[I&#8217;ve got an old Dell laptop, which runs Arch, an Imac 20 inch and a LG DP1W mediaplayer and streamer. Now would it not be great if I could share file across all three machines? I&#8217;m gonna start with SAMBA and see how well this works. NFS will come later&#8230; Ok, here we go. Step [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve got an old Dell laptop, which runs Arch, an Imac 20 inch and a LG DP1W mediaplayer and streamer. Now would it not be great if I could share file across all three machines? I&#8217;m gonna start with SAMBA and see how well this works. NFS will come later&#8230;</p>
<p>Ok, here we go.</p>
<p>Step 1. First thing to do is install the Samba client and server software on Arch.</p>
<p><span style="color: #3366ff"># sudo pacman -S smbclient samba gamin</span></p>
<p><a title="wikipedia:Gamin" href="http://en.wikipedia.org/wiki/Gamin">Gamin</a> is a file and directory monitoring system defined to be a subset of the FAM (File Alteration Monitor) system. It is a service provided by a library which allows for the detection of modification to a file or directory. Gamin re-implements the <a title="FAM" href="https://wiki.archlinux.org/index.php/FAM">FAM</a> specification with <a title="Inotify (page does not exist)" href="https://wiki.archlinux.org/index.php?title=Inotify&amp;action=edit&amp;redlink=1">inotify</a>. It is newer and more actively maintained than FAM, maintains compatibility with FAM and can replace it in almost every case. It is a <a title="GNOME" href="https://wiki.archlinux.org/index.php/GNOME">GNOME</a> project, but does not have GNOME dependencies.</p>
<p>Step 2. Configure samba. As root, copy the default Samba configuration file to /etc/samba/smb.conf:</p>
<p><span style="color: #3366ff"># cp /etc/samba/smb.conf.default /etc/samba/smb.conf</span></p>
<p><span style="color: #000000">Then configure this file to your needs. By default the HOME user directories are shared.</span></p>
<p>Step 3. Add a user. To log into a Samba share you&#8217;ll need to add a user:</p>
<p><span style="color: #3366ff"># smbpasswd -a &lt;user&gt;</span></p>
<p><span style="color: #000000">Note that the user you add should be an existing user on the server side of Samba.</span></p>
<p><span style="color: #000000">Step 4. Make Samba load at boot. Add the following to /etc/rc.conf to access the shares at boot:</span></p>
<p><span style="color: #3366ff"># sudo nano /etc/rc.conf</span></p>
<p><span style="color: #000000">Find the section that looks like and add smbnetfs and samba:</span></p>
<pre>DAEMONS=(... smbnetfs samba <strong>) </strong></pre>
<p>That&#8217;s it! You should now be able to access your home folder from a another machine.</p>
<p>Good luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://archlinux.me/killerturtle/2011/02/25/sharing-files-in-your-home-network-with-samba/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable auto login into SLIM</title>
		<link>http://archlinux.me/killerturtle/2011/01/29/enable-auto-login-into-slim/</link>
		<comments>http://archlinux.me/killerturtle/2011/01/29/enable-auto-login-into-slim/#comments</comments>
		<pubDate>Sat, 29 Jan 2011 13:43:01 +0000</pubDate>
		<dc:creator>killerturtle</dc:creator>
				<category><![CDATA[Slim]]></category>
		<category><![CDATA[autologin]]></category>

		<guid isPermaLink="false">http://archlinux.me/killerturtle/?p=12</guid>
		<description><![CDATA[One of the things that annoyed me was having to enter my login and password at every boot. I use SLIM. Fortunately SLIM is very easy to setup to autologin a specific user. Here&#8217;s how&#8230; : To make SLiM automatically login as a specified user (without having to type a password) the following lines in [...]]]></description>
				<content:encoded><![CDATA[<p>One of the things that annoyed me was having to enter my login and password at every boot. I use SLIM. Fortunately SLIM is very easy to setup to autologin a specific user.</p>
<p>Here&#8217;s how&#8230; :</p>
<p>To make SLiM automatically login as a specified user (without having to type a password) the following lines in /etc/slim.conf should be changed.</p>
<pre># default_user        simone</pre>
<p>Uncomment this line, and change &#8220;simone&#8221; to the user to be logged into automatically.</p>
<pre># auto_login          no</pre>
<p>Uncomment this line and change the &#8216;no&#8217; to &#8216;yes&#8217;. This enables the auto login feature.</p>
<p>Good luck!</p>
<p>Source: Arch Wiki pages</p>
]]></content:encoded>
			<wfw:commentRss>http://archlinux.me/killerturtle/2011/01/29/enable-auto-login-into-slim/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to setup OpenSSH on Arch Linux</title>
		<link>http://archlinux.me/killerturtle/2011/01/26/how-to-setup-ssh-on-arch-linux/</link>
		<comments>http://archlinux.me/killerturtle/2011/01/26/how-to-setup-ssh-on-arch-linux/#comments</comments>
		<pubDate>Wed, 26 Jan 2011 15:13:38 +0000</pubDate>
		<dc:creator>killerturtle</dc:creator>
				<category><![CDATA[OpenSSH]]></category>
		<category><![CDATA[remote access]]></category>

		<guid isPermaLink="false">http://archlinux.me/killerturtle/?p=4</guid>
		<description><![CDATA[I thought it would be nice if I could connect to Arch Linux through my Imac. Well OpenSSH is the way to do this fairy easy. Here&#8217;s what I did to make the magic happen: 1. Install OpenSSH sudo pacman -S openssh 2. To let other people ssh to your machine you need to adjust [...]]]></description>
				<content:encoded><![CDATA[<p>I thought it would be nice if I could connect to Arch Linux through my Imac. Well OpenSSH is the way to do this fairy easy.<br />
Here&#8217;s what I did to make the magic happen:</p>
<p>1. Install OpenSSH<br />
<code>sudo pacman -S openssh</code></p>
<p>2. To let other people ssh to your machine you need to adjust /etc/hosts.allow, add the following:<br />
<code># let everyone connect to you (this is what I use, it maybe a security risk when one is a lot on a public internet connection)<br />
sshd: ALL</code></p>
<pre><code># OR you can restrict it to a certain ip</code></pre>
<pre><code># sshd: 192.168.0.1</code></pre>
<p><code> </code></p>
<pre><code># OR restrict for an IP range</code></pre>
<pre><code># sshd: 10.0.0.0/255.255.255.0</code></pre>
<p><code> </code></p>
<pre># OR restrict for an IP match</pre>
<pre># sshd: 192.168.1.</pre>
<p>3. Optional, add sshd to the &#8220;DAEMONS&#8221; section of your /etc/rc.conf:  <code>DAEMONS=(... ... sshd ... ...)</code> 4.Dont forget to restart the daemon (as root):</p>
<pre># /etc/rc.d/sshd restart</pre>
<p>That&#8217;s it! Now you should be possible to SSH into your Arch box through a client with the following commond (On OS X that is&#8230;)<br />
<code>ssh -l [username] [ip-adress]</code></p>
<p>Good Luck!!!</p>
<p>Source: Arch Linux ArchWiki pages: https://wiki.archlinux.org/index.php/SSH</p>
]]></content:encoded>
			<wfw:commentRss>http://archlinux.me/killerturtle/2011/01/26/how-to-setup-ssh-on-arch-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Arch Newbie sharing experiences as time goes on</title>
		<link>http://archlinux.me/killerturtle/2011/01/25/hello-world/</link>
		<comments>http://archlinux.me/killerturtle/2011/01/25/hello-world/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 02:29:20 +0000</pubDate>
		<dc:creator>killerturtle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://archlinux.me/killerturtle/?p=1</guid>
		<description><![CDATA[Well, be gentile here with me please&#8230;This is my first post ever on a blog I recently started out using Arch Linux.  Coming from Ubuntu I have some experience with the CLS but not that much. Reasons for using Arch for me are speed, flexibility, VERY well documented, good forums, and it runs very smooth [...]]]></description>
				<content:encoded><![CDATA[<p>Well, be gentile here with me please&#8230;This is my first post ever on a blog <img src='http://archlinux.me/killerturtle/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I recently started out using Arch Linux.  Coming from Ubuntu I have some experience with the CLS but not that much. Reasons for using Arch for me are speed, flexibility, VERY well documented, good forums, and it runs very smooth on my old Dell C640 laptop.</p>
<p>I&#8217;ll be sharing my experiences here, as I hope to make some progress during my time using Arch.</p>
<p>Specs of the machinery are&#8230;:</p>
<p>Dell C640</p>
<p>Pentium IV 2.0 Mhz (wooohooo!)</p>
<p>512 MB RAM DDRI</p>
<p>1024 * 768 screen</p>
<p>1 USB I port</p>
]]></content:encoded>
			<wfw:commentRss>http://archlinux.me/killerturtle/2011/01/25/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
