<?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>pancakelizard</title>
	<atom:link href="http://pancakelizard.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://pancakelizard.net</link>
	<description>stroke the lizard...</description>
	<lastBuildDate>Fri, 17 Feb 2012 18:16:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>set up a HP Microserver with Ubuntu and everything you need</title>
		<link>http://pancakelizard.net/2012/set-up-a-hp-microserver-with-ubuntu-and-everything-you-need/</link>
		<comments>http://pancakelizard.net/2012/set-up-a-hp-microserver-with-ubuntu-and-everything-you-need/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 18:16:20 +0000</pubDate>
		<dc:creator>wanye</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[microserver]]></category>
		<category><![CDATA[rtorrent]]></category>
		<category><![CDATA[sabnzbd]]></category>
		<category><![CDATA[sickbeard]]></category>
		<category><![CDATA[squeezecenter]]></category>

		<guid isPermaLink="false">http://pancakelizard.net/?p=2615</guid>
		<description><![CDATA[this isnt the final version of this, but it has been sat here for a while, so figured i should at least share my initial progress on it So i bought a HP microserver. loaded it full of drives and stuck ubuntu server on it. below is a bit of a HOWTO/build script. DO NOT [...]]]></description>
			<content:encoded><![CDATA[<p>this isnt the final version of this, but it has been sat here for a while, so figured i should at least share my initial progress on it</p>
<p>So i bought a HP microserver. loaded it full of drives and stuck ubuntu server on it. below is a bit of a HOWTO/build script. DO NOT RUN IT AS A SCRIPT. it will not work. instead read through it and do it by hand in chunks. you WILL need to change some stuff.</p>
<p>but it should give you a good start into building your own with sabnzbd, sick beard, squeezebox server, and loads more. Since doing this, i have moved from greyhole to GLUSTER as my JBOD filesystem as well as installing AFP as samba performance on my mac was poor. I'll get round to finishing it off at some point...</p>
<p>enjoy!</p>
<p>&nbsp;</p>
<p>################################################ ubuntu 11.04 server setup:</p>
<p>select region/keyboard settings as needed<br />
enter servername. in this case i am using "microserver"<br />
disk setup as appropriate (i used guided with lvm) and<br />
set up username/password (in my case i used "wanye" and dont encrypt your home folder<br />
enter proxy information if necessary<br />
select "install security updates automatically"<br />
select "OpenSSH server" from the list of server modules to install (we will install the rest later as we need them)<br />
remove cd/usb and reboot when completed<br />
log in and find the ip address of the server (in my case 192.168.1.238)<br />
config files needed:<br />
/etc/lighttpd/lighttpd.conf<br />
/root/.rtorrent.rc<br />
/var/www/rutorrent/conf/config.php<br />
/etc/default/sabnzbdplus<br />
/home/wanye/rtorrentInit.sh</p>
<p>(optional) binary files needed:<br />
squeezeboxserver_7.6.1_all.deb (or latest version from mysqueezebox.com)</p>
<p>(optional) web server frontend link page:<br />
index.html<br />
icon-webmin.png<br />
pixel.png<br />
rtorrent.png<br />
rutorrent.png<br />
sabnzbd.png<br />
sickbeard.png<br />
squeezebox.png<br />
(to be copied to /var/www once completed)<br />
################################################ network config and initial setup</p>
<p>#set up static IP address instead of DHCP and add hosts entries<br />
sudo nano /etc/hosts<br />
-------------------<br />
127.0.0.1 localhost microserver<br />
192.168.1.250 microserver<br />
192.168.1.10 nas #This is optional and depends on your personal setup<br />
-------------------</p>
<p>sudo nano /etc/network/interfaces<br />
-------------------<br />
# This file describes the network interfaces available on your system<br />
# and how to activate them. For more information, see interfaces(5).</p>
<p># The loopback network interface<br />
auto lo<br />
iface lo inet loopback</p>
<p># The primary network interface<br />
auto eth0<br />
iface eth0 inet static<br />
address 192.168.1.250<br />
netmask 255.255.255.0<br />
gateway 192.168.1.1</p>
<p>-------------------</p>
<p>sudo nano /etc/resolv.conf<br />
-------------------<br />
### ensure your DNS servers are listed<br />
192.168.1.1<br />
194.168.4.100<br />
194.168.8.100<br />
-------------------</p>
<p>################################################ reboot<br />
sudo shutdown -r now<br />
################################################ install additional modules needed for things<br />
sudo apt-get install git-core python smbfs subversion libncurses5-dev libsigc++-2.0-dev libcurl4-openssl-dev build-essential screen wget unzip unrar php5 pkg-config libperl-dev libterm-readline-gnu-perl php5-cgi php5-curl php5-cli ffmpeg</p>
<p>################################################ mount samba share on NAS/server<br />
sudo mkdir /mnt/nas<br />
sudo nano /etc/fstab</p>
<p>##### add in the following<br />
//nas/share /mnt/nas cifs guest,uid=1000,iocharset=utf8,codepage=unicode,unicode 0 0</p>
<p>sudo mount -a<br />
################################################ install webmin<br />
sudo nano /etc/apt/sources.list</p>
<p>add the following to the bottom:<br />
-------------------<br />
deb http://download.webmin.com/download/repository sarge contrib<br />
deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib<br />
-------------------</p>
<p>wget http://www.webmin.com/jcameron-key.asc</p>
<p>sudo apt-key add jcameron-key.asc<br />
sudo apt-get update<br />
sudo apt-get install webmin</p>
<p>sudo nano /etc/webmin/miniserv.users<br />
##### add your username to list<br />
sudo /etc/init.d/webmin restart</p>
<p>try logging into https://192.168.1.250:10000/ as your user</p>
<p>################################################ install rtorrent and gui<br />
sudo apt-get install lighttpd<br />
sudo nano /etc/lighttpd/lighttpd.conf<br />
OR<br />
sudo cp /home/wanye/lighttpd.conf /etc/lighttpd/lighttpd.conf<br />
sudo /etc/init.d/lighttpd restart<br />
##### add settings as required for rtorrent</p>
<p># create download directory for rtorrent<br />
sudo mkdir /data /data/torrentdownloads /data/torrentdownloads/.session</p>
<p>### compile libtorrent from source<br />
cd /tmp<br />
sudo wget http://libtorrent.rakshasa.no/downloads/libtorrent-0.12.9.tar.gz<br />
sudo tar zxfv libtorrent-0.12.9.tar.gz<br />
cd libtorrent-0.12.9<br />
sudo ./configure<br />
sudo make<br />
sudo make install<br />
### compile xmlrpc-c from source<br />
cd /tmp<br />
sudo svn checkout http://xmlrpc-c.svn.sourceforge.net/svnroot/xmlrpc-c/stable xmlrpc-c<br />
cd xmlrpc-c/<br />
sudo ./configure<br />
sudo make<br />
sudo make install<br />
### compile rtorrent from source<br />
cd /tmp<br />
sudo wget http://libtorrent.rakshasa.no/downloads/rtorrent-0.8.9.tar.gz<br />
sudo tar zxfv rtorrent-0.8.9.tar.gz<br />
cd rtorrent-0.8.9<br />
sudo ./configure --with-xmlrpc-c<br />
sudo make<br />
sudo make install</p>
<p>sudo ldconfig</p>
<p>### install rutorrent and plugins from svn</p>
<p>cd /var/www/<br />
sudo svn co http://rutorrent.googlecode.com/svn/trunk/rutorrent<br />
sudo svn up<br />
### plugins dl<br />
cd /var/www/rutorrent/<br />
sudo rm -rf plugins/<br />
sudo svn co http://rutorrent.googlecode.com/svn/trunk/plugins/<br />
sudo svn up</p>
<p>### configure rtorrent<br />
sudo nano /root/.rtorrent.rc<br />
OR<br />
sudo cp /home/wanye/.rtorrent.rc /root/.rtorrent.rc</p>
<p>sudo nano /var/www/rutorrent/conf/config.php<br />
OR<br />
sudo cp /home/wanye/config.php /var/www/rutorrent/conf/config.php<br />
sudo chmod -R 747 /var/www/rutorrent/<br />
sudo chown -R www-data:www-data /var/www/rutorrent/share/<br />
sudo /etc/init.d/lighttpd restart</p>
<p>#### set it to autostart on reboot<br />
sudo cp /home/wanye/rtorrentInit.sh /etc/init.d/rtorrent<br />
sudo chmod +rx /etc/init.d/rtorrent<br />
sudo update-rc.d rtorrent defaults</p>
<p>#### install mediainfo module for rutorrent plugin<br />
sudo apt-get install --reinstall python-software-properties &amp;&amp; sudo dpkg-reconfigure python-software-properties<br />
sudo add-apt-repository ppa:shiki/mediainfo<br />
sudo apt-get update<br />
sudo apt-get install mediainfo</p>
<p>################################################ reboot and test rtorrent autostarts ok<br />
sudo shutdown -r now<br />
################################################ install sabnzbd, sickbeard, couchpotato and usenet tools</p>
<p># install sabnzbd<br />
echo "deb http://ppa.launchpad.net/jcfp/ppa/ubuntu $(lsb_release -c -s) main" | sudo tee -a /etc/apt/sources.list &amp;&amp; sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:11371 --recv-keys 0x98703123E0F52B2BE16D586EF13930B14BB9F05F<br />
sudo apt-get update<br />
sudo apt-get install sabnzbdplus<br />
sudo nano /etc/default/sabnzbdplus<br />
##### set up sab config</p>
<p>/etc/init.d/sabnzbdplus start</p>
<p>------------------------------<br />
# [required] user or uid of account to run the program as:<br />
USER=wanye</p>
<p># [optional] full path to the configuration file of your choice;<br />
# otherwise, the default location (in $USER's home<br />
# directory) is used:<br />
CONFIG=</p>
<p># [optional] hostname/ip and port number to listen on:<br />
HOST=192.168.1.250<br />
PORT=8080<br />
-------------------------------</p>
<p>####### point your web browser at http://192.168.1.250:8080 and follow setup instructions<br />
# install couchpotato movie grabber<br />
cd /usr/local/sbin<br />
sudo git clone http://github.com/RuudBurger/CouchPotato.git<br />
sudo mv CouchPotato couchpotato<br />
cd couchpotato<br />
sudo python CouchPotato.py -d<br />
cd /usr/local/sbin/couchpotato<br />
sudo cp initd /etc/init.d/couchpotato<br />
sudo chmod a+x /etc/init.d/couchpotato<br />
sudo update-rc.d couchpotato defaults<br />
sudo /etc/init.d/couchpotato start</p>
<p>####### point your web browser at http://192.168.1.250:5001 and follow setup instructions</p>
<p># install sickbeard tv grabber<br />
sudo apt-get install python-cheetah<br />
git clone git://github.com/midgetspy/Sick-Beard.git my-sickbeard-install<br />
python SickBeard.py</p>
<p>################################################ install squeezebox server<br />
sudo dpkg -i squeezeboxserver_7.6.1_all.deb</p>
<p>####### point your web browser at http://192.168.1.250:9000 and follow setup instructions<br />
################################################ install greyhole for later use<br />
wget https://github.com/downloads/gboudreau/Greyhole/greyhole-0.9.12-1.amd64.deb<br />
sudo apt-get install samba<br />
sudo apt-get -f install<br />
sudo dpkg -i greyhole-0.9.12-1.amd64.deb</p>
<p>################################################ reboot<br />
sudo shutdown -r now</p>
<p>copy web frontend links to /var/www - index.html and shortcut icons<br />
point web browser at http://192.168.1.250 and ensure tall the links work ok.</p>
]]></content:encoded>
			<wfw:commentRss>http://pancakelizard.net/2012/set-up-a-hp-microserver-with-ubuntu-and-everything-you-need/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>removing line numbers from the bash history</title>
		<link>http://pancakelizard.net/2011/removing-line-numbers-from-the-bash-history/</link>
		<comments>http://pancakelizard.net/2011/removing-line-numbers-from-the-bash-history/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 11:41:33 +0000</pubDate>
		<dc:creator>wanye</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[HOWTO]]></category>

		<guid isPermaLink="false">http://pancakelizard.net/?p=2609</guid>
		<description><![CDATA[i set up a server recently, but something got messed up and i had to reinstall, so instead of building it all again by hand, i simply took the contents of the bash history and edited it down to a script that will autoinstall everything in future. history &#124; sed 's/^ *[0-9]* *//' &#62; serverinstallscript.sh [...]]]></description>
			<content:encoded><![CDATA[<p>i set up a server recently, but something got messed up and i had to reinstall, so instead of building it all again by hand, i simply took the contents of the bash history and edited it down to a script that will autoinstall everything in future.</p>
<blockquote><p>history | sed 's/^ *[0-9]* *//' &gt; serverinstallscript.sh</p></blockquote>
<p>is the commend needed to remove the lines in front so you can easily create your own bash script...</p>
]]></content:encoded>
			<wfw:commentRss>http://pancakelizard.net/2011/removing-line-numbers-from-the-bash-history/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>back to the lizard&#8230;..</title>
		<link>http://pancakelizard.net/2011/back-to-the-lizard/</link>
		<comments>http://pancakelizard.net/2011/back-to-the-lizard/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 16:52:58 +0000</pubDate>
		<dc:creator>wanye</dc:creator>
				<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://pancakelizard.net/?p=2607</guid>
		<description><![CDATA[well, after getting pancakelizard.net back off the domain squatters a while back, ive finally got off my arse and restored the site almost back to its former glory. this site now contains content from the last ELEVEN YEARS or so... back when it wasnt called "blogging", heck,it was very rarely even called a weblog. back [...]]]></description>
			<content:encoded><![CDATA[<p>well, after getting pancakelizard.net back off the domain squatters a while back, ive finally got off my arse and restored the site almost back to its former glory. this site now contains content from the last ELEVEN YEARS or so... back when it wasnt called "blogging", heck,it was very rarely even called a weblog. back then, it was just posting content to your website. thoughts, links, stupid flash animations, pictures of kittens, that sort of thing...</p>
<p>anyway, as i have a couple of thousand posts to sort through, most of the site isnt categorized yet. but it will be over the coming weeks, and if i can get the import script running properly, ill be adding more content from various other blogs i have posted to or created over the last decade or so.</p>
<p>so yeah, heres to the lizard version 5! LONG LIVE THE LIZARD!</p>
]]></content:encoded>
			<wfw:commentRss>http://pancakelizard.net/2011/back-to-the-lizard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ubuntu 10.10 network icon disappearing overnight and losing wireless connection.</title>
		<link>http://pancakelizard.net/2011/ubuntu-10-10-network-icon-disappearing-overnight-and-losing-wireless-connection/</link>
		<comments>http://pancakelizard.net/2011/ubuntu-10-10-network-icon-disappearing-overnight-and-losing-wireless-connection/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 14:10:43 +0000</pubDate>
		<dc:creator>wanye</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pancakelizard.net/?p=1438</guid>
		<description><![CDATA[I started having this problem a couple of days ago, my work laptop (usually on 24/7)would lose its network connections in ubuntu 10.10 overnight, however, any virtualbox machines would still keep whatever (wired) connection they were using. this has been happening the last two nights for some reason. anyway, after checking various logs, i came [...]]]></description>
			<content:encoded><![CDATA[<p>I started having this problem a couple of days ago, my work laptop (usually on 24/7)would lose its network connections in ubuntu 10.10 overnight, however, any virtualbox machines would still keep whatever (wired) connection they were using. this has been happening the last two nights for some reason.</p>
<p>anyway, after checking various logs, i came across the "cfg80211: All devices are disconnected, going to restore regulatory settings" error, and googling brought me to http://azitech.wordpress.com/2010/02/22/deauthenticating-reason3/</p>
<p>All the posts helped, but after killing the single instance of wpa_supplicant, it still wasnt working.</p>
<p>in my case, the network-manager applet icon had also disappeared from my menubar. after running "nm-applet" my connections all came back to life. job done!</p>
<p>wanye@mylaptop:~$ tail /var/log/messages<br />
Aug 18 16:11:07 mylaptop kernel: [28937.420256] usb 2-1.2: USB disconnect, address 5<br />
Aug 18 22:00:22 mylaptop kernel: [49850.084038] cfg80211: Calling CRDA to update world regulatory domain<br />
Aug 18 22:00:33 mylaptop kernel: [49862.749263] cfg80211: World regulatory domain updated:<br />
Aug 18 22:00:33 mylaptop kernel: [49862.749268] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)<br />
Aug 18 22:00:33 mylaptop kernel: [49862.749270] (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)<br />
Aug 18 22:00:33 mylaptop kernel: [49862.749273] (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)<br />
Aug 18 22:00:33 mylaptop kernel: [49862.749280] (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)<br />
Aug 18 22:00:33 mylaptop kernel: [49862.749283] (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)<br />
Aug 18 22:00:33 mylaptop kernel: [49862.749286] (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)<br />
Aug 19 07:41:16 mylaptop rsyslogd: [origin software="rsyslogd" swVersion="4.2.0" x-pid="1079" x-info="http://www.rsyslog.com"] rsyslogd was HUPed, type 'lightweight'.</p>
<p>wanye@mylaptop:~$ dmesg<br />
[49850.003854] iwlagn 0000:02:00.0: ACTIVATE a non DRIVER active station id 0 addr 00:xx:xx:xx:xx:31<br />
[49850.046225] wlan0: deauthenticating from 00:xx:xx:xx:xx:31 by local choice (reason=3)<br />
[49850.084028] cfg80211: All devices are disconnected, going to restore regulatory settings<br />
[49850.084035] cfg80211: Restoring regulatory settings<br />
[49850.084038] cfg80211: Calling CRDA to update world regulatory domain<br />
[49862.749263] cfg80211: World regulatory domain updated:<br />
[49862.749268] (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)<br />
[49862.749270] (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)<br />
[49862.749273] (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)<br />
[49862.749280] (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)<br />
[49862.749283] (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)<br />
[49862.749286] (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)</p>
<p>wanye@mylaptop:~$ tail -40 /var/log/daemon.log<br />
Aug 18 16:24:16 mylaptop NetworkManager[1109]: (wlan0): supplicant connection state: group handshake -&gt; complete<br />
Aug 18 16:24:35 mylaptop wpa_supplicant[1324]: WPA: Group rekeying completed with 00:xx:xx:xx:xx:31 [GTK=TKIP]<br />
Aug 18 16:24:35 mylaptop NetworkManager[1109]: (wlan0): supplicant connection state: completed -&gt; group handshake<br />
Aug 18 16:24:35 mylaptop NetworkManager[1109]: (wlan0): supplicant connection state: group handshake -&gt; completed<br />
Aug 18 17:08:11 mylaptop NetworkManager[1109]: (wlan0): supplicant connection state: completed -&gt; group handshake<br />
Aug 18 17:08:11 mylaptop wpa_supplicant[1324]: WPA: Group rekeying completed with 00:xx:xx:xx:xx:31 [GTK=TKIP]<br />
Aug 18 17:08:11 mylaptop NetworkManager[1109]: (wlan0): supplicant connection state: group handshake -&gt; completed<br />
Aug 18 17:23:48 mylaptop dhclient: DHCPREQUEST of 192.168.2.30 on wlan0 to 192.168.2.1 port 67<br />
Aug 18 17:23:48 mylaptop dhclient: DHCPACK of 192.168.2.30 from 192.168.2.1<br />
Aug 18 17:23:48 mylaptop NetworkManager[1109]: (wlan0): DHCPv4 state changed reboot -&gt; renew<br />
Aug 18 17:23:48 mylaptop NetworkManager[1109]: address 192.168.2.30<br />
Aug 18 17:23:48 mylaptop NetworkManager[1109]: prefix 24 (255.255.255.0)<br />
Aug 18 17:23:48 mylaptop NetworkManager[1109]: gateway 192.168.2.1<br />
Aug 18 17:23:48 mylaptop NetworkManager[1109]: nameserver '192.168.2.1'<br />
Aug 18 17:23:48 mylaptop NetworkManager[1109]: domain name 'Belkin'<br />
Aug 18 17:23:48 mylaptop dhclient: bound to 192.168.2.30 -- renewal in 37383 seconds.<br />
Aug 18 17:38:21 mylaptop wpa_supplicant[1324]: WPA: Group rekeying completed with 00:xx:xx:xx:xx:31 [GTK=TKIP]<br />
Aug 18 17:38:21 mylaptop NetworkManager[1109]: (wlan0): supplicant connection state: completed -&gt; group handshake<br />
Aug 18 17:38:21 mylaptop NetworkManager[1109]: (wlan0): supplicant connection state: group handshake -&gt; completed<br />
Aug 18 17:38:41 mylaptop wpa_supplicant[1324]: WPA: Group rekeying completed with 00:xx:xx:xx:xx:31 [GTK=TKIP]<br />
Aug 18 17:38:41 mylaptop NetworkManager[1109]: (wlan0): supplicant connection state: completed -&gt; group handshake<br />
Aug 18 17:38:41 mylaptop NetworkManager[1109]: (wlan0): supplicant connection state: group handshake -&gt; completed<br />
Aug 18 17:38:44 mylaptop wpa_supplicant[1324]: WPA: Group rekeying completed with 00:xx:xx:xx:xx:31 [GTK=TKIP]<br />
Aug 18 17:38:44 mylaptop NetworkManager[1109]: (wlan0): supplicant connection state: completed -&gt; group handshake<br />
Aug 18 17:38:44 mylaptop NetworkManager[1109]: (wlan0): supplicant connection state: group handshake -&gt; completed<br />
Aug 18 18:43:38 mylaptop wpa_supplicant[1324]: WPA: Group rekeying completed with 00:xx:xx:xx:xx:31 [GTK=TKIP]<br />
Aug 18 18:43:38 mylaptop NetworkManager[1109]: (wlan0): supplicant connection state: completed -&gt; group handshake<br />
Aug 18 18:43:38 mylaptop NetworkManager[1109]: (wlan0): supplicant connection state: group handshake -&gt; completed<br />
Aug 18 22:00:20 mylaptop NetworkManager[1109]: (wlan0): device state change: 8 -&gt; 3 (reason 38)<br />
Aug 18 22:00:20 mylaptop NetworkManager[1109]: (wlan0): deactivating device (reason: 38).<br />
Aug 18 22:00:20 mylaptop NetworkManager[1109]: (wlan0): canceled DHCP transaction, DHCP client pid 2092<br />
Aug 18 22:00:21 mylaptop wpa_supplicant[1324]: CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys<br />
Aug 18 22:00:22 mylaptop avahi-daemon[1113]: Withdrawing address record for 192.168.2.30 on wlan0.<br />
Aug 18 22:00:22 mylaptop avahi-daemon[1113]: Leaving mDNS multicast group on interface wlan0.IPv4 with address 192.168.2.30.<br />
Aug 18 22:00:22 mylaptop avahi-daemon[1113]: Interface wlan0.IPv4 no longer relevant for mDNS.<br />
Aug 18 22:00:29 mylaptop ntpd[2199]: sendto(172.16.198.81) (fd=20): Invalid argument<br />
Aug 18 22:01:34 mylaptop ntpd[2199]: sendto(172.16.198.81) (fd=20): Invalid argument<br />
Aug 18 22:02:38 mylaptop ntpd[2199]: sendto(172.16.198.81) (fd=20): Invalid argument<br />
Aug 18 22:03:41 mylaptop ntpd[2199]: sendto(172.16.198.81) (fd=20): Invalid argument<br />
Aug 18 22:03:53 mylaptop ntpd[2199]: Deleting interface #4 wlan0, 192.168.2.30#123, interface stats: received=0, sent=768, dropped=4, active_time=50101 secs</p>
<p>wanye@mylaptop:~$ ps -ef|grep wpa_supplicant<br />
root 1324 1 0 Aug18 ? 00:00:00 /sbin/wpa_supplicant -u -s<br />
wanye 10435 4846 0 08:29 pts/1 00:00:00 grep --color=auto wpa_supplicant<br />
wanye@mylaptop:~$ ps -ef|grep network<br />
wanye 10437 4846 0 08:31 pts/1 00:00:00 grep --color=auto network</p>
<p>wanye@mylaptop:~$ sudo kill 1324<br />
[sudo] password for wanye:<br />
wanye@mylaptop:~$ ps -ef|grep wpa_supplicant<br />
root 10441 1 0 08:32 ? 00:00:00 /sbin/wpa_supplicant -u -s<br />
wanye 10448 4846 0 08:32 pts/1 00:00:00 grep --color=auto wpa_supplicant</p>
<p>wanye@mylaptop:~$ nm-applet<br />
** Message: applet now removed from the notification area<br />
** Message: applet now embedded in the notification area<br />
** (nm-applet:10554): DEBUG: old state indicates that this was not a disconnect 0<br />
** (nm-applet:10554): DEBUG: foo_client_state_changed_cb<br />
** (nm-applet:10554): DEBUG: foo_client_state_changed_cb</p>
]]></content:encoded>
			<wfw:commentRss>http://pancakelizard.net/2011/ubuntu-10-10-network-icon-disappearing-overnight-and-losing-wireless-connection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Top 5 Artists (Week Ending 2011-8-14)</title>
		<link>http://pancakelizard.net/2011/9061694403/</link>
		<comments>http://pancakelizard.net/2011/9061694403/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 05:40:11 +0000</pubDate>
		<dc:creator>wanye</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bertation.co.uk/post/9061694403</guid>
		<description><![CDATA[Link: My Top 5 Artists (Week Ending 2011-8-14) The Throne (20) Chuck Berry (8) Jason Mraz (4) Dan Le Sac vs Scroobius Pip (2) Keri Hilson (1) Imported from Last.fm Tumblr by JoeLaz]]></description>
			<content:encoded><![CDATA[<p>Link: <a href="http://www.last.fm/user/spazhammer/charts?charttype=weekly&#038;date_to=1313323200">My Top 5 Artists (Week Ending 2011-8-14)</a></p>
<ol>
<li>
<a rel="nofollow" target="_blank" href="http://www.last.fm/music/The+Throne">The Throne (20)</a> </li>
<li>
<a rel="nofollow" target="_blank" href="http://www.last.fm/music/Chuck+Berry">Chuck Berry (8)</a> </li>
<li>
<a rel="nofollow" target="_blank" href="http://www.last.fm/music/Jason+Mraz">Jason Mraz (4)</a> </li>
<li>
<a rel="nofollow" target="_blank" href="http://www.last.fm/music/Dan+Le+Sac+vs+Scroobius+Pip">Dan Le Sac vs Scroobius Pip (2)</a> </li>
<li>
<a rel="nofollow" target="_blank" href="http://www.last.fm/music/Keri+Hilson">Keri Hilson (1)</a> </li>
</ol>
<p>Imported from <a rel="nofollow" target="_blank" href="http://joelaz.com/post/23488847/last-fm-tumblr-weekly-top-artists">Last.fm Tumblr</a> by <a rel="nofollow" target="_blank" href="http://joelaz.com">JoeLaz</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pancakelizard.net/2011/9061694403/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protected:</title>
		<link>http://pancakelizard.net/2011/2532/</link>
		<comments>http://pancakelizard.net/2011/2532/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 10:28:00 +0000</pubDate>
		<dc:creator>wanye</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pancakelizard.net/?p=2532</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://pancakelizard.net/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-2532">Password:<br />
<input name="post_password" id="pwbox-2532" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://pancakelizard.net/2011/2532/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Ten Years After Decriminalization, Drug Abuse Down by Half in Portugal</title>
		<link>http://pancakelizard.net/2011/9038464343/</link>
		<comments>http://pancakelizard.net/2011/9038464343/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 14:32:56 +0000</pubDate>
		<dc:creator>wanye</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bertation.co.uk/post/9038464343</guid>
		<description><![CDATA[Link: Ten Years After Decriminalization, Drug Abuse Down by Half in Portugal Ten years ago, Portugal decriminalized all drugs. One decade after this unprecedented experiment, drug abuse is down by half:]]></description>
			<content:encoded><![CDATA[<p>Link: <a href="http://www.forbes.com/sites/erikkain/2011/07/05/ten-years-after-decriminalization-drug-abuse-down-by-half-in-portugal/">Ten Years After Decriminalization, Drug Abuse Down by Half in Portugal</a></p>
<p><span>Ten years ago, <a href="http://www.cato.org/pub_display.php?pub_id=10080">Portugal decriminalized <strong>all </strong>drugs</a>. One decade after this unprecedented experiment, <a href="http://www.google.com/hostednews/afp/article/ALeqM5g9C6x99EnFVdFuXw_B8pvDRzLqcA?docId=CNG.e740b6d0077ba8c28f6d1dd931c6f679.5e1">drug abuse is down by half</a>:</span></p>
]]></content:encoded>
			<wfw:commentRss>http://pancakelizard.net/2011/9038464343/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lemon Jelly &#8211; Ramblin Man - If you put together the first letters of the plac</title>
		<link>http://pancakelizard.net/2011/9038370859/</link>
		<comments>http://pancakelizard.net/2011/9038370859/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 14:21:21 +0000</pubDate>
		<dc:creator>wanye</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bertation.co.uk/post/9038370859</guid>
		<description><![CDATA[Lemon Jelly - Ramblin Man - If you put together the first letters of the places he says he visited, starting with Brixton and finishing with San Jose, it reads BAGPUSS SEES ALL THINGS.]]></description>
			<content:encoded><![CDATA[<p><span>Lemon Jelly - Ramblin Man - </span><span>If you put together the first letters of the places he says he visited, starting with Brixton and finishing with San Jose, it reads BAGPUSS SEES ALL THINGS.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://pancakelizard.net/2011/9038370859/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hipster Ipsum</title>
		<link>http://pancakelizard.net/2011/8989975786/</link>
		<comments>http://pancakelizard.net/2011/8989975786/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 08:11:00 +0000</pubDate>
		<dc:creator>wanye</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bertation.co.uk/post/8989975786</guid>
		<description><![CDATA[Link: Hipster Ipsum Carles terry richardson VHS, master cleanse art party food truck Austin PBR. Tofu jean shorts tattooed terry richardson vice twee. Photo booth readymade banh mi trust fund, american apparel synth beard. Put a bird on it beard mixtape squid butcher, tumblr jean shorts letterpress vinyl wayfarers american apparel. Thundercats craft beer mlkshk, [...]]]></description>
			<content:encoded><![CDATA[<p>Link: <a href="http://hipsteripsum.me/">Hipster Ipsum</a></p>
<p><span></p>
<p>Carles terry richardson VHS, master cleanse art party food truck Austin PBR. Tofu jean shorts tattooed terry richardson vice twee. Photo booth readymade banh mi trust fund, american apparel synth beard. Put a bird on it beard mixtape squid butcher, tumblr jean shorts letterpress vinyl wayfarers american apparel. Thundercats craft beer mlkshk, gluten-free +1 four loko 3 wolf moon portland beard tattooed brooklyn. Jean shorts etsy cred art party, echo park keffiyeh carles portland raw denim before they sold out DIY. Trust fund homo retro squid, stumptown etsy banh mi leggings brunch sustainable cliche next level skateboard vegan single-origin coffee.</p>
<p>Seitan keytar quinoa cred wes anderson lomo. Aesthetic american apparel artisan, art party beard high life carles mlkshk 3 wolf moon cred cardigan Austin 8-bit fap vegan. Mlkshk master cleanse butcher scenester twee. Organic leggings twee, pitchfork messenger bag photo booth sartorial retro wayfarers readymade. DIY banh mi brooklyn, hoodie sustainable portland thundercats. Cred helvetica chambray, ethical single-origin coffee mustache freegan before they sold out 8-bit VHS sartorial sustainable. Blog terry richardson skateboard vinyl Austin.</p>
<p>Farm-to-table sustainable ethical, portland high life wolf homo williamsburg. Wolf portland food truck mcsweeney&#8217;s tumblr scenester. Echo park four loko locavore farm-to-table, freegan retro twee irony master cleanse wayfarers letterpress craft beer. Shoreditch vinyl retro before they sold out fanny pack, fap salvia. Dreamcatcher vinyl messenger bag, retro sartorial viral carles bicycle rights Austin gentrify. Single-origin coffee helvetica williamsburg cosby sweater, portland brunch cliche. Fanny pack next level bicycle rights, 8-bit terry richardson farm-to-table VHS DIY fap.</p>
<p>Farm-to-table photo booth stumptown portland gluten-free seitan. Homo locavore quinoa, ethical banksy cosby sweater mixtape four loko craft beer fixie organic keffiyeh. Williamsburg wolf bicycle rights artisan. Mlkshk aesthetic fanny pack skateboard. Mustache twee DIY iphone sartorial skateboard, fanny pack PBR. Before they sold out shoreditch beard biodiesel. +1 sartorial mcsweeney&#8217;s, carles terry richardson freegan before they sold out single-origin coffee.</p>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://pancakelizard.net/2011/8989975786/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protected:</title>
		<link>http://pancakelizard.net/2011/2531/</link>
		<comments>http://pancakelizard.net/2011/2531/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 11:57:00 +0000</pubDate>
		<dc:creator>wanye</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pancakelizard.net/?p=2531</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://pancakelizard.net/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-2531">Password:<br />
<input name="post_password" id="pwbox-2531" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://pancakelizard.net/2011/2531/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

