<?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>Wayno&#039;s Adventures and sojourns through Linux</title>
	<atom:link href="http://pkill-9.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pkill-9.com</link>
	<description></description>
	<lastBuildDate>Thu, 09 Feb 2012 23:29:27 +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>How to file check a Windows or Dos File System using Linux</title>
		<link>http://pkill-9.com/file-check-windows-dos-file-system-linux/</link>
		<comments>http://pkill-9.com/file-check-windows-dos-file-system-linux/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 23:27:39 +0000</pubDate>
		<dc:creator>Wayno</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Misc. other devices/things]]></category>
		<category><![CDATA[Skill Level: Easy]]></category>
		<category><![CDATA[dosfsck]]></category>

		<guid isPermaLink="false">http://pkill-9.com/?p=1512</guid>
		<description><![CDATA[It&#8217;s much much easier then I thought! You need to use dosfsck! 1. If not already installed, install dosfsck: (it&#8217;s in sbin) sudo apt-get install dosfsck 2. Find your device name. sudo blkid You will get output that looks like: /dev/sdf1: LABEL=&#8221;CANON_DC&#8221; UUID=&#8221;713B-5AE2&#8243; TYPE=&#8221;vfat&#8221; Your device name will PROBABLY be different. 3. Check the usb [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s much much easier then I thought!</p>
<p>You need to use dosfsck!</p>
<p>1.  If not already installed, install dosfsck:  (it&#8217;s in sbin)</p>
<p><code><br />
sudo apt-get install dosfsck<br />
</code></p>
<p>2.  Find your device name.</p>
<p><code><br />
sudo blkid<br />
</code></p>
<p>You will get output that looks like:</p>
<p>/dev/sdf1: LABEL=&#8221;CANON_DC&#8221; UUID=&#8221;713B-5AE2&#8243; TYPE=&#8221;vfat&#8221; </p>
<p><strong>Your device name will PROBABLY be different.<br />
</strong></p>
<p>3.  Check the usb drive or sd card:</p>
<p>Remember that the device should NOT be mounted, and that it needs to run as root (sudo or su -)</p>
<p><code><br />
sudo dosfsck -av /dev/sdf1<br />
</code></p>
<p>-a says to automatically repair.</p>
<p>-v says to use verbose output.</p>
<p>You will get output that looks like:</p>
<p>dosfsck 3.0.9 (31 Jan 2010)<br />
dosfsck 3.0.9, 31 Jan 2010, FAT32, LFN<br />
Checking we can access the last sector of the filesystem<br />
Boot sector contents:<br />
System ID &#8220;PwrShot &#8221;<br />
Media byte 0xf8 (hard disk)<br />
       512 bytes per logical sector<br />
     32768 bytes per cluster<br />
      6304 reserved sectors<br />
First FAT starts at byte 3227648 (sector 6304)<br />
         2 FATs, 32 bit entries<br />
    483328 bytes per FAT (= 944 sectors)<br />
Root directory start at cluster 2 (arbitrary size)<br />
Data area starts at byte 4194304 (sector 8192)<br />
    120752 data clusters (3956801536 bytes)<br />
63 sectors/track, 128 heads<br />
      8192 hidden sectors<br />
   7736320 sectors total<br />
Reclaiming unconnected clusters.<br />
Checking free cluster summary.<br />
/dev/sdf1: 693 files, 29358/120752 clusters</p>
<p>No errors.  Good to go.  Look Ma!  No Windows!</p>
<p>Wayno</p>
]]></content:encoded>
			<wfw:commentRss>http://pkill-9.com/file-check-windows-dos-file-system-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Getting the subsonic server to work in Linux with a Roku media player</title>
		<link>http://pkill-9.com/subsonic-server-work-linux/</link>
		<comments>http://pkill-9.com/subsonic-server-work-linux/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 22:42:50 +0000</pubDate>
		<dc:creator>Wayno</dc:creator>
				<category><![CDATA[Audio]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Skill Level: Medium]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[roku]]></category>
		<category><![CDATA[subsonic]]></category>
		<category><![CDATA[subsonic tv]]></category>

		<guid isPermaLink="false">http://pkill-9.com/?p=1496</guid>
		<description><![CDATA[Yeah this required 3 hours of futzing to figure out. 1. Once you have the Subsonic Server installed, turn it off. sudo service subsonic stop 2. Next change to the /var directory. Remember anything with an octothorpe (#) is a comment and NEED not be coded. cd /var # change to the /var sudo mv [...]]]></description>
			<content:encoded><![CDATA[<p>Yeah this required 3 hours of futzing to figure out.</p>
<p>1.  Once you have the <a href="http://www.subsonic.org/pages/index.jsp" title="Subsonic Server" target="_blank">Subsonic Server</a> installed, turn it off.</p>
<p><code><br />
sudo service subsonic stop<br />
</code></p>
<p>2.  Next change to the /var directory.</p>
<p>Remember anything with an octothorpe (#) is a comment and NEED not be coded.</p>
<p><code><br />
cd /var  # change to the /var<br />
sudo mv subsonic subsonic.old # renames the existing folder<br />
sudo service subsonic start  # restart the subsonic server<br />
</code></p>
<p>3.  Now we have to create a symbolic link for the <a href="http://en.wikipedia.org/wiki/LAME" title="lame" target="_blank">lame</a> transcoder, even if it is already installed.</p>
<p>To verify if lame is installed:</p>
<p><code><br />
dpkg -l | grep lame<br />
</code></p>
<p>You would get output that looks like:</p>
<p>nwayno@Homer:~$ dpkg -l | grep lame<br />
ii  lame                                  3.98.4-0ubuntu1                                          An MP3 encoding library (frontend)<br />
ii  libmp3lame0                           3.98.4-0ubuntu1                                          An MP3 encoding library<br />
ii  libtwolame0                           0.3.12-1                                                 MPEG Audio Layer 2 encoding library<br />
ii  twolame                               0.3.12-1                                                 MPEG Audio Layer 2 encoder (command line frontend)<br />
nwayno@Homer:~$ </p>
<p>If lame is NOT installed (the dpkg just returns a prompt) &#8212; install the lame decoder:</p>
<p><code><br />
sudo apt-get install lame<br />
</code></p>
<p>as you can see, mine WAS installed.</p>
<p>4.  Go back to localhost:4040 and re-enter all the information.  If it complains that lame is not installed in the transcode directory, simply create a<a href="http://en.wikipedia.org/wiki/Symlink" title="Symlink" target="_blank"> symbolic link.</a></p>
<p><code><br />
which lame<br />
</code></p>
<p>should return:</p>
<p>/usr/bin/lame</p>
<p>5.  so off we go again!</p>
<p><code><br />
sudo service subsonic stop # stop the subsonic server<br />
cd /var/subsonic/transcode  # change back to the transcode dir<br />
sudo ln -s /usr/bin/lame   # create the symlink<br />
sudo service subsonic start # start up the server so it gets change<br />
</code></p>
<p>it will just return a prompt.</p>
<p>to confirm the symbolic link is there:</p>
<p><code><br />
ls -l<br />
</code></p>
<p>and you should get output that looks like:</p>
<p>lrwxrwxrwx 1 root root 13 2012-02-01 15:10 lame -> /usr/bin/lame</p>
<p>which tells us that /usr/bin/lame is properly symlinked.</p>
<p>6.  Now you can proceed to the <a href="http://www.roku.com/" title="Roku" target="_blank">Roku Box</a>, and configure <a href="http://subsonictv.com/" title="Subsonic TV" target="_blank">Subsonic TV.</a></p>
<p>Please note that subsonictv for Roku is not free.  It is currently $5 USD plus applicable taxes.</p>
<p>The configuration will now save correctly on the Roku set top box, because it can now find the lame mp3 decoder.</p>
<p>Tested with Ubuntu 10.10 (64 bit), and Roku Model 2100X (hardwired)</p>
<p>Wayno</p>
]]></content:encoded>
			<wfw:commentRss>http://pkill-9.com/subsonic-server-work-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>test2</title>
		<link>http://pkill-9.com/test2/</link>
		<comments>http://pkill-9.com/test2/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 04:50:15 +0000</pubDate>
		<dc:creator>Wayno</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pkill-9.com/test2/</guid>
		<description><![CDATA[test post Wayno &#8211; Wayno http://www.pkill-9.com making Linux accessible http://www.linkedin.com/in/waynoguerrini =====]]></description>
			<content:encoded><![CDATA[<p>test post</p>
<p>Wayno</p>
<p>&#8211; </p>
<p>Wayno</p>
<p>http://www.pkill-9.com</p>
<p>making Linux accessible</p>
<p>http://www.linkedin.com/in/waynoguerrini</p>
<p>=====</p>
]]></content:encoded>
			<wfw:commentRss>http://pkill-9.com/test2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to generate an easy to remember password</title>
		<link>http://pkill-9.com/generate-easy-remember-password/</link>
		<comments>http://pkill-9.com/generate-easy-remember-password/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 09:04:44 +0000</pubDate>
		<dc:creator>Wayno</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[Joe]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Skill Level: Easy]]></category>
		<category><![CDATA[password generation]]></category>

		<guid isPermaLink="false">http://pkill-9.com/?p=1484</guid>
		<description><![CDATA[Need a strong, but easy to remember password? No need to remember, generate it! Up to 48 chars, works on any unix-like system: read -s pass; echo $pass &#124; md5sum &#124; base64 &#124; cut -c -16 Joe - ======================================== MD5SUM creates a 128 bit hash. Base64 turns a binary number into ASCII cut &#8211; simply [...]]]></description>
			<content:encoded><![CDATA[<p>Need a strong, but easy to remember password? No need to remember, generate it! Up to 48 chars, works on any unix-like system:</p>
<p><code><br />
read -s pass; echo $pass | md5sum | base64 | cut -c -16<br />
</code></p>
<p>Joe -</p>
<p>========================================</p>
<p><a href="http://en.wikipedia.org/wiki/Md5sum" title="MD5SUM" target="_blank"> MD5SUM creates a 128 bit hash.</a></p>
<p><a href="http://en.wikipedia.org/wiki/Base64" title="Base64" target="_blank">Base64 turns a binary number </a> into <a href="http://en.wikipedia.org/wiki/Ascii" title="American Standard Code for Information Interchange" target="_blank">ASCII</a></p>
<p>cut &#8211; simply removes sections for each line.</p>
<p>Output looks like:</p>
<p>n@H:~$ read -s pass; echo $pass | md5sum | base64 | cut -c -16<br />
(I entered: abcdefg)<br />
MDIwODYxYzhjM2Zl</p>
]]></content:encoded>
			<wfw:commentRss>http://pkill-9.com/generate-easy-remember-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting a Webcam/Logictech Quick Cam to work with Skype in Linux</title>
		<link>http://pkill-9.com/logictech-quick-cam-work-skype-linux/</link>
		<comments>http://pkill-9.com/logictech-quick-cam-work-skype-linux/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 20:19:18 +0000</pubDate>
		<dc:creator>Wayno</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Misc. other devices/things]]></category>
		<category><![CDATA[Skill Level: Easy]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[64 bit requires 32 bit library]]></category>
		<category><![CDATA[cheese]]></category>
		<category><![CDATA[library path]]></category>
		<category><![CDATA[skype]]></category>

		<guid isPermaLink="false">http://pkill-9.com/?p=1445</guid>
		<description><![CDATA[Video Chat Cameras are nice. But they don&#8217;t always play nicely with the Linux version of Skype. 1. Here&#8217;s the camera I have: (here&#8217;s now to find out what you have.) lsusb and the output will look like: Bus 005 Device 004: ID 046d:092e Logitech, Inc. QuickCam Chat 2. First step first. Let&#8217;s see if [...]]]></description>
			<content:encoded><![CDATA[<p>Video Chat Cameras are nice.  But they don&#8217;t always play nicely with the Linux version of <a href="http://en.wikipedia.org/wiki/Skype" title="Skype" target="_blank">Skype</a>.</p>
<p>1.  Here&#8217;s the camera I have:  (here&#8217;s now to find out what you have.)</p>
<p><code><br />
lsusb<br />
</code></p>
<p>and the output will look like:</p>
<p>Bus 005 Device 004: ID 046d:092e Logitech, Inc. QuickCam Chat</p>
<p>2.  First step first.  Let&#8217;s see if the camera works with <a href="http://en.wikipedia.org/wiki/Cheese_%28software%29" title="Linux Cheese" target="_blank">Linux Cheese.</a> </p>
<p>If not already installed, install cheese:</p>
<p><code><br />
sudo apt-get install cheese<br />
</code></p>
<p>Cheese is a local loopback programme.  It takes the output from the camera (/dev/video0) and loops it right back for you to view.  </p>
<p>If successful, this will tell us, that Linux recognizes the camera, and that it works.  The light may/may NOT be on.</p>
<p>3.  Let&#8217;s try the next step:  Installing Skype.</p>
<p>Lets get the latest version of Skype from the <a href="http://www.skype.com/intl/en-us/get-skype/on-your-computer/linux/" title="Where to get Skype" target="_blank">website.</a></p>
<p>The latest Linux version (as of this writing) is:  2.2.0.35.  (YES, that is far far behind the Windows Version) &#8212; Since <a href="http://www.wired.com/epicenter/2011/05/microsoft-buys-skype-2/" title="Microsoft buys Skype for $8.5 BILLION" target="_blank">Microsoft owns Skype,</a> the future of the Linux version is an unknown at this point.</p>
<p>4.  Once the download is finished, install Skype:</p>
<p><code><br />
sudo dpkg -i skype-ubuntu_2.2.0.35-1_i386.deb<br />
</code></p>
<p>They have a version for Debian, and 32 and 64 bits.  The example shown above is for the 32 bit Ubuntu version.  So make sure you get the right version, and make sure you get the right architecture:  32 or 64 bit.</p>
<p><strong>NOTE:  IF YOU ARE ON A 64 BIT DEBIAN SYSTEM, AND PLAN ON USING THE 64 BIT SKYPE, YOU MUST INSTALL THE 32 BIT LIBRARY:  </p>
<p>sudo apt-get install ia32-libs </p>
<p>TO GET SKYPE TO WORK ON A 64 BIT DEBIAN SYSTEM.  Yeah makes no sense, but you need this if you are running 64 bit DEBIAN Skype.<br />
</strong></p>
<p>5.  If you do not already have a Skype account, sign up for one.  Just follow the prompts.  Test the audio by using the Skype Test Call.</p>
<p>6.  Let&#8217;s try the video.  RIGHT click on the green skype logo in your task bar, then LEFT click on Options/Video Devices.</p>
<p>Now hit the test button.  You should hopefully see an image.  If you do not, <a href="http://en.wikipedia.org/wiki/Hitchhiker%27s_Guide_to_the_Galaxy" title="Don't Panic!" target="_blank">don&#8217;t panic!</a></p>
<p><a href="http://pkill-9.com/wp-content/uploads/2012/01/testvidcam.jpg"><img src="http://pkill-9.com/wp-content/uploads/2012/01/testvidcam.jpg" alt="" title="Skype Test Video Camera" width="600" height="409" class="aligncenter size-full wp-image-1455" /></a></p>
<p><a href="http://community.linuxmint.com/tutorial/view/219" title="Library pre-load for Skype" target="_blank"><br />
This article</a> gave me the information I needed to get it working.  But of course, I found a much simpler method then what was given.</p>
<p>7.  If you have no video, and this was especially true with the some of the Web Chat Cameras, all you may need to do is to pre-load the needed libraries.</p>
<p>Using your favourite editor (I&#8217;ll use nano in this case) create a file called skype.sh in your home directory (cd ~ )</p>
<p><code><br />
nano skype.sh<br />
</code></p>
<p>enter the following in the file:</p>
<p><code><br />
#!/bin/bash<br />
#<br />
# script preloads the video for linux (v4l) libs needed by skype<br />
#<br />
LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so /usr/bin/skype<br />
</code></p>
<p>control-o (control plus the &#8220;oh&#8221; key) to save, and control-x (control plus the &#8220;x&#8221; key to exit)</p>
<p>note that the library path name  /usr/lib/libv4l/ may be different on your machine.  This happens the be the correct path for 32 bit Ubuntu 10.04.  The <a href="http://en.wikipedia.org/wiki/LD_PRELOAD#Unix_and_Unix-likes" title="LD Preload" target="_blank">LD_Preload</a> loads the Video for Linux Libraries, which Skype needs, but doesn&#8217;t get.</p>
<p>Now change the icon executable location to the script we just created:</p>
<p><a href="http://pkill-9.com/wp-content/uploads/2012/01/change-skype-exec-location1.jpg"><img src="http://pkill-9.com/wp-content/uploads/2012/01/change-skype-exec-location1.jpg" alt="" title="Change the skype executable to be the script we just created" width="543" height="492" class="aligncenter size-full wp-image-1465" /></a></p>
<p>Repeat step 6, and the video should now work!</p>
<p>Wayno</p>
]]></content:encoded>
			<wfw:commentRss>http://pkill-9.com/logictech-quick-cam-work-skype-linux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to add a network printer in Debian/Ubuntu Linux</title>
		<link>http://pkill-9.com/add-network-printer-debianubuntu-linux/</link>
		<comments>http://pkill-9.com/add-network-printer-debianubuntu-linux/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 18:46:38 +0000</pubDate>
		<dc:creator>Wayno</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Linux Networking]]></category>
		<category><![CDATA[Printers/Printing]]></category>
		<category><![CDATA[Skill Level: Easy]]></category>
		<category><![CDATA[network printer]]></category>

		<guid isPermaLink="false">http://pkill-9.com/?p=1412</guid>
		<description><![CDATA[This is actually fairly easy, but there are a couple of tricks! 1. What is the IP address of that printer? The easy way is to scan for it! If you have not done so, install the arp-scan programme. Arp (Address Resolution Protocol) This will allow us to scan the network for all devices on [...]]]></description>
			<content:encoded><![CDATA[<p>This is actually fairly easy, but there are a couple of tricks!</p>
<p>1. What is the IP address of that printer?</p>
<p>The easy way is to scan for it!</p>
<p>If you have not done so, install the arp-scan programme. <a title="ARP" href="http://en.wikipedia.org/wiki/Address_Resolution_Protocol" target="_blank">Arp (Address Resolution Protocol)</a> This will allow us to scan the network for all devices on the network.</p>
<p><code><br />
sudo apt-get install arp-scan<br />
</code></p>
<p>2. Run arp-scan to see what&#8217;s on your network:</p>
<p><code><br />
sudo arp-scan --interface=eth0 --localnet<br />
</code></p>
<p>arp-scan MUST be run as root, so that&#8217;s why we do the sudo.<br />
We are limiting the search for anything we can reach, via our local ethernet connection.</p>
<p>You will get output that looks like:</p>
<p>$ sudo arp-scan &#8211;interface=eth0 &#8211;localnet<br />
Interface: eth0, datalink type: EN10MB (Ethernet)<br />
Starting arp-scan 1.6 with 256 hosts (http://www.nta-monitor.com/tools/arp-scan/)<br />
192.168.1.1 00:12:34:56:78:81 (Unknown)<br />
192.168.1.100 00:34:56:78:9a:5d Hewlett Packard<br />
192.168.1.104 00:46:cd:ef:49:b1 (Unknown)<br />
192.168.1.105 00:aa:bd:cb:d7:aa Roku, LLC</p>
<p>4 packets received by filter, 0 packets dropped by kernel<br />
Ending arp-scan 1.6: 256 hosts scanned in 1.421 seconds (180.15 hosts/sec). 4 responded<br />
$</p>
<p>Hmm. There&#8217;s something that says Hewlett Packard. Yup that&#8217;s my printer at address: 192.168.1.100</p>
<p>5. Go into: System/Administration/Printing and add your printer, if it is NOT already present. And follow the prompts for adding a printer. Almost done, couple of other chores.</p>
<p>6. Now click on Server and then Settings, and your screen should look like:</p>
<p><a href="http://pkill-9.com/wp-content/uploads/2011/12/network_printer_settings.jpg"><img src="http://pkill-9.com/wp-content/uploads/2011/12/network_printer_settings-e1323715168846.jpg" alt="" title="network_printer_settings" width="600" height="454" class="alignleft size-full wp-image-1436" /></a></p>
<p>7.  One last step.  Enable the printer, and enable it for sharing.  Also you may/may not want to set it as the default printer.  Single right click on the printer icon, and select/check Enabled/Sharing:</p>
<p><a href="http://pkill-9.com/wp-content/uploads/2011/12/enable_sharing_printer1.jpg"><img src="http://pkill-9.com/wp-content/uploads/2011/12/enable_sharing_printer1-e1323715484692.jpg" alt="" title="enable_sharing_printer" width="600" height="460" class="alignleft size-full wp-image-1440" /></a></p>
<p>8.  Repeat these steps on each computer that you want to add this network printer too.</p>
<p>Wayno</p>
]]></content:encoded>
			<wfw:commentRss>http://pkill-9.com/add-network-printer-debianubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 12.04 LTS Won&#8217;t Fit On a CD</title>
		<link>http://pkill-9.com/ubuntu-12-04-lts-fit-cd/</link>
		<comments>http://pkill-9.com/ubuntu-12-04-lts-fit-cd/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 07:08:03 +0000</pubDate>
		<dc:creator>Wayno</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[Skill Level: Easy]]></category>

		<guid isPermaLink="false">http://pkill-9.com/?p=1408</guid>
		<description><![CDATA[Ubuntu 12.04 LTS Won&#8217;t Fit On a CD Thanks guys! NOT! Alternatives? Plenty. 1. Linux Mint (good for n00bs) 2. Debian (for experienced users) Wayno]]></description>
			<content:encoded><![CDATA[<p><a href="http://linux.slashdot.org/story/11/11/05/0333225/ubuntu-1204-lts-wont-fit-on-a-cd?utm_source=rss1.0moreanon&#038;utm_medium=feed" title="Ubuntu 12.04 LTS will no longer fit on a cd" target="_blank">Ubuntu 12.04 LTS Won&#8217;t Fit On a CD</a></p>
<p>Thanks guys!  NOT!</p>
<p>Alternatives?  Plenty.</p>
<p>1.  <a href="http://www.linuxmint.com/" title="Linux Mint" target="_blank">Linux Mint (good for n00bs)</a></p>
<p>2.  <a href="http://www.debian.org/" title="Debian" target="_blank">Debian (for experienced users)</a></p>
<p>Wayno</p>
]]></content:encoded>
			<wfw:commentRss>http://pkill-9.com/ubuntu-12-04-lts-fit-cd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>25 worst passwords &#8212; how to change your password in Linux</title>
		<link>http://pkill-9.com/25-worst-passwords-change-password-linux/</link>
		<comments>http://pkill-9.com/25-worst-passwords-change-password-linux/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 17:01:02 +0000</pubDate>
		<dc:creator>Wayno</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Skill Level: Easy]]></category>
		<category><![CDATA[change password]]></category>
		<category><![CDATA[passwords]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://pkill-9.com/?p=1405</guid>
		<description><![CDATA[Noob thing. Might be interesting to find out if your password is on the list. The top 25 worst passwords. How do you change your password? :~$ passwd You will get output that looks like: Changing password for (youruserid) (current) UNIX password: Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully :~$ [...]]]></description>
			<content:encoded><![CDATA[<p>Noob thing.</p>
<p>Might be interesting to find out if your password is on the list.</p>
<p><a href="http://mashable.com/2011/11/17/worst-internet-passwords/" title="25 Worst Passwords" target="_blank">The top 25 worst passwords.</a></p>
<p>How do you change your password?</p>
<p><code><br />
:~$ passwd<br />
</code></p>
<p>You will get output that looks like:</p>
<p>Changing password for (youruserid)<br />
(current) UNIX password:<br />
Enter new UNIX password:<br />
Retype new UNIX password:<br />
passwd: password updated successfully<br />
:~$ </p>
<p>Wayno</p>
]]></content:encoded>
			<wfw:commentRss>http://pkill-9.com/25-worst-passwords-change-password-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to label an ms dos Flash Drive or Micro SD card using mtools in Linux</title>
		<link>http://pkill-9.com/label-ms-dos-flash-drive-micro-sd-card-mtools-linux/</link>
		<comments>http://pkill-9.com/label-ms-dos-flash-drive-micro-sd-card-mtools-linux/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 02:08:41 +0000</pubDate>
		<dc:creator>Wayno</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Misc. other devices/things]]></category>
		<category><![CDATA[Skill Level: Easy]]></category>
		<category><![CDATA[Skill Level: Medium]]></category>
		<category><![CDATA[micro sd]]></category>
		<category><![CDATA[ms-dos]]></category>
		<category><![CDATA[msdos]]></category>
		<category><![CDATA[usb]]></category>
		<category><![CDATA[volume label]]></category>

		<guid isPermaLink="false">http://pkill-9.com/?p=1393</guid>
		<description><![CDATA[The information on how to label an ms-dos formatted drive seems scattered across the internet, and might seem overwhelming at first. But it&#8217;s not too hard. Here&#8217;s my recipe! 1. If not already installed, install the mtools package. This is an open source package for manipulating ms-dos file systems, under Linux. to do that simply [...]]]></description>
			<content:encoded><![CDATA[<p>The information on how to label an <a href="http://en.wikipedia.org/wiki/Vfat" title="vfat" target="_blank">ms-dos formatted drive</a> seems scattered across the internet, and might seem overwhelming at first.  But it&#8217;s not too hard.  Here&#8217;s my recipe!</p>
<p>1.  If not already installed, install the<a href="http://en.wikipedia.org/wiki/Mtools" title="Mtools" target="_blank"> mtools package.</a>  This is an open source package for manipulating ms-dos file systems, under Linux.</p>
<p>to do that simply install the package:</p>
<p><code><br />
sudo apt-get install mtools<br />
</code></p>
<p>We&#8217;re half way there!</p>
<p>2.  Let&#8217;s insert that <a href="http://en.wikipedia.org/wiki/USB_flash_drive" title="USB Flash Drive" target="_blank">flash drive,</a> thumb drive, <a href="n.wikipedia.org/wiki/Micro_SD" title="Micro SD Card" target="_blank">micro sd card</a> or whatever it&#8217;s called.</p>
<p>3.  Most systems should auto-mount the drive.  If not, view this article, on <a href="http://pkill-9.com/mount-usb-micro-sd-card-linux-automount/" title="How to mount a usb or mcro sd card." target="_blank">how to mount a usb or micro-sd card.</a></p>
<p>4.  We&#8217;ll use </p>
<p><code><br />
sudo blkid<br />
</code></p>
<p>to get the device id!</p>
<p>$ sudo blkid<br />
[sudo] password for : </p>
<p>/dev/sde1: LABEL=&#8221;" UUID=&#8221;1B44-206B&#8221; TYPE=&#8221;vfat&#8221; </p>
<p>That&#8217;s the guy I want!  sde1!  Your device WILL probably have a different device name.</p>
<p>5.  Let&#8217;s fix /etc/mtools.conf first.</p>
<p>using your favourite editor (nano in my case) let&#8217;s change mtools.</p>
<p>as always the # (octothorpe) is a comment and need NOT be coded.</p>
<p><code><br />
cd /etc     # change to the /etc directory<br />
sudo cp mtools.conf mtools.conf.org     # make a backup of the current file<br />
sudo nano mtools.conf     # edit the mtools.conf file<br />
</code></p>
<p>add a line at the bottom which reads:</p>
<p><code><br />
drive p: file="/dev/sde1"<br />
</code></p>
<p>control+O (OH) to write, and then control x to exit.  Again, your device name, might be different.</p>
<p>do a<br />
<code><br />
cd ~     # change back to my home directory<br />
</code></p>
<p>to get back to your home directory, after editing /etc/mtools.conf.</p>
<p>6.  So now I try to label the drive, p:  but I get:</p>
<p>nwayno@Homer:~$ sudo mlabel p:WAYNOFLSH<br />
Total number of sectors (1957888) not a multiple of sectors per track (62)!<br />
Add mtools_skip_check=1 to your .mtoolsrc file to skip this test</p>
<p>Oh-oh!  It turns out the it tells you how to fix the problem right there, but it may not be obvious.  (All this to label an ms-dos drive under Linux?  YES, unfortunately!)</p>
<p>Using your favourite editor, create .mtoolsrc (yes the period at the beginning is important!)<br />
and add the line:</p>
<p>mtools_skip_check=1</p>
<p>to the file.  Save and exit.  Again, all this is not hard, it&#8217;s just a pain.  </p>
<p>7.  Let&#8217;s try again!</p>
<p>$ sudo mlabel p:WAYNOBKFLSH<br />
$ df -h<br />
Filesystem            Size  Used Avail Use% Mounted on</p>
<p>/dev/sde1             955M  203M  752M  22% /media/WAYNOBKFLSH</p>
<p>8.  Flush the buffers with sync</p>
<p><code><br />
sync<br />
</code></p>
<p>Mission accomplished!</p>
<p>Look Ma, I didn&#8217;t have to use Windows, after all!</p>
<p>Wayno </p>
]]></content:encoded>
			<wfw:commentRss>http://pkill-9.com/label-ms-dos-flash-drive-micro-sd-card-mtools-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Mint:  The new Ubuntu?</title>
		<link>http://pkill-9.com/linux-mint-ubuntu/</link>
		<comments>http://pkill-9.com/linux-mint-ubuntu/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 23:34:56 +0000</pubDate>
		<dc:creator>Wayno</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[Skill Level: Easy]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Linux Mint]]></category>

		<guid isPermaLink="false">http://pkill-9.com/?p=1386</guid>
		<description><![CDATA[This is a very relevant article to the Ubuntu and Unity debate, vs other Linux distributions, especially, Linux Mint. Linux Mint: The new Ubuntu? Personally, I am on Debian Squeeze. Very solid, but NOT for n00bs. Tad difficult to configure. Wayno]]></description>
			<content:encoded><![CDATA[<p>This is a very relevant article to the Ubuntu and Unity debate, vs other Linux distributions, especially, <a href="http://www.linuxmint.com/" title="Linux Mint" target="_blank">Linux Mint.</a></p>
<p><a href="http://linux.slashdot.org/story/11/11/11/1752226/linux-mint-the-new-ubuntu?utm_source=rss1.0moreanon&#038;utm_medium=feed" title="Linux Mint:  The new Ubuntu?" target="_blank">Linux Mint:  The new Ubuntu?</a></p>
<p>Personally, I am on Debian Squeeze.  Very solid, but NOT for n00bs.  Tad difficult to configure.</p>
<p>Wayno</p>
]]></content:encoded>
			<wfw:commentRss>http://pkill-9.com/linux-mint-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

