<?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>x83.net &#187; Debian</title>
	<atom:link href="http://www.x83.net/tag/debian/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.x83.net</link>
	<description></description>
	<lastBuildDate>Sat, 24 Jul 2010 09:50:05 +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>Script to generate /etc/network/interfaces file on Ubuntu/Debian</title>
		<link>http://www.x83.net/script-to-generate-etcnetworkinterfaces-file-on-ubuntudebian/</link>
		<comments>http://www.x83.net/script-to-generate-etcnetworkinterfaces-file-on-ubuntudebian/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 18:37:04 +0000</pubDate>
		<dc:creator>Giany</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[/etc/network/interfaces/debian]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[generate]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.x83.net/?p=386</guid>
		<description><![CDATA[#!/bin/bash
ifile=/etc/network/interfaces
echo -n &#8220;Insert IPstart:&#8221;
read ipstart
echo -n &#8220;Insert IPend:&#8221;
read ipend
echo -n &#8220;Insert Gateway:&#8221;
read gw
#echo -n &#8220;Insert Subnet: &#8221;
#read subnet
echo -n &#8220;Insert Netmask: &#8221;
read net
echo -n &#8220;Insert aliast to start: &#8221;
read ali
firstIp=`echo &#8220;${ipstart%.*}&#8221;`
lastIpStart=`echo &#8220;${ipstart##*.}&#8221;`
lastIpEnd=`echo &#8220;${ipend##*.}&#8221;`
dif=`echo $(($lastIpEnd-$lastIpStart))`
ip=$lastIpStart
for ((i=$ali;i>$ifile
echo &#8220;iface eth0:$i inet static&#8221; >>$ifile
echo &#8220;address $firstIp.$ip&#8221; >>$ifile
echo &#8220;network $subnet&#8221; >>$ifile
echo &#8220;netmask $net&#8221; >>$ifile
echo &#8220;gateway $gw&#8221; >> $ifile
echo &#8221; &#8221; [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>#!/bin/bash<br />
ifile=/etc/network/interfaces<br />
echo -n &#8220;Insert IPstart:&#8221;<br />
read ipstart<br />
echo -n &#8220;Insert IPend:&#8221;<br />
read ipend<br />
echo -n &#8220;Insert Gateway:&#8221;<br />
read gw<br />
#echo -n &#8220;Insert Subnet: &#8221;<br />
#read subnet<br />
echo -n &#8220;Insert Netmask: &#8221;<br />
read net<br />
echo -n &#8220;Insert aliast to start: &#8221;<br />
read ali</p>
<p>firstIp=`echo &#8220;${ipstart%.*}&#8221;`<br />
lastIpStart=`echo &#8220;${ipstart##*.}&#8221;`<br />
lastIpEnd=`echo &#8220;${ipend##*.}&#8221;`<br />
dif=`echo $(($lastIpEnd-$lastIpStart))`</p>
<p>ip=$lastIpStart<br />
for ((i=$ali;i<=$ali+$dif;i++)){<br />
echo "auto eth0:$i" >>$ifile<br />
echo &#8220;iface eth0:$i inet static&#8221; >>$ifile<br />
echo &#8220;address $firstIp.$ip&#8221; >>$ifile<br />
echo &#8220;network $subnet&#8221; >>$ifile<br />
echo &#8220;netmask $net&#8221; >>$ifile<br />
echo &#8220;gateway $gw&#8221; >> $ifile<br />
echo &#8221; &#8221; >> $ifile<br />
let ip++<br />
}
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.x83.net/script-to-generate-etcnetworkinterfaces-file-on-ubuntudebian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing perl audio converter</title>
		<link>http://www.x83.net/installing-perl-audio-converter/</link>
		<comments>http://www.x83.net/installing-perl-audio-converter/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 04:17:27 +0000</pubDate>
		<dc:creator>Giany</dc:creator>
				<category><![CDATA[Centos]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Redhat]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[cpan]]></category>
		<category><![CDATA[pacpl]]></category>
		<category><![CDATA[pacpl.conf]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://www.x83.net/?p=361</guid>
		<description><![CDATA[Download the latest version of pacpl from:
Download PACPL from  http://pacpl.sourceforge.net/
install cpan, either with yum,apt..
Install these cpan modules:
cpan install Ogg::Vorbis::Header
cpan install Inline::MakeMaker
cpan install MP3::Tag
cpan install Audio::FLAC::Header
cpan install MP4::Info
cpan install Audio::WMA
cpan install Audio::Musepack
cpan install CDDB_get

Untar the pacpl source and move the binary into /usr/bin and the share/pacpl files into /usr/share/pacpl, also the config file (pacpl.conf) should [...]]]></description>
			<content:encoded><![CDATA[<p>Download the latest version of pacpl from:</p>
<blockquote><p>Download PACPL from  http://pacpl.sourceforge.net/</p></blockquote>
<p>install cpan, either with yum,apt..</p>
<p>Install these cpan modules:</p>
<blockquote><p>cpan install Ogg::Vorbis::Header<br />
cpan install Inline::MakeMaker<br />
cpan install MP3::Tag<br />
cpan install Audio::FLAC::Header<br />
cpan install MP4::Info<br />
cpan install Audio::WMA<br />
cpan install Audio::Musepack<br />
cpan install CDDB_get
</p></blockquote>
<p>Untar the pacpl source and move the binary into /usr/bin and the share/pacpl files into /usr/share/pacpl, also the config file (pacpl.conf) should be in /etc/pacpl/</p>
<p>To convert from .caf to mp3 use:</p>
<p>pacpl &#8211;to mp3 file.caf</p>
]]></content:encoded>
			<wfw:commentRss>http://www.x83.net/installing-perl-audio-converter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xen howto create domU on Debian</title>
		<link>http://www.x83.net/xen-howto-create-domu-on-debian/</link>
		<comments>http://www.x83.net/xen-howto-create-domu-on-debian/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 22:16:17 +0000</pubDate>
		<dc:creator>Giany</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Centos]]></category>
		<category><![CDATA[domU]]></category>
		<category><![CDATA[xen]]></category>

		<guid isPermaLink="false">http://www.x83.net/?p=170</guid>
		<description><![CDATA[Centos :
xen-create-image  &#8211;lvm=lvm1 &#8211;hostname=hostname  &#8211;install-method=rinse &#8211;dist=centos-5 &#8211;arch=amd64  &#8211;ip=ip &#8211;netmask=255.255.255.0 &#8211;gateway=gw &#8211;force &#8211;size=80Gb &#8211;swap=1024Mb &#8211;memory=1024

Debian:
xen-create-image  &#8211;lvm=lvm1 &#8211;hostname=vm01  &#8211;install-method=debootstrap  &#8211;arch=amd64  &#8211;ip=ip  &#8211;netmask=255.255.255.0 &#8211;gateway=gw &#8211;force &#8211;size=80Gb &#8211;swap=1024Mb &#8211;memory=1024
]]></description>
			<content:encoded><![CDATA[<p>Centos :</p>
<blockquote><p>xen-create-image  &#8211;lvm=lvm1 &#8211;hostname=hostname  &#8211;install-method=rinse &#8211;dist=centos-5 &#8211;arch=amd64  &#8211;ip=ip &#8211;netmask=255.255.255.0 &#8211;gateway=gw &#8211;force &#8211;size=80Gb &#8211;swap=1024Mb &#8211;memory=1024
</p></blockquote>
<p>Debian:</p>
<blockquote><p>xen-create-image  &#8211;lvm=lvm1 &#8211;hostname=vm01  &#8211;install-method=debootstrap  &#8211;arch=amd64  &#8211;ip=ip  &#8211;netmask=255.255.255.0 &#8211;gateway=gw &#8211;force &#8211;size=80Gb &#8211;swap=1024Mb &#8211;memory=1024</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.x83.net/xen-howto-create-domu-on-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
