<?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>Mis Historias &#187; How to&#8217;s</title>
	<atom:link href="http://www.pamchi.com/category/how-tos/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pamchi.com</link>
	<description>Por mal ni más ya no voy a ceder ya no me vas a convencer solo yo en contra de los demás y tiemblo, te muestro los dientes y muerdo. Déjame respirar!!! Deja de lastimar!!! ¡¡¡Y te reto a que me hagas daño!!!</description>
	<lastBuildDate>Sat, 28 Jan 2012 18:43:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>rezise ntfs partitions</title>
		<link>http://www.pamchi.com/2011/12/26/rezise-ntfs-partitions/</link>
		<comments>http://www.pamchi.com/2011/12/26/rezise-ntfs-partitions/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 03:15:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How to's]]></category>
		<category><![CDATA[LINUX]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.pamchi.com/?p=1773</guid>
		<description><![CDATA[Un simple copy / paste como referencia&#8230; fuente: http://jamesmcdonald.id.au/it-tips/gnu-linux/linux-tools/shrink-your-windows-xp-ntfs-partition-to-half-size-and-install-linux-while-keeping-the-nt-bootloader The how: Boot XP and run disk check (chkdsk c:) on the volume you want to shrink – this is a good idea Boot XP and run defrag (defrag c:) till it’s as contiguous volume as it’s going to be Grab a Knoppix CD and boot [...]]]></description>
			<content:encoded><![CDATA[<p>Un simple copy / paste como referencia&#8230;</p>
<p>fuente: <a href="http://jamesmcdonald.id.au/it-tips/gnu-linux/linux-tools/shrink-your-windows-xp-ntfs-partition-to-half-size-and-install-linux-while-keeping-the-nt-bootloader">http://jamesmcdonald.id.au/it-tips/gnu-linux/linux-tools/shrink-your-windows-xp-ntfs-partition-to-half-size-and-install-linux-while-keeping-the-nt-bootloader</a></p>
<p>The how:</p>
<p>Boot XP and run disk check (chkdsk c:) on the volume you want to shrink – this is a good idea<br />
Boot XP and run defrag (defrag c:) till it’s as contiguous volume as it’s going to be<br />
Grab a Knoppix CD and boot from it<br />
In Knoppix get a root console and do the following<br />
use fdisk -l to get the hard disk volumes – in my case it’s /dev/sda<br />
fdisk -l</p>
<p>Disk /dev/sda: 60.0 GB, 60011642880 bytes<br />
255 heads, 63 sectors/track, 7296 cylinders<br />
Units = cylinders of 16065 * 512 = 8225280 bytes<br />
Disk identifier: 0x41ab2316</p>
<p>   Device Boot      Start         End      Blocks   Id  System<br />
/dev/sda1               1           8       64228+  de  Dell Utility<br />
/dev/sda2   *           9        7296     XXXXXXX  7  HPFS/NTFS<br />
Use ntfsresize &#8211;info /dev/sda2 to get the minimum size of what you can shrink it to. We will be leaving the Dell Utility partition alone the C: drive is /dev/sda2<br />
ntfsresize &#8211;info /dev/sda2<br />
In this case I didn’t go to the minimum size I just divided the hard disk in half 60011642880/2 = 30005821440<br />
Use ntfsresize -s 30005821440 -n /dev/sda2 to test (-n or not really) if it seems OK<br />
ntfsresize -s 30005821440 -n /dev/sda2<br />
Then run ntfsresize -s <size IN BYTES> /dev/sda2 to do it for real<br />
ntfsresize -s 30005821440 /dev/sda2</size></p>
<div class="fullcircle-social-links" style="display: block;"><div class="fullcircle-linkshare"><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.pamchi.com%2F2011%2F12%2F26%2Frezise-ntfs-partitions%2F" class="fb_share_button"  target="_blank" style="text-decoration:none;">Facebook</a></div></div><div style="clear: both;"></div>]]></content:encoded>
			<wfw:commentRss>http://www.pamchi.com/2011/12/26/rezise-ntfs-partitions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sincronizar la hora de un servidor linux / debian con un servidor ntp</title>
		<link>http://www.pamchi.com/2011/11/02/sincronizar-la-hora-de-un-servidor-linux-debian-con-un-servidor-ntp/</link>
		<comments>http://www.pamchi.com/2011/11/02/sincronizar-la-hora-de-un-servidor-linux-debian-con-un-servidor-ntp/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 21:28:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How to's]]></category>
		<category><![CDATA[LINUX]]></category>

		<guid isPermaLink="false">http://www.pamchi.com/?p=1725</guid>
		<description><![CDATA[apt-get install ntpdate ntpdate ntp0.pipex.net y luego hacemos un ingreso en nuestro crontab para que todos los días se actualice la hora de nuestro servidor . . . crontab -e 0 0 * * * ntpdate ntp0.pipex.net Saludos. Facebook]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.pamchi.com/wp-content/uploads/2011/11/t4_tuxwanduhr.jpg"><img src="http://www.pamchi.com/wp-content/uploads/2011/11/t4_tuxwanduhr-290x300.jpg" alt="" title="hora" width="290" height="300" class="aligncenter size-medium wp-image-1727" /></a></p>
<p>apt-get install ntpdate<br />
ntpdate ntp0.pipex.net</p>
<p>y luego hacemos un ingreso en nuestro crontab para que todos los días se actualice la hora de nuestro servidor . . .<br />
crontab -e<br />
        0       0       *       *       *       ntpdate ntp0.pipex.net</p>
<p>Saludos.</p>
<div class="fullcircle-social-links" style="display: block;"><div class="fullcircle-linkshare"><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.pamchi.com%2F2011%2F11%2F02%2Fsincronizar-la-hora-de-un-servidor-linux-debian-con-un-servidor-ntp%2F" class="fb_share_button"  target="_blank" style="text-decoration:none;">Facebook</a></div></div><div style="clear: both;"></div>]]></content:encoded>
			<wfw:commentRss>http://www.pamchi.com/2011/11/02/sincronizar-la-hora-de-un-servidor-linux-debian-con-un-servidor-ntp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>funciones vi (vim)</title>
		<link>http://www.pamchi.com/2011/10/17/funciones-vi-vim/</link>
		<comments>http://www.pamchi.com/2011/10/17/funciones-vi-vim/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 22:48:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How to's]]></category>
		<category><![CDATA[LINUX]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.pamchi.com/?p=1717</guid>
		<description><![CDATA[vi &#8211; vi filename.txt vi -R filename.txt (solo lectura) Recomendacion: editar .vimrc &#8212; contenido &#8212; set opcion]]></description>
			<content:encoded><![CDATA[<p>vi<br />
&#8211;</p>
<p>vi filename.txt<br />
vi -R filename.txt (solo lectura)</p>
<p>Recomendacion: editar .vimrc<br />
&#8212; contenido &#8212;<br />
set opcion <&#8212;- una linea por cada opcion</p>
<p>Ctr+F  Adelanta una pagina<br />
Ctr+D  Adelanta 1/2 pagina<br />
Ctr+B  Retrocede una pagina<br />
Ctr+U  Retrocede 1/2 pagina<br />
Gtr+G  Informacion de posicion actual<br />
Shift ZZ<br />
Shift A &#8211; Cursor al final de la linea APPEND</p>
<p>:set showmode (Muestra el modo actual)<br />
:set nu       (Agrega numero de linea)<br />
:w   Guardar Cambios<br />
:wq  Guardar Cambios y Sale<br />
 <img src='http://www.pamchi.com/wp-includes/images/smilies/icon_mad.gif' alt=':x' class='wp-smiley' />    Guardar Cambios y Sale<br />
:q   Salir<br />
:q!  Salir ignorando modificaciones<br />
:#   Salta al # linea<br />
:$   Salta al final del doc<br />
:s/texto/nuevotexto replaza hasta la 1a ocurrencia<br />
:s/texto/nuevotexto/g replaza en toda la linea<br />
:a,bs/texto/nuevotexto/g replaza en toda la linea<br />
desde la linea #a hasta la #b<br />
:%s/texto/nuevotexto remplaza en todo el doc</p>
<p>i = Insert<br />
a = Append<br />
o = Agregar linea despues del cursor<br />
O = Agregar linea antes del cursor<br />
u = Undo / deshacer ultima accion<br />
Ctr+R = Redo<br />
r = Remplazar caracter<br />
J = Une lineas actual con siguiente<br />
$ = Mueve Cursor al Final de linea<br />
0 = Mueve Cursor al Final de linea<br />
#x = Eliminar caracter<br />
#dw = Elimina palabra<br />
d$ = Elimina del cursor hasta el fin de linea<br />
#dd = Elimina la linea actual<br />
#yw = Copiar palabra<br />
#yy = Copiar linea actual<br />
#p  = Pegar despues del cursor<br />
#P  = Pegar antes del cursor<br />
/texto = Buscar texto<br />
w,b = Moverse por palabras<br />
),( = Moverse por oraciones<br />
},{ = moverse por parrafos</p>
<p>n = ir a siguiente resultado<br />
N = ir a anterior resultado</p>
<div class="fullcircle-social-links" style="display: block;"><div class="fullcircle-linkshare"><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.pamchi.com%2F2011%2F10%2F17%2Ffunciones-vi-vim%2F" class="fb_share_button"  target="_blank" style="text-decoration:none;">Facebook</a></div></div><div style="clear: both;"></div>]]></content:encoded>
			<wfw:commentRss>http://www.pamchi.com/2011/10/17/funciones-vi-vim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>apt-get con proxy en ubuntu / debian</title>
		<link>http://www.pamchi.com/2011/08/09/apt-get-con-proxy-en-ubuntu-debian/</link>
		<comments>http://www.pamchi.com/2011/08/09/apt-get-con-proxy-en-ubuntu-debian/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 05:30:39 +0000</pubDate>
		<dc:creator>pamchi</dc:creator>
				<category><![CDATA[How to's]]></category>
		<category><![CDATA[LINUX]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.pamchi.com/?p=1696</guid>
		<description><![CDATA[en el archivo /etc/apt/apt.conf Agregar las siguientes líneas Acquire::http::proxy "http://192.168.0.1:3128/"; Acquire::https::proxy "https://192.168.0.1:3128/"; Facebook]]></description>
			<content:encoded><![CDATA[<p>en el archivo</p>
<pre>/etc/apt/apt.conf </pre>
<p>Agregar las siguientes líneas</p>
<pre>Acquire::http::proxy "http://192.168.0.1:3128/";
Acquire::https::proxy "https://192.168.0.1:3128/";</pre>
<div class="fullcircle-social-links" style="display: block;"><div class="fullcircle-linkshare"><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.pamchi.com%2F2011%2F08%2F09%2Fapt-get-con-proxy-en-ubuntu-debian%2F" class="fb_share_button"  target="_blank" style="text-decoration:none;">Facebook</a></div></div><div style="clear: both;"></div>]]></content:encoded>
			<wfw:commentRss>http://www.pamchi.com/2011/08/09/apt-get-con-proxy-en-ubuntu-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>awstats</title>
		<link>http://www.pamchi.com/2011/07/08/awstats/</link>
		<comments>http://www.pamchi.com/2011/07/08/awstats/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 23:10:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How to's]]></category>
		<category><![CDATA[LINUX]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.pamchi.com/?p=1685</guid>
		<description><![CDATA[http://www.debian-administration.org/articles/277 + http://www.debianadmin.com/apache-log-file-analyzer-using-awstats-in-debian.html Facebook]]></description>
			<content:encoded><![CDATA[<p>http://www.debian-administration.org/articles/277</p>
<p>+</p>
<p>http://www.debianadmin.com/apache-log-file-analyzer-using-awstats-in-debian.html</p>
<div class="fullcircle-social-links" style="display: block;"><div class="fullcircle-linkshare"><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.pamchi.com%2F2011%2F07%2F08%2Fawstats%2F" class="fb_share_button"  target="_blank" style="text-decoration:none;">Facebook</a></div></div><div style="clear: both;"></div>]]></content:encoded>
			<wfw:commentRss>http://www.pamchi.com/2011/07/08/awstats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eliminar archivos vacíos en linux</title>
		<link>http://www.pamchi.com/2011/07/04/eliminar-archivos-vacios-en-linux/</link>
		<comments>http://www.pamchi.com/2011/07/04/eliminar-archivos-vacios-en-linux/#comments</comments>
		<pubDate>Mon, 04 Jul 2011 21:41:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How to's]]></category>
		<category><![CDATA[LINUX]]></category>

		<guid isPermaLink="false">http://www.pamchi.com/?p=1682</guid>
		<description><![CDATA[find . -empty -maxdepth 1 -exec rm {} \; Facebook]]></description>
			<content:encoded><![CDATA[<pre>find . -empty -maxdepth 1 -exec rm {} \;</pre>
<div class="fullcircle-social-links" style="display: block;"><div class="fullcircle-linkshare"><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.pamchi.com%2F2011%2F07%2F04%2Feliminar-archivos-vacios-en-linux%2F" class="fb_share_button"  target="_blank" style="text-decoration:none;">Facebook</a></div></div><div style="clear: both;"></div>]]></content:encoded>
			<wfw:commentRss>http://www.pamchi.com/2011/07/04/eliminar-archivos-vacios-en-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Obtener los tamaños de las base de datos mysql con un query</title>
		<link>http://www.pamchi.com/2011/05/31/obtener-los-tamanos-de-las-base-de-datos-mysql-con-un-query/</link>
		<comments>http://www.pamchi.com/2011/05/31/obtener-los-tamanos-de-las-base-de-datos-mysql-con-un-query/#comments</comments>
		<pubDate>Tue, 31 May 2011 21:41:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How to's]]></category>

		<guid isPermaLink="false">http://www.pamchi.com/?p=1670</guid>
		<description><![CDATA[SELECT table_schema &#8220;Data Base Name&#8221;, sum( data_length + index_length ) / 1024 / 1024 &#8220;Data Base Size in MB&#8221;, sum( data_free )/ 1024 / 1024 &#8220;Free Space in MB&#8221; FROM information_schema.TABLES GROUP BY table_schema ; Fácil&#8230;. Fuente: http://forums.mysql.com/read.php?108,201578,201578 http://francocedillo.wordpress.com/2010/04/05/obtener-el-tamano-de-la-base-de-datos-en-mysql/ Facebook]]></description>
			<content:encoded><![CDATA[<p>SELECT table_schema &#8220;Data Base Name&#8221;,<br />
sum( data_length + index_length ) / 1024 /<br />
1024 &#8220;Data Base Size in MB&#8221;,<br />
sum( data_free )/ 1024 / 1024 &#8220;Free Space in MB&#8221;<br />
FROM information_schema.TABLES<br />
GROUP BY table_schema ;</p>
<p>Fácil&#8230;.</p>
<p>Fuente:</p>
<ul>
<li><a href="http://forums.mysql.com/read.php?108,201578,201578">http://forums.mysql.com/read.php?108,201578,201578</a></li>
<li><a href="http://francocedillo.wordpress.com/2010/04/05/obtener-el-tamano-de-la-base-de-datos-en-mysql/">http://francocedillo.wordpress.com/2010/04/05/obtener-el-tamano-de-la-base-de-datos-en-mysql/</a></li>
</ul>
<div class="fullcircle-social-links" style="display: block;"><div class="fullcircle-linkshare"><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.pamchi.com%2F2011%2F05%2F31%2Fobtener-los-tamanos-de-las-base-de-datos-mysql-con-un-query%2F" class="fb_share_button"  target="_blank" style="text-decoration:none;">Facebook</a></div></div><div style="clear: both;"></div>]]></content:encoded>
			<wfw:commentRss>http://www.pamchi.com/2011/05/31/obtener-los-tamanos-de-las-base-de-datos-mysql-con-un-query/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Función mail() PHP</title>
		<link>http://www.pamchi.com/2011/05/31/funcion-mail-php/</link>
		<comments>http://www.pamchi.com/2011/05/31/funcion-mail-php/#comments</comments>
		<pubDate>Tue, 31 May 2011 21:39:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How to's]]></category>

		<guid isPermaLink="false">http://www.pamchi.com/?p=1668</guid>
		<description><![CDATA[UNICAMENTE COMO REFERENCIA FUENTE: http://www.cyberciti.biz/tips/howto-php-send-email-via-smtp-authentication.html &#160; PHP has mail() function to send an email to users. However this mail() will not work: =&#62; If sendmail (or compatible binary) is not installed =&#62; If Apache Web server / Lighttpd running in chrooted jail =&#62; And your smtp server needs an authentication before sending an email =&#62; Or [...]]]></description>
			<content:encoded><![CDATA[<p>UNICAMENTE COMO REFERENCIA</p>
<p>FUENTE: <a href="http://www.cyberciti.biz/tips/howto-php-send-email-via-smtp-authentication.html">http://www.cyberciti.biz/tips/howto-php-send-email-via-smtp-authentication.html</a></p>
<p>&nbsp;</p>
<p>PHP has mail() function to send an email to users. However this mail() will not work:</p>
<p>=&gt; If sendmail (or compatible binary) is not installed</p>
<p>=&gt; If Apache Web server / Lighttpd running in chrooted jail</p>
<p>=&gt; And your smtp server needs an authentication before sending an email</p>
<p>=&gt; Or you just need to send email using PHP PEAR</p>
<p>In all these cases you need to use PHP PEAR&#8217;s Mail:: interface. It defines the interface for implementing mailers under the PEAR hierarchy, and provides supporting functions which are useful in multiple mailer backends. In this tip you will learn about how to send an e-mail directly to client smtp server in real time.</p>
<p>PHP Pear&#8217;s Mail.php is located in <strong>/usr/share/pear/</strong> directory. Following is sample code to send an email via authenticated smtp server.</p>
<h3>PHP send email using PHP SMTP mail Pear functions &#8211; Sample source code</h3>
<p>Following code is well commented, you need to make necessary changes as per your setup.</p>
<pre>&lt;?php
include("Mail.php");
/* mail setup recipients, subject etc */
$recipients = "feedback@yourdot.com";
$headers["From"] = "user@somewhere.com";
$headers["To"] = "feedback@yourdot.com";
$headers["Subject"] = "User feedback";
$mailmsg = "Hello, This is a test.";
/* SMTP server name, port, user/passwd */
$smtpinfo["host"] = "smtp.mycorp.com";
$smtpinfo["port"] = "25";
$smtpinfo["auth"] = true;
$smtpinfo["username"] = "smtpusername";
$smtpinfo["password"] = "smtpPassword";
/* Create the mail object using the Mail::factory method */
$mail_object =&amp; <a href="http://www.php.net/mail">Mail</a>::factory("smtp", $smtpinfo);
/* Ok send mail */
$mail_object-&gt;send($recipients, $headers, $mailmsg);
?&gt;</pre>
<h3>Sending smtp email from chrooted Apache or Lighttpd webserver</h3>
<p>Read following section, if you are running a secure chrooted Apache or Lighttpd web server. I have already written about <a href="http://www.cyberciti.biz/tips/howto-setup-sendmail-php-mail-chrooted-apache-lighttpd.html">setting php mail() function</a> in chrooted jail. If you are using chrooted jail server setup, copy all files from /usr/share/pear directory to /chroot-directory/usr/share/pear directory. For example if lighttpd chrooted jail located in /webroot directory, you need to type following commands to install PHP pear support:<br />
<code># mkdir -p /webroot/usr/share/pear<br />
# cd /webroot/usr/share/pear<br />
# cp -avr /usr/share/pear .</code></p>
<p>If PHP SAFE MODE is on, you must set /webroot/usr/share/pear directory permission to webserver username to allow access. Otherwise you will see error as follows:</p>
<pre>1-Nov-2006 09:43:19] PHP Warning:  main(): SAFE MODE Restriction in effect.  The script whose uid is 506 is not allowed to access /usr/share/pear/PEAR.php owned by uid 0 in /usr/share/pear/Mail.php on line 636.</pre>
<p>So if webserver username is lighttpd or apache use following command to setup correct ownership:<br />
<code># chown lighttpd:lighttpd /webroot/usr/share/pear -R</code>OR<code># chown apache:apache /webroot/usr/share/pear -R</code></p>
<p>You may also find modified <a href="http://www.cyberciti.biz/files/lighttpd/wp-contactform.php.txt">wordpress WP-ContactForm plugin</a> useful. It is a drop in form for users to contact you. It can be implemented on a page or a post. Original authored by <a href="http://www.cyberciti.biz/ref/dead.html">Ryan Duff</a>, which use php mail() function to send email. I have modified the same to send email via my ISP authenticated gateway using PHP PEAR&#8217;s Mail:: interface <img src='http://www.pamchi.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<div class="fullcircle-social-links" style="display: block;"><div class="fullcircle-linkshare"><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.pamchi.com%2F2011%2F05%2F31%2Ffuncion-mail-php%2F" class="fb_share_button"  target="_blank" style="text-decoration:none;">Facebook</a></div></div><div style="clear: both;"></div>]]></content:encoded>
			<wfw:commentRss>http://www.pamchi.com/2011/05/31/funcion-mail-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Instalación RescueTime</title>
		<link>http://www.pamchi.com/2011/05/02/instalacion-rescuetime/</link>
		<comments>http://www.pamchi.com/2011/05/02/instalacion-rescuetime/#comments</comments>
		<pubDate>Mon, 02 May 2011 18:49:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How to's]]></category>

		<guid isPermaLink="false">http://www.pamchi.com/?p=1645</guid>
		<description><![CDATA[cd /tmp/ wget http://launchpadlibrarian.net/49626670/rescuetime-linux-uploader-99.tar.bz2 tar xf rescuetime-linux-uploader-99.tar.bz2 cd /tmp/rescuetime-linux-uploader-99/ wget http://pypi.python.org/packages/2.6/s/setuptools/setuptools-0.6c11-py2.6.egg sudo sh setuptools-0.6c11-py2.6.egg python setup.py build sudo python setup.py install cd /usr/bin/ sudo ln /usr/local/bin/rescuetime_linux_uploader_gnome_panel_controller sudo ln /usr/local/bin/rescuetime_linux_uploader_gnome_panel_notifier sudo ln /usr/local/bin/rescuetime_linux_uploader_gnome_panel_window fuente: http://ubundance.blogspot.com/2010/08/installing-rescuetime-on-ubuntu-1004.html https://answers.launchpad.net/rescuetime-linux-uploader/+question/121421 https://launchpad.net/rescuetime-linux-uploader Facebook]]></description>
			<content:encoded><![CDATA[<p>cd /tmp/<br />
wget http://launchpadlibrarian.net/49626670/rescuetime-linux-uploader-99.tar.bz2<br />
tar xf rescuetime-linux-uploader-99.tar.bz2<br />
cd /tmp/rescuetime-linux-uploader-99/<br />
wget http://pypi.python.org/packages/2.6/s/setuptools/setuptools-0.6c11-py2.6.egg<br />
sudo sh setuptools-0.6c11-py2.6.egg<br />
python setup.py build<br />
sudo python setup.py install<br />
cd /usr/bin/<br />
sudo ln /usr/local/bin/rescuetime_linux_uploader_gnome_panel_controller<br />
sudo ln /usr/local/bin/rescuetime_linux_uploader_gnome_panel_notifier<br />
sudo ln /usr/local/bin/rescuetime_linux_uploader_gnome_panel_window</p>
<p>fuente:</p>
<p>http://ubundance.blogspot.com/2010/08/installing-rescuetime-on-ubuntu-1004.html</p>
<p>https://answers.launchpad.net/rescuetime-linux-uploader/+question/121421</p>
<p>https://launchpad.net/rescuetime-linux-uploader</p>
<div class="fullcircle-social-links" style="display: block;"><div class="fullcircle-linkshare"><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.pamchi.com%2F2011%2F05%2F02%2Finstalacion-rescuetime%2F" class="fb_share_button"  target="_blank" style="text-decoration:none;">Facebook</a></div></div><div style="clear: both;"></div>]]></content:encoded>
			<wfw:commentRss>http://www.pamchi.com/2011/05/02/instalacion-rescuetime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Agregar un usuario en linux a un grupo pre-existente (www-data)</title>
		<link>http://www.pamchi.com/2011/03/18/agregar-un-usuario-en-linux-a-un-grupo-pre-existente-www-data/</link>
		<comments>http://www.pamchi.com/2011/03/18/agregar-un-usuario-en-linux-a-un-grupo-pre-existente-www-data/#comments</comments>
		<pubDate>Sat, 19 Mar 2011 00:13:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How to's]]></category>

		<guid isPermaLink="false">http://www.pamchi.com/?p=1567</guid>
		<description><![CDATA[useradd nombreusuario -d /var/www/vhosts/ -g www-data -N -s /bin/bash -p Facebook]]></description>
			<content:encoded><![CDATA[<p>useradd nombreusuario -d /var/www/vhosts/ -g www-data -N -s /bin/bash -p</p>
<div class="fullcircle-social-links" style="display: block;"><div class="fullcircle-linkshare"><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.pamchi.com%2F2011%2F03%2F18%2Fagregar-un-usuario-en-linux-a-un-grupo-pre-existente-www-data%2F" class="fb_share_button"  target="_blank" style="text-decoration:none;">Facebook</a></div></div><div style="clear: both;"></div>]]></content:encoded>
			<wfw:commentRss>http://www.pamchi.com/2011/03/18/agregar-un-usuario-en-linux-a-un-grupo-pre-existente-www-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

