<?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>cpradio's tidbits of information &#187; Ubuntu</title>
	<atom:link href="http://cpradio.org/categories/linux/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://cpradio.org</link>
	<description>my life experience and information that may help others find what they need</description>
	<lastBuildDate>Sat, 05 Sep 2009 12:38:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Local Printer Support via RDP (Remote Desktop)</title>
		<link>http://cpradio.org/personal/local-printer-support-via-rdp-remote-desktop/</link>
		<comments>http://cpradio.org/personal/local-printer-support-via-rdp-remote-desktop/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 00:39:27 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[printer]]></category>
		<category><![CDATA[rdesktop]]></category>

		<guid isPermaLink="false">http://cpradio.org/?p=165</guid>
		<description><![CDATA[For those wanting to support a local printer connected to their Linux system via RDP (Remote Desktop) connecting to a Windows server, here is a quick how-to.

First look up the Printer Name on your Linux box, it is best if it is a single word and under 20 characters.  You can typically find this [...]]]></description>
			<content:encoded><![CDATA[<p>For those wanting to support a local printer connected to their Linux system via RDP (Remote Desktop) connecting to a Windows server, here is a quick how-to.</p>
<ol>
<li>First look up the Printer Name on your Linux box, it is best if it is a single word and under 20 characters.  You can typically find this by opening a document, selecting Print and it should be the name in the drop down.</li>
<li>Next you will have a script that call rdesktop like so:<br />
<code>rdesktop -r printer:&lt;YOUR PRINTER NAME ON LINUX&gt;="WINDOWS DRIVER NAME AS IT APPEARS IN ADD PRINTER" &lt;YOUR SERVER IP ADDRESS&gt;</code></li>
<li>Run the rdesktop script and login</li>
<li>Go to Printers and Faxes</li>
<li>Right-click on the Printer that matches your Linux printer&#8217;s name and choose Properties</li>
<li>Print a test page!</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/personal/local-printer-support-via-rdp-remote-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup a Hard Drive over the Network</title>
		<link>http://cpradio.org/linux/backup-a-hard-drive-over-the-network/</link>
		<comments>http://cpradio.org/linux/backup-a-hard-drive-over-the-network/#comments</comments>
		<pubDate>Sat, 18 Aug 2007 00:52:30 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cpradio.org/linux/backup-a-hard-drive-over-the-network/</guid>
		<description><![CDATA[This is a technique I constantly forget when I absolutely need it, and so I am going to post it for future reference as I hate trying to figure out over and over again.
So here is the big secret.  First get a Linux distrobution that allows you to use a Live CD.  Boot [...]]]></description>
			<content:encoded><![CDATA[<p>This is a technique I constantly forget when I absolutely need it, and so I am going to post it for future reference as I hate trying to figure out over and over again.</p>
<p>So here is the big secret.  First get a Linux distrobution that allows you to use a Live CD.  Boot up the computer you wish to backup with the Live CD.  While that is happening, get on your primary PC (that is hopefully running Linux) and type the following command and run it:<br />
<code>netcat -l -p 1234 | dd of=backup.img bs=16065b</code></p>
<p>Once the Live CD is booted, start up the terminal/konsole and run the following (must be ran after the prior command):<br />
<code>sudo dd if=&lt;hard drive partition to backup&gt; bs=16065b | netcat &lt;linux PC's IP Address&gt; 1234</code></p>
<p>That&#8217;s it!  It will now backup the hard drive partition you selected on the PC running the Live CD.  So easy!</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/linux/backup-a-hard-drive-over-the-network/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Disk Full</title>
		<link>http://cpradio.org/linux/disk-full/</link>
		<comments>http://cpradio.org/linux/disk-full/#comments</comments>
		<pubDate>Tue, 20 Feb 2007 02:49:06 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cpradio.org/linux/disk-full/</guid>
		<description><![CDATA[For anyone who uses Linux, especially Ubuntu or Kubuntu, you will want to read this!  I personally hate how Ubuntu and Kubuntu setup my partitions.  They typically setup two partitions, the swap, and the rest of the hard drive.  I personally prefer to have a partition for the following: / /boot /usr [...]]]></description>
			<content:encoded><![CDATA[<p>For anyone who uses Linux, especially Ubuntu or Kubuntu, you will want to read this!  I personally hate how Ubuntu and Kubuntu setup my partitions.  They typically setup two partitions, the swap, and the rest of the hard drive.  I personally prefer to have a partition for the following: / /boot /usr /var /tmp swap.</p>
<p>Now, the reason I hate how Ubuntu and Kubuntu do this, is it is very easy to fill up the entire drive and not know where the bulk of the data is.  With separate partitions, when one fills, you know what caused it, or more specifically, what folder is growing too large.  I use several development packages and pull down the source to a lot of packages for experimental use, and so a 160 GB drive can fill up fast.  With that said, partitioning things out allows me to quickly identify where I need to allocate more storage, and put in a new drive to handle it.</p>
<p>I wish Ubuntu and Kubuntu would allow the Guided Partioning that Debian allows under expert mode to create a multi-partition setup.</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/linux/disk-full/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Remote Access in KDE</title>
		<link>http://cpradio.org/personal/remote-access-in-kde/</link>
		<comments>http://cpradio.org/personal/remote-access-in-kde/#comments</comments>
		<pubDate>Mon, 15 Jan 2007 00:44:35 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cpradio.org/2007/01/14/remote-access-in-kde/</guid>
		<description><![CDATA[I have been looking for a way to login to my other PCs which have no monitors, and for the most part SSH works fine, but lately I have found myself wanting to create more of a testing environment setup without using a Virual Machine.  Enter &#8216;Remote Connection using XDMCP&#8217;. 
There are a few [...]]]></description>
			<content:encoded><![CDATA[<p>I have been looking for a way to login to my other PCs which have no monitors, and for the most part SSH works fine, but lately I have found myself wanting to create more of a testing environment setup without using a Virual Machine.  Enter &#8216;Remote Connection using XDMCP&#8217;. </p>
<p>There are a few things you have to do to the machine you wish to login to first before you can use this nice feature.  First of all you need to modify the /etc/kde3/kdm/kdmrc file and set make sure you have the following:<br />
[code]<br />
[Xdmcp]<br />
# Whether KDM should listen to incoming XDMCP requests.<br />
# Default is true<br />
Enable=true<br />
# The UDP port on which KDM should listen for XDMCP requests. Do not change.<br />
# Default is 177<br />
Port=177<br />
# File with the private keys of X-terminals. Required for XDM authentication.<br />
# Default is ""<br />
KeyFile=/etc/kde3/kdm/kdmkeys<br />
# XDMCP access control file in the usual XDM-Xaccess format.<br />
# Default is "/etc/kde3/kdm/Xaccess"<br />
Xaccess=/etc/kde3/kdm/Xaccess<br />
# Number of seconds to wait for display to respond after the user has<br />
# selected a host from the chooser.<br />
# Default is 15<br />
#ChoiceTimeout=10<br />
# Strip domain name from remote display names if it is equal to the local<br />
# domain.<br />
# Default is true<br />
#RemoveDomainname=false<br />
# Use the numeric IP address of the incoming connection on multihomed hosts<br />
# instead of the host name.<br />
# Default is false<br />
#SourceAddress=true<br />
# The program which is invoked to dynamically generate replies to XDMCP<br />
# DirectQuery or BroadcastQuery requests.<br />
# If empty, no program is invoked and "Willing to manage" is sent.<br />
# Default is ""<br />
Willing=/etc/kde3/kdm/Xwilling<br />
[/code]</p>
<p>Next you need to modify the /etc/kde3/kdm/Xaccess file.  For ease of use, I made it so any host (&#8216;*&#8217;) can connect and the CHOOSER BROADCAST was set to &#8216;*&#8217;.</p>
<p>Once you have that finished, you then must restart KDM.  From the command line or the TTY login, run &#8220;sudo /etc/init.d/kdm restart&#8221;.</p>
<p>Now you can login to the remote machine using XDMCP.  Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/personal/remote-access-in-kde/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.210 seconds -->
