<?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>Debian Archives - VirtJunkie</title>
	<atom:link href="/category/debian/feed/" rel="self" type="application/rss+xml" />
	<link>/category/debian/</link>
	<description>Virtualization, Automation, and anything else that might be on my mind</description>
	<lastBuildDate>Tue, 30 May 2006 11:04:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.2</generator>

<image>
	<url>/wp-content/uploads/2020/04/cropped-vj4-150x150.png</url>
	<title>Debian Archives - VirtJunkie</title>
	<link>/category/debian/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>HowTo: Mount Bin/Cue files in Linux</title>
		<link>/2006/05/30/howto_mount_bincue_files_in_linux/</link>
					<comments>/2006/05/30/howto_mount_bincue_files_in_linux/#comments</comments>
		
		<dc:creator><![CDATA[Jon]]></dc:creator>
		<pubDate>Tue, 30 May 2006 11:04:28 +0000</pubDate>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<guid isPermaLink="false">http://www.jonhoweonline.com/blog/?p=77</guid>

					<description><![CDATA[<p>Okay, so I I lied a little bit. I&#8217;m not sure how to mount a straight bin/cue file combination in Linux, but I do know that it&#8217;s really easy to convert them into an ISO file, and then mount the ISO in debian based linux. sudo apt-get install bchunk The syntax from bchunk is as [&#8230;]</p>
<p>The post <a href="/2006/05/30/howto_mount_bincue_files_in_linux/">HowTo: Mount Bin/Cue files in Linux</a> appeared first on <a href="/">VirtJunkie</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Okay, so I I lied a little bit.  I&#8217;m not sure how to mount a straight bin/cue file combination in Linux, but I do know that it&#8217;s really easy to convert them into an ISO file, and then mount the ISO in debian based linux.</p>
<p><code>sudo apt-get install bchunk</code></p>
<p>The syntax from bchunk is as follows:<br />
<cite>bchunk [-v] [-p] [-r] [-w] [-s]   </cite></p>
<p>So if i wanted to convert image,bin and image.cue into image.iso, I&#8217;d run the command:<br />
<code>bchunk image.bin image.cue image.iso</code></p>
<p>Then to mount the ISO in linux you run the command:<br />
<code>mount -o loop -t iso9660 image.iso /mnt/image</code>, where image.iso is the iso is the image that you want to mount and /mnt/image is the mount directory.</p>
<p>Hopefully you&#8217;ll find a use for this like I did.   If it doesnt work feel free to leave me an email at howe -dot- jon -at- gmail -dot- com and I&#8217;ll respond as quick as I can.</p>
<p>Later,<br />
Jon Howe<br />
<!--adsense#inContent--></p>
<p>The post <a href="/2006/05/30/howto_mount_bincue_files_in_linux/">HowTo: Mount Bin/Cue files in Linux</a> appeared first on <a href="/">VirtJunkie</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>/2006/05/30/howto_mount_bincue_files_in_linux/feed/</wfw:commentRss>
			<slash:comments>12</slash:comments>
		
		
			</item>
		<item>
		<title>Howto: Set Up Your Own Snort Intrusion Detection System with a Database Backend</title>
		<link>/2006/03/29/howto_set_up_your_own_snort_intrusion_detection_system_with_a_database_backend/</link>
					<comments>/2006/03/29/howto_set_up_your_own_snort_intrusion_detection_system_with_a_database_backend/#respond</comments>
		
		<dc:creator><![CDATA[Jon]]></dc:creator>
		<pubDate>Wed, 29 Mar 2006 15:04:10 +0000</pubDate>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<guid isPermaLink="false">http://www.jonhoweonline.com/blog/?p=66</guid>

					<description><![CDATA[<p>Okay, truth told, I&#8217;m completely bored, so I&#8217;m going to write a quick tutorial on how to install and set up the Snort IDS on a Debian Sarge System (although it should work on other distros as well). Download and Install Snort apt-get install snort-mysql Enter values in the following screen, but forget about the [&#8230;]</p>
<p>The post <a href="/2006/03/29/howto_set_up_your_own_snort_intrusion_detection_system_with_a_database_backend/">Howto: Set Up Your Own Snort Intrusion Detection System with a Database Backend</a> appeared first on <a href="/">VirtJunkie</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Okay, truth told, I&#8217;m completely bored, so I&#8217;m going to write a quick tutorial on how to install and set up the Snort IDS on a Debian Sarge System (although it should work on other distros as well).</p>
<p><strong>Download and Install Snort</strong><br />
<code>apt-get install snort-mysql</code></p>
<p><cite>Enter values in the following screen, but forget about the part about the database</cite><br />
<code>cd /usr/share/doc/snort-mysql</code><br />
<code>mysqladmin -u <user> -p create <snort-database-name></code><br />
<code>zcat create_mysql.gz | mysql -u <user> -p <snort-database-name></code></p>
<p>The post <a href="/2006/03/29/howto_set_up_your_own_snort_intrusion_detection_system_with_a_database_backend/">Howto: Set Up Your Own Snort Intrusion Detection System with a Database Backend</a> appeared first on <a href="/">VirtJunkie</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>/2006/03/29/howto_set_up_your_own_snort_intrusion_detection_system_with_a_database_backend/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Howto: Get a Movie from a DVD to your Sony Clie (and probably other PDA’s as well)</title>
		<link>/2006/03/08/howto_get_a_movie_from_a_dvd_to_your_sony_clie_and_probably_other_pdas_as_well/</link>
					<comments>/2006/03/08/howto_get_a_movie_from_a_dvd_to_your_sony_clie_and_probably_other_pdas_as_well/#respond</comments>
		
		<dc:creator><![CDATA[Jon]]></dc:creator>
		<pubDate>Wed, 08 Mar 2006 11:56:10 +0000</pubDate>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<guid isPermaLink="false">http://www.jonhoweonline.com/blog/?p=63</guid>

					<description><![CDATA[<p>I&#8217;ll try to make this as simple as possible. I&#8217;m going to assume that you&#8217;re using Linux (and that you are not a complete noob at it) for this tutorial. I will assume that you&#8217;re using a Sony Clie. Here&#8217;s an overview of what we&#8217;re going to do: Rip dvd using DVD:Rip Convert ripped movie [&#8230;]</p>
<p>The post <a href="/2006/03/08/howto_get_a_movie_from_a_dvd_to_your_sony_clie_and_probably_other_pdas_as_well/">Howto: Get a Movie from a DVD to your Sony Clie (and probably other PDA’s as well)</a> appeared first on <a href="/">VirtJunkie</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I&#8217;ll try to make this as simple as possible.</p>
<p>I&#8217;m going to assume that you&#8217;re using Linux (and that you are not a complete noob at it) for this tutorial. I will assume that you&#8217;re using a Sony Clie.</p>
<p>Here&#8217;s an overview of what we&#8217;re going to do:</p>
<ol>
<li>Rip dvd using DVD:Rip</li>
<li>Convert ripped movie into a clie compatible format</li>
<li>Download and install TCPMP (free media player)</li>
<li>(optional) Install Memory Stick Pro fix</li>
<li>Copy Movie to the Memory Stick</li>
</ol>
<p><strong>Step 1: Download and Install Files</strong><br />
<em>apt-get install dvdrip</em><br />
<em>apt-get install pilot-link</em><br />
<em><a href="http://tcpmp.corecodec.org/download">Download TCMP (for palm)</a></em><br />
<em>Download all attachments</em></p>
<p><strong>Step 2: Rip DVD</strong><br />
<em>Encode with the xvid4 codec</em><br />
<em>Set file size to One CD at 700Mb</em><br />
<em>The only reason that I have this step is because I like to watch the video in high quality on my desktop</em></p>
<p><strong>Step 3: Convert ripped DVD to Palm Readable Format</strong><br />
<em>Put the following into a script called vid2palm and make it executable</em></p>
<p><code><br />
#!/bin/sh<br />
#Change 480:320 to the size of your PDA screen<br />
#480:320 works for the Sony Clie</code></p>
<p>nice mencoder $1 -vf scale=480:320 -ovc xvid -xvidencopts bitrate=300 -oac mp3lame -lameopts cbr:br=64 -o $2<br />
So, if dvdrip created the file MyMovie.avi you&#8217;d run the command <em>vid2palm MyMovie.avi MyMovie_Palm_Format.avi</em></p>
<p><strong>Step 4: Install files on your Clie</strong><br />
This can be a little tricky for someone doing it for the first time, but after a couple of times it works great.</p>
<p>The syntax for installing a palm file is:<br />
<em>pilot-xfer /dev/pilot -i [File to be installed]</em></p>
<p>However, If you just run this command it won&#8217;t work.  You first need to hit the hotsync button and then quickly run the previous command.</p>
<p>If you do this and the console says to press the hotsync button, just hit cancel on your clie, and terminate the command, and try again.  It&#8217;s been a bit of hit-and-miss for me.</p>
<p>Files to install on the PDA from the TCPMP Archive:</p>
<li>pilot-xfer /dev/pilot -i tcpmp_ffmpeg_plugin.prc</li>
<li>pilot-xfer /dev/pilot -i tcpmp_mp3_plugin.prc</li>
<li>pilot-xfer /dev/pilot -i tcpmp_mpeg4_plugin.prc</li>
<li>pilot-xfer /dev/pilot -i tcpmp.prc</li>
<li>As well as the attached tcpmp_aac_plugin.prc</li>
<p>If your memory card is a memory stick <strong>pro</strong> it will not work by default with the clie, so you have to install a fix for it (it&#8217;s the MSPRONX_ENUS.PRC one):<br />
<em>pilot-xfer /dev/pilot -i MSPRONX_ENUS.PRC</em></p>
<p>Sound doesn&#8217;t work by default on mine either, I had to install the following patch (again, an attachment: MCA2_05_TEST.prc):<br />
<em>pilot-xfer /dev/pilot -i MCA2_05_TEST.prc</em></p>
<p>You need to set up this plugin by going to prefrences and then  in the drop down menu select MCA2, and check the button &#8220;auto install after reset&#8221;.  It will restart, then go back to the same area and select &#8220;DEFAULT is ON (normal)&#8221;.</p>
<p><strong>Step 5: Moving the finished product to your Memory Stick (pro)</strong><br />
First, goto MS Import.  If you have a newer distro / kde it will mount the flash drive as a local directory.  If it doesnt, use the &#8220;mount&#8221; command to mount it.  I assume that you know how to do this (if you don&#8217;t try &#8220;man mount&#8221;).</p>
<p>Now it&#8217;s a bit of a waiting game.  Once it looks like it&#8217;s done copying unmount the device in linux first, wait a minute, and then disconnect in MS Import.</p>
<p><strong>Step 6: Play the Movie</strong><br />
Goto TCPMP, open, and play your movie!</p>
<p>This is how I did it, after a week or so of trying.</p>
<p>If you have any questions leave a comment or email me (howe -dot- jon -at- gmail -dot- com.</p>
<p>Later,<br />
Jon Howe</p>
<p>The post <a href="/2006/03/08/howto_get_a_movie_from_a_dvd_to_your_sony_clie_and_probably_other_pdas_as_well/">Howto: Get a Movie from a DVD to your Sony Clie (and probably other PDA’s as well)</a> appeared first on <a href="/">VirtJunkie</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>/2006/03/08/howto_get_a_movie_from_a_dvd_to_your_sony_clie_and_probably_other_pdas_as_well/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Howto: Kernel Building in Debian Sarge (3.1)</title>
		<link>/2006/01/25/howto_kernel_building_in_debian_sarge_3_1/</link>
					<comments>/2006/01/25/howto_kernel_building_in_debian_sarge_3_1/#respond</comments>
		
		<dc:creator><![CDATA[Jon]]></dc:creator>
		<pubDate>Wed, 25 Jan 2006 07:36:37 +0000</pubDate>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<guid isPermaLink="false">http://www.jonhoweonline.com/blog/?p=59</guid>

					<description><![CDATA[<p>I&#8217;ve tried and tried to build my own custom kernel over the past year or so, usually only to stop in frustration because of some small part of the process not working. This is all different now. I found out that using the took make-kpkg makes things way easier. In fact I configured, compiled, and [&#8230;]</p>
<p>The post <a href="/2006/01/25/howto_kernel_building_in_debian_sarge_3_1/">Howto: Kernel Building in Debian Sarge (3.1)</a> appeared first on <a href="/">VirtJunkie</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I&#8217;ve tried and tried to build my own custom kernel over the past year or so, usually only to stop in frustration because of some small part of the process not working.</p>
<p>This is all different now.</p>
<p>I found out that using the took make-kpkg makes things way easier.  In fact I configured, compiled, and installed kernel 2.6.15 in about 30 minutes including the time that it took me to build it.</p>
<p>Here&#8217;s the process that I followed to achieve this:</p>
<ol>
<li>Get required packages <code>apt-get install libncurses5-dev fakeroot bzip2 kernel-package</code></li>
<li>Get latest kernel package from <a href="http://www.kernel.org/">Kernel.org</a>.  The latest one at the time of this post is linux-2.6.15.tar.bz2.</li>
<li>Decompress the kernel archive (<code>tar -xjvf linux-2.6.15.tar.bz2</code>)</li>
<li>Start the kernel configuration tool (<code>make menuconfig</code>)</li>
<p>I should mention that it was way easier for me to load my existing kernel configuration, which was located at <code>/boot/config-(kernel version here)</code>.</p>
<li>make-kpkg clean</li>
<li>fakeroot make-kpkg &#8211;initrd &#8211;revision=myfirstkernelbuild_v.0.1 kernel_image</li>
<p>This runs make-kpkg as root, while making it so that initrd can load the kernekl.  &#8211;revision is just the revision of the kernel, and kernel_image is just the name of the kernel that you&#8217;re building.</p>
<p>The output of this command is kernel-image-2.6.15_myfirstkernelbuild_v.0.1.deb</p>
<li>Install the kernel (<code>dpkg -i kernel-image-2.6.15_myfirstkernelbuild_v.0.1.deb</code>)</li>
<li>Restart the computer (<code>init 6</code>)</li>
<p>If this process worked the output of <code>uname -r</code> should be 2.6.15.</p>
<p>Let me know if you have any problems.</p>
<p>Later,<br />
Jon Howe</p>
<p>The post <a href="/2006/01/25/howto_kernel_building_in_debian_sarge_3_1/">Howto: Kernel Building in Debian Sarge (3.1)</a> appeared first on <a href="/">VirtJunkie</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>/2006/01/25/howto_kernel_building_in_debian_sarge_3_1/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Convert RPM to Deb + News</title>
		<link>/2006/01/12/convert_rpm_to_deb___news/</link>
					<comments>/2006/01/12/convert_rpm_to_deb___news/#respond</comments>
		
		<dc:creator><![CDATA[Jon]]></dc:creator>
		<pubDate>Thu, 12 Jan 2006 08:57:10 +0000</pubDate>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<guid isPermaLink="false">http://www.jonhoweonline.com/blog/?p=55</guid>

					<description><![CDATA[<p>I found a few cool things this morning. The first being a way to install a rpm file in Debian. You do this using the alien command (apt-get install alien). To convert a package from an rpm to a deb run the following command: alias --to-deb To just install a rpm use the following command: [&#8230;]</p>
<p>The post <a href="/2006/01/12/convert_rpm_to_deb___news/">Convert RPM to Deb + News</a> appeared first on <a href="/">VirtJunkie</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I found a few cool things this morning.</p>
<p>The first being a way to install a rpm file in Debian.  You do this using the alien command (<strong>apt-get install alien</strong>).</p>
<p>To convert a package from an rpm to a deb run the following command:<br />
<code>alias --to-deb <rpm name></code></p>
<p>To just install a rpm use the following command:<br />
<code>alias -i <rpm name></p>
<p>It's that easy.</p>
<p>Also, I was looking at some stories on the front page of <a href="http://digg.com/">Digg</a>, and found a <a href="http://www.andrewtheken.com/?page=GMapsClass">Great New Library</a> for use with Google Maps.  It has the features of the one that I was messing around with earlier (I forgot the name of it).  It even includes the features that I had to add inot the other library.</p>
<p>Who knows, you might be getting a little tutorial on how to use this library soon.</p>
<p>Later,<br />
Jon Howe</p>
<p>The post <a href="/2006/01/12/convert_rpm_to_deb___news/">Convert RPM to Deb + News</a> appeared first on <a href="/">VirtJunkie</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>/2006/01/12/convert_rpm_to_deb___news/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Cache Apt Packages On A Network Using Apt-Cacher</title>
		<link>/2006/01/10/how_to_cache_apt_packages_on_a_network_using_apt-cacher/</link>
					<comments>/2006/01/10/how_to_cache_apt_packages_on_a_network_using_apt-cacher/#respond</comments>
		
		<dc:creator><![CDATA[Jon]]></dc:creator>
		<pubDate>Tue, 10 Jan 2006 22:06:41 +0000</pubDate>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<guid isPermaLink="false">http://www.jonhoweonline.com/blog/?p=54</guid>

					<description><![CDATA[<p>If you&#8217;ve got more than one computer running Debian that packages are downloaded through apt, then apt-cacher should help you a lot. Apt-cacher is actually a cgi script that is run by apache. Using apt-cacher is very easy, and installing it is even easier. Step 1: Install apt-cacher. (Run this on the proxy computer) apt-get [&#8230;]</p>
<p>The post <a href="/2006/01/10/how_to_cache_apt_packages_on_a_network_using_apt-cacher/">How To Cache Apt Packages On A Network Using Apt-Cacher</a> appeared first on <a href="/">VirtJunkie</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If you&#8217;ve got more than one computer running Debian that packages are downloaded through apt, then apt-cacher should help you a lot.</p>
<p>Apt-cacher is actually a cgi script that is run by apache.  Using apt-cacher is very easy, and installing it is even easier.</p>
<p><strong>Step 1: Install apt-cacher.</strong><br />
(Run this on the proxy computer)</p>
<p><code>apt-get install apt-cacher</code></p>
<p>Enter the webpage : <strong>http://localhost/apt-cacher</strong><br />
to see that the proxy is running.</p>
<p><strong>Step 2: Backup and Convert Clients sources.list.</strong><br />
(Do this on the computers that you want to access the cache.)</p>
<p><code>cp /etc/apt/sources.list /etc/apt/sources.list.backup</code></p>
<p><code>vi /etc/apt/sources.list</code></p>
<p>Press &#8216;:&#8217; while in vi.</p>
<p>Enter &#8220;<code>%s/ Proxy IP]/apt-cacher?//g</code>&#8221;</p>
<p>This searches through your sources and adds http://[Your/ Proxy IP]/apt-cacher?/ before every repository.</p>
<p>An example from my sources.list looks like this:</p>
<p><code>deb http://192.168.3.2/apt-cacher?/www.backports.org/debian/ sarge-backports main</code></p>
<p><strong>Step 3: Update Clients</strong></p>
<p><code>apt-get update</code></p>
<p><strong>Optional Step 4: Import Existing packages into the apt-cacher cache</strong></p>
<p>Copy the desired packages to the proxy directory <strong>/var/cache/apt-cacher/import</strong></p>
<p>Run the import script to make it so that apt-cacher can use them.<br />
<code>perl /usr/share/apt-cacher/apt-cacher-import.pl</code></p>
<p><strong>Step 5: Use apt-get</strong></p>
<p>If the required previous steps completed successfully you should now be able to use apt with it&#8217;s connection proxied through your apt-cacher proxy.</p>
<p>Questions / Comments, leave me a comment, and I&#8217;ll reply.</p>
<p>Later,<br />
Jon Howe</p>
<p>The post <a href="/2006/01/10/how_to_cache_apt_packages_on_a_network_using_apt-cacher/">How To Cache Apt Packages On A Network Using Apt-Cacher</a> appeared first on <a href="/">VirtJunkie</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>/2006/01/10/how_to_cache_apt_packages_on_a_network_using_apt-cacher/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Chkconfig like program in Debian</title>
		<link>/2005/12/16/chkconfig_like_program_in_debian/</link>
					<comments>/2005/12/16/chkconfig_like_program_in_debian/#respond</comments>
		
		<dc:creator><![CDATA[Jon]]></dc:creator>
		<pubDate>Fri, 16 Dec 2005 12:05:46 +0000</pubDate>
				<category><![CDATA[Debian]]></category>
		<guid isPermaLink="false">http://www.jonhoweonline.com/blog/?p=46</guid>

					<description><![CDATA[<p>I started out in Linux using Fedora, which is Redhat based. One of the indespensible tools that I used was called chkconfig. Basically what chkconfig does in Redhat based systems is allow the user to control what daemons start at boot time. This is useful for starting that annoying daemon that you always need or [&#8230;]</p>
<p>The post <a href="/2005/12/16/chkconfig_like_program_in_debian/">Chkconfig like program in Debian</a> appeared first on <a href="/">VirtJunkie</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I started out in Linux using Fedora, which is Redhat based.  One of the indespensible tools that I used was called chkconfig.  Basically what chkconfig does in Redhat based systems is allow the user to control what daemons start at boot time.  This is useful for starting that annoying daemon that you always need or stopping the pesky one that always bothers you.</p>
<p>I used this a ton, and then I switched to Debian, and my whole world turned upside down. (some exaggeration intended)</p>
<p>Until recently I had no idea how to do this, until I found out about a little gem called &#8216;rcconf&#8217;.</p>
<p>Rcconf even has a little optional graphical display that you can use to manually select things to autostart or stop, which is helpful if you don&#8217;t know what it is you&#8217;re looking for.</p>
<p>If you&#8217;re on a pretty new installation of Debian you probably don&#8217;t have this yet, but you can get it by entering <code>apt-get install rcconf</code> into the console as root.</p>
<p>More Later,<br />
Jon Howe</p>
<p>The post <a href="/2005/12/16/chkconfig_like_program_in_debian/">Chkconfig like program in Debian</a> appeared first on <a href="/">VirtJunkie</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>/2005/12/16/chkconfig_like_program_in_debian/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Problems when running apt-get on Debian</title>
		<link>/2005/12/06/problems_when_running_apt-get_on_debian/</link>
					<comments>/2005/12/06/problems_when_running_apt-get_on_debian/#respond</comments>
		
		<dc:creator><![CDATA[Jon]]></dc:creator>
		<pubDate>Wed, 07 Dec 2005 02:27:57 +0000</pubDate>
				<category><![CDATA[Debian]]></category>
		<guid isPermaLink="false">http://www.jonhoweonline.com/blog/?p=42</guid>

					<description><![CDATA[<p>I&#8217;ve been having some problems using apt-get lately which led me to doing an apt-get dist-upgrade. Smart me found this command on the internet and decided to use it. It worked just fine, except for the fact that when I restarted my computer the graphical display manager that I use didn&#8217;t start. Here&#8217;s the steps [&#8230;]</p>
<p>The post <a href="/2005/12/06/problems_when_running_apt-get_on_debian/">Problems when running apt-get on Debian</a> appeared first on <a href="/">VirtJunkie</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I&#8217;ve been having some problems using apt-get lately which led me to doing an apt-get dist-upgrade.</p>
<p>Smart me found this command on the internet and decided to use it.  It worked just fine, except for the fact that when I restarted my computer the graphical display manager that I use didn&#8217;t start.</p>
<p>Here&#8217;s the steps that I took to diagnose the problem.</p>
<ol>
<li>I tried to start gdm instead of kdm by editing<code>'/etc/X11/default-display-manager'</code>. This file contains the path to your display manager, for me it was <code>'/usr/bin/kdm'</code></li>
<li>I tried changing that to <code>'/usr/bin/gdm'</code> and I received an X server error saying that my chosen X server (XFree86) was not found.I thought that this was a little funny because I didn&#8217;t think that I used XFree86, but Xorg instead.</li>
<li>So, I looked at the file <code>'/etc/X11/X'</code>, which is a symbolic link (which is like a shortcut in windows) and found out that in the upgrade it changed the link to point to a nonexistent file.</li>
<li>After that I changed the link to point to <code>'/usr/bin/X11/Xorg'</code> and voila, kdm started up just fine.More Later,<br />
Jon Howe</li>
</ol>
<p>The post <a href="/2005/12/06/problems_when_running_apt-get_on_debian/">Problems when running apt-get on Debian</a> appeared first on <a href="/">VirtJunkie</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>/2005/12/06/problems_when_running_apt-get_on_debian/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
