<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>sudo &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/sudo/</link>
	<description>Feed of posts on WordPress.com tagged "sudo"</description>
	<pubDate>Mon, 30 Nov 2009 16:39:11 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Ubuntu IRC- Please review/correct this script]]></title>
<link>http://williambuell.wordpress.com/2009/11/25/ubuntu-irc-please-reviewcorrect-this-script/</link>
<pubDate>Wed, 25 Nov 2009 06:35:49 +0000</pubDate>
<dc:creator>William Buell</dc:creator>
<guid>http://williambuell.wordpress.com/2009/11/25/ubuntu-irc-please-reviewcorrect-this-script/</guid>
<description><![CDATA[If you are curious to visit the IRC channel, visit here first https://wiki.ubuntu.com/IrcGuidelines ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>If you are curious to visit the IRC channel, visit here first</p>
<p><a href="https://wiki.ubuntu.com/IrcGuidelines">https://wiki.ubuntu.com/IrcGuidelines</a></p>
<p>Thanks for visiting from IRC #ubuntu-offtopic</p>
<p>I am a beginner with Linux Ubuntu, and I want a simple means<br />
to back up my system occasionally.</p>
<p>I found a tar command at the following link:</p>
<p>http://ubuntuforums.org/showthread.php?t=35087</p>
<p>I tried it once and it seemed to work, except I had some trouble getting rights to access the file in / root.  I THINK that the following commands will work for me without hurting my install.</p>
<p>I DID do some things with sudo Nautilus and a /var/Backup folder which I believe crashed my whole Ubuntu system, and I had to spend 7 hours re-installing it, which you may read about at this blog.</p>
<p>So, I really need someone who is experienced in Linux and script/bash commands to look at this and tell me if there is any danger.</p>
<p>I DID get the tar command which you see below to work once, and I managed to copy it to a DVD. I put the dvd in my second computer which is a Wubi Ubuntu install on top of windows, and it was able to open the tar, browse the folders, and extract some files from /Desktop.</p>
<p>I WOULD ALSO APPRECIATE THE CORRECT COMMAND TO SAFELY DELETE backup.tgz from / root</p>
<p>Thanks for looking and commenting!</p>
<p>enter TERMINAL</p>
<p>sudo su</p>
<p>tar cvpzf backup.tgz &#8211;exclude=/proc &#8211;exclude=/lost+found &#8211;exclude=/backup.tgz &#8211;exclude=/mnt &#8211;exclude=/sys &#8211;exclude=/media /</p>
<p>sudo cd /</p>
<p>sudo chmod 777 backup.tgz </p>
<p>sudo cp -p backup.tgz /home/bryan/Desktop/mytestfolder/</p>
<p>++++++</p>
<p>   1.<br />
      I WOULD ALSO APPRECIATE THE CORRECT COMMAND TO SAFELY DELETE backup.tgz from / root<br />
   2.<br />
      &#62;&#62;&#62; sudo rm /backup.tgz<br />
   3.</p>
<p>   4.<br />
      Thanks for looking and commenting!<br />
   5.</p>
<p>   6.<br />
      enter TERMINAL<br />
   7.</p>
<p>   8.<br />
      ### sudo su<br />
   9.<br />
      ### This is silly for two reasons.  First, &#8217;sudo -i&#8217; is preferable to &#8217;sudo su&#8217;.  Second, rather than putting sudo on every line of the script, just run the script itself with sudo.<br />
  10.</p>
<p>  11.<br />
      # This will work, but using v (verbose) doesn&#8217;t really add value with this huge of a data set, and significantly impairs performance (the terminal can&#8217;t keep up), so I&#8217;d probably drop it.<br />
  12.<br />
      tar cvpzf backup.tgz –exclude=/proc –exclude=/lost+found –exclude=/backup.tgz –exclude=/mnt –exclude=/sys –exclude=/media /<br />
  13.<br />
      # Note that you are not specifying a target directory for backup.tgz to end up in here.  As you&#8217;ve noticed, it&#8217;s helpful to have it somewhere that you&#8217;re not backing up, to avoid recursion.<br />
  14.</p>
<p>  15.<br />
      sudo cd /<br />
  16.</p>
<p>  17.<br />
      sudo chmod 777 backup.tgz<br />
  18.</p>
<p>  19.<br />
      sudo cp -p backup.tgz /home/bryan/Desktop/mytestfolder/<br />
  20.</p>
<p>  21.</p>
<p>  22.<br />
      THUS, my recommendations:<br />
  23.<br />
      &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
  24.<br />
      #!/bin/bash<br />
  25.<br />
      tar cpzf /backup.tgz –exclude=/proc –exclude=/lost+found –exclude=/backup.tgz –exclude=/mnt –exclude=/sys –exclude=/media /<br />
  26.<br />
      chmod 755 /backup.tgz<br />
  27.<br />
      ln -s /backup.tgz /home/bryan/Desktop/mytestfolder/<br />
  28.<br />
      &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
  29.<br />
      Save as mybackupscript.sh<br />
  30.<br />
      chmod +x mybackupscript.sh<br />
  31.<br />
      Run with:<br />
  32.<br />
      sudo ./mybackupscript.sh</p>
<p>++++++++++</p>
<p> tonyyarusso:  one quick question, what does this last line do &#8212; ln -s /backup.tgz /home/bryan/Desktop/mytestfolder/<br />
[02:07]  what is ln -s<br />
[02:07]  WilliamBuell: Create a symbolic link<br />
[02:07]  WilliamBuell: it creates a symbolic link<br />
[02:07]  symlink<br />
[02:08]  WilliamBuell: It makes a &#8220;pointer&#8221; of sorts in your home directory to the real file, rather than copying it all over.<br />
[02:08]  and, ok ln symbolic link, how is that useful<br />
[02:08]  can reach data 2 ways but only have it exist on disk once<br />
[02:08]  so, you are saying that when I mount a dvd, and go to file manager, i will SEE the tar in that folder (but it is really the symbolic link) and i may freely copy it to the dvd<br />
[02:08]  so if you dont want to type a really really long path, you can have a shortcut<br />
[02:08]  WilliamBuell: Half the disk space usage, and less time.<br />
[02:08]  WilliamBuell: yup<br />
[02:09]  wow, thanks, now it all makes sense<br />
[02:09]  there are also hardlinks (ln without the -s)<br />
[02:09]  what is difference between hard and soft link<br />
[02:09]  symlinks point to a path to the data so they can point to things on other disks/partitions/media</p>
<p>hardlink vs symlink</p>
<p>[02:19]  WilliamBuell: I thought you wanted it in that folder for some kind of convenience &#8211; it&#8217;s certainly not necessary.<br />
[02:19]  oh, ok&#8230;. i am just scared to death of root, since my crash<br />
[02:19]  the script can go wherever you like.  Many people like to create /home/bryan/bin/ for such things, but it doesn&#8217;t matter.<br />
[02:20]  so  sudo ./mybackupscript.sh WILL SEARCH until it finds that file, wherever it is, even on /Desktop ?<br />
[02:20]  No.<br />
[02:20]  It will be the current working directory, whatever that is.<br />
[02:21]  oh, ok, so as long as i am in current directory where that .sh is, and i sudo ./  it will find the .sh<br />
[02:21]  but, i should not save the script to root, i take it<br />
[02:22]  and if i did create /home/bryan/bin i would cd to that, and then sudo ./mybackupscript.sh<br />
[02:23]  right<br />
[02:23]  but, if i went into gedit and saved some file as mytestfile.sh in root,&#8230; it would not harm root<br />
[02:23]  except it is a bad practice to store things in root</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Παλι ξεχασα να γραψω το sudo!]]></title>
<link>http://ubuntugreek.wordpress.com/2009/11/25/%cf%80%ce%b1%ce%bb%ce%b9-%ce%be%ce%b5%cf%87%ce%b1%cf%83%ce%b1-%ce%bd%ce%b1-%ce%b3%cf%81%ce%b1%cf%88%cf%89-%cf%84%ce%bf-sudo/</link>
<pubDate>Tue, 24 Nov 2009 22:09:56 +0000</pubDate>
<dc:creator>xqtr</dc:creator>
<guid>http://ubuntugreek.wordpress.com/2009/11/25/%cf%80%ce%b1%ce%bb%ce%b9-%ce%be%ce%b5%cf%87%ce%b1%cf%83%ce%b1-%ce%bd%ce%b1-%ce%b3%cf%81%ce%b1%cf%88%cf%89-%cf%84%ce%bf-sudo/</guid>
<description><![CDATA[Ποσες φορες, δεν σας εχει τυχει να γραφετε μια εντολη στο τερματικο να πατατε το enter και να σας βγ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="font-size:x-large;"><strong>Π</strong></span>οσες φορες, δεν σας εχει τυχει να γραφετε μια εντολη στο τερματικο να πατατε το enter και να σας βγαζει μυνημα οτι πρεπει να εχετε δικαιωματα root για να εκτελεστει η εντολη&#8230; δεν ειναι σπαστικο να ξαναγραφετε την εντολη η εστω με τα βελακια να κανετε back&#8230; στην αρχη της εντολης κτλ&#8230;κτλ&#8230;</p>
<p>Μπορειτε πολυ ευκολα να γραψετε κατευθειαν sudo και μετα διπλα θαυμαστικα, οπως φενεται παρακατω:</p>
<p><code>sudo !!</code></p>
<p>Βασικα το ολο κολπο ειναι τα διπλα θαυμαστικα, τα οποια ειναι εντολη του bash και αυτο που κανουν ειναι να &#8220;γραφουν&#8221; την τελευταια εντολη που πληκτρολογησατε, οποτε μπορειτε να τα χρησιμοποιειτε και με αλλες εντολες και οχι μονο με την sudo.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Shutter - Screenshot Tool]]></title>
<link>http://exploreubuntu.wordpress.com/2009/11/24/shutter-screenshot-tool/</link>
<pubDate>Tue, 24 Nov 2009 08:54:56 +0000</pubDate>
<dc:creator>Arnab Das</dc:creator>
<guid>http://exploreubuntu.wordpress.com/2009/11/24/shutter-screenshot-tool/</guid>
<description><![CDATA[The default Ubuntu screenshot software isnt really something spectacular. Also, it really doesnt hav]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The default Ubuntu screenshot software isnt really something spectacular. Also, it really doesnt have many options. For example, if you want the screenshot of just a window and not of the entire desktop, you&#8217;d be pretty much stuck if you were using the default screenshot app, as you would have to use some image editing software like GIMP to modify the screenshot to suit your needs.</p>
<p>No more&#8230; Say hello to Shutter! The perfect screenshot tool. Lets you take screenshots of windows, notifications (and even panels!). Has loads of options and is really useful.</p>
<p>This is how you install it:</p>
<p>Go to Ubuntu Software Center from your GNOME menu and search for &#8216;Shutter&#8217;, follow the links and install it! Like so:</p>
<p><a href="http://img684.imageshack.us/i/screenshot004e.png/"><img src="http://img684.imageshack.us/img684/3338/screenshot004e.png" border="0"></a></p>
<p><em>Alternate method for users who prefer to use the terminal:</em></p>
<p>Type the following in the terminal:</p>
<blockquote><p>sudo apt-get install shutter</p></blockquote>
<p>And after the installation, you&#8217;ll find Shutter installed in the &#8216;Accessories&#8217; section of the GNOME menu.</p>
<p>This is what the Shutter screenshot toolbar window looks like:</p>
<p><a href="http://img145.imageshack.us/i/screenshot003vt.png/"><img src="http://img145.imageshack.us/img145/5007/screenshot003vt.png" alt="Image Hosted by ImageShack.us" border="0"></a></p>
<p>Thats it! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div style="margin-top:10px;height:15px;" class="zemanta-pixie"><img style="border:medium none;float:right;" class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=9a5fdfcf-cf7e-4bb6-aef0-d0438abc5746"></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cómo configurar el puto sudo en Debian ]]></title>
<link>http://putolinux.wordpress.com/2009/11/23/como-configurar-el-puto-sudo-en-debian/</link>
<pubDate>Mon, 23 Nov 2009 19:46:49 +0000</pubDate>
<dc:creator>pragmart</dc:creator>
<guid>http://putolinux.wordpress.com/2009/11/23/como-configurar-el-puto-sudo-en-debian/</guid>
<description><![CDATA[Fácil. 1. Abro un Terminal de root en Aplicaciones&gt;Accesorios&gt;Terminal de root o en Aplicacion]]></description>
<content:encoded><![CDATA[Fácil. 1. Abro un Terminal de root en Aplicaciones&gt;Accesorios&gt;Terminal de root o en Aplicacion]]></content:encoded>
</item>
<item>
<title><![CDATA[Como configurar sudo en Debian]]></title>
<link>http://linuxgnublog.wordpress.com/2009/11/22/como-configurar-sudo-en-debian/</link>
<pubDate>Sun, 22 Nov 2009 16:42:59 +0000</pubDate>
<dc:creator>José Miguel</dc:creator>
<guid>http://linuxgnublog.wordpress.com/2009/11/22/como-configurar-sudo-en-debian/</guid>
<description><![CDATA[Como algúnos ya sabrán, GNU/Linux no es un sistema en el que se esté trabajando constantemente como ]]></description>
<content:encoded><![CDATA[Como algúnos ya sabrán, GNU/Linux no es un sistema en el que se esté trabajando constantemente como ]]></content:encoded>
</item>
<item>
<title><![CDATA[How to compile software on Fedora 12]]></title>
<link>http://fedoragus.wordpress.com/2009/11/20/how-to-compile-software-on-fedora-12/</link>
<pubDate>Fri, 20 Nov 2009 22:15:54 +0000</pubDate>
<dc:creator>gusions</dc:creator>
<guid>http://fedoragus.wordpress.com/2009/11/20/how-to-compile-software-on-fedora-12/</guid>
<description><![CDATA[Usually, to compile a software we can find a lots of probles, now I show you a way to compile on fed]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter" src="http://hacktux.com/files/apache-compile-wallpaper-dark.jpg" alt="" width="500" height="333" /></p>
<p><em>Usually, to compile a software we can find a lots of probles, now I show you a way to compile on fedora 12!</em></p>
<p>We can do:</p>
<pre>[gusions@laptop]# yum groupinstall "Development Tools"</pre>
<p><em>To install the developments tools necessary to build a software.</em></p>
<p><em>Usually in the gnu/linux world there are a lots of format to archive software: .tar.gz, .tgz, .tar.bz2</em></p>
<p><em>We can unpacked these types of archive with these commands:</em></p>
<pre>[gusions@laptop]$ tar -xvzf programma-x.y.z.tgz
[gusions@laptop]$ tar -xvzf programma-x.y.z.tar.gz
[gusions@laptop]$ tar -xvjf programma-x.y.z.bz2</pre>
<p><em>After the unpacking process, we can enter in the folder using :</em></p>
<pre>cd programma.x.y.z/</pre>
<p><em>Run :</em></p>
<pre>./configure</pre>
<p><em>To check the dependencies</em><em>, or other part required by the software!</em></p>
<p><em>After ./configure run:</em></p>
<pre>make
su
make install</pre>
<p><em>To compile and install the software</em>!</p>
<p><em>Usually in Fedora the executing file go in /usr/local, but we can change the folder destination with this command:</em></p>
<pre>./configure --prefix=/percorso/</pre>
<p><em><br />
</em></p>
<p><em>This is a simply tutorial to make, build and install a software!</em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Como desactivar la pantalla de contraseñas de ubuntu]]></title>
<link>http://linuxdom.wordpress.com/2009/11/19/como-desactivar-la-pantalla-de-contrasenas-de-ubuntu/</link>
<pubDate>Thu, 19 Nov 2009 20:14:53 +0000</pubDate>
<dc:creator>Happy-word</dc:creator>
<guid>http://linuxdom.wordpress.com/2009/11/19/como-desactivar-la-pantalla-de-contrasenas-de-ubuntu/</guid>
<description><![CDATA[Para alguno esto es verdadera seguridad para otros es sumamente molesto, y es que todos sabemos que ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:left;">Para alguno esto es verdadera seguridad para otros es sumamente molesto, y es que todos sabemos que esto es una norma en linux para salvaguardar nuestro sistema&#8230; pero para el que quiera desactivar esto solo tiene que seguir estos comandos..</p>
<p>En una terminal ejecuta</p>
<pre>sudo visudo</pre>
<p>en el archivo que se abre busca la línea</p>
<pre>%admin ALL=(ALL) ALL</pre>
<p>y reemplazala por la siguiente</p>
<pre>%admin ALL=(ALL) NOPASSWD: ALL</pre>
<p>Graba y cierra el archivo</p>
<p><a href="http://www.ubuntugeek.com/how-to-disable-password-prompts-in-ubuntu.html">Fuente</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Microsoft patenta el sudo de Linux]]></title>
<link>http://elblogdewilfero.wordpress.com/2009/11/18/microsoft-patenta-el-sudo-de-linux/</link>
<pubDate>Thu, 19 Nov 2009 03:11:45 +0000</pubDate>
<dc:creator>wilferoblog</dc:creator>
<guid>http://elblogdewilfero.wordpress.com/2009/11/18/microsoft-patenta-el-sudo-de-linux/</guid>
<description><![CDATA[Espero que no nos afecte, pero creo que se va a ver raro &#8220;sudo&#8221; en una consola de Window]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Espero que no nos afecte, pero creo que se va a ver raro &#8220;sudo&#8221; en una consola de Windows, o peor aún, que sea parte importante del sistema.</p>
<p>El comando sudo es en Linux algo tan importante y además una herramienta para evitar el &#8220;root&#8221; pero sin ser un usuario común. Ahora Microsoft toma este comando como &#8220;personalizado&#8221; y con entorno gráfico y con eso le tapa la boca a los de patentes de los EEUU.</p>
<p>Espero que no nos vaya a afectar esta decisión por parte del gigante de Redmond.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Comandos Infaltables!!]]></title>
<link>http://freeakx.wordpress.com/2009/11/18/comandos-infaltables/</link>
<pubDate>Wed, 18 Nov 2009 21:40:20 +0000</pubDate>
<dc:creator>Cesar Troya S.</dc:creator>
<guid>http://freeakx.wordpress.com/2009/11/18/comandos-infaltables/</guid>
<description><![CDATA[En esta Oportunidad les Traigo una recopilación de lo q yo concidero son los comandos más, utiles, i]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>En esta Oportunidad les Traigo una recopilación de lo q yo concidero son los comandos más, utiles, importantes y usados tanto en Ubuntu como en muchas otras distros linux</p>
<ul>
<li style="text-align:left;"><strong>Adduser: </strong>Se utiliza para añadir un usuario.</li>
</ul>
<blockquote>
<blockquote><p>Uso: adduser &#60;nombreusuario&#62;</p></blockquote>
</blockquote>
<ul>
<li><strong>Alias (este esta bien explicado en un post anterior)<br />
</strong></li>
</ul>
<p style="padding-left:120px;">Uso: alias nombrequeledamos=’comando’</p>
<ul>
<li><strong>apt-get install nombredelprograma</strong><strong> =  i</strong>nstala el paquete.</li>
</ul>
<ul>
<li><strong>apt-get remove nombredelprograma = </strong>Borra el paquete. Con la opción –purge borra tambien la configuración del paquete instalado.</li>
</ul>
<ul>
<li><strong>apt-get update = </strong>Actualiza la lista de paquetes disponibles para instalar.</li>
</ul>
<ul>
<li style="text-align:left;"><strong>apt-get upgrade  = </strong>Instala las nuevas versiones de los diferentes paquetes disponibles.</li>
</ul>
<ul>
<li><strong>cd = </strong>Cambia el directorio.</li>
</ul>
<blockquote><p>Uso: cd nombredirectorio</p></blockquote>
<p><span style="color:#ff6600;"><em><strong>Continuar leyendo el resto de comandos:</strong></em></span></p>
<ul>
<li><!--more--><strong>chmod: </strong>Cambia los permisos de los archivos.</li>
</ul>
<p style="padding-left:90px;">r:lectura w:escritura x:ejecución<br />
+: añade permisos -:quita permisos<br />
u:usuario g:grupo del usuario o:otros<br />
Uso: chmod permisos nombrearchivo</p>
<ul>
<li><strong>chown: </strong>Cambia el propietario de un archivo.</li>
</ul>
<p style="padding-left:90px;">Uso: chown &#60;nombrepropietario&#62; &#60;nombrearchivo&#62;</p>
<ul>
<li><strong>cp:</strong>Copia archivos en el directorio indicado.</li>
</ul>
<p style="padding-left:60px;">Uso: cp archivoorigen archivodestino</p>
<ul>
<li><strong>deluser: </strong>Elimina una cuenta de usuario</li>
</ul>
<p style="padding-left:90px;">Uso: deluser &#60;nombreusuario&#62;</p>
<ul>
<li><strong>exit:</strong> Cierra las ventanas o las conexiones remotas establecidas</li>
</ul>
<ul>
<li><strong>fsck: </strong>Sirve para chequear si hay errores en nuestro disco duro.</li>
</ul>
<p style="padding-left:90px;">Uso: fsck -t &#60;fs_typo&#62; &#60;dispositivo&#62;</p>
<ul>
<li><strong>ftp: </strong>Protocolo de Transferencia de Archivos, permite transferir archivos de y para computadores remotos.</li>
</ul>
<p style="padding-left:60px;">Uso: ftp &#60;maquina_remota&#62;</p>
<ul>
<li><strong>grep</strong>: Su funcionalidad es la de escribir en salida estándar aquellas líneas que concuerden con un patrón. Busca patrones en archivos.</li>
</ul>
<p style="padding-left:90px;">grep: grep &#60;patronabuscar&#62; &#60;nombrearchivos&#62;</p>
<ul>
<li><strong>ifconfig: </strong>Obtener información de la configuración de red</li>
</ul>
<ul>
<li><strong>kill:</strong> Termina un proceso</li>
</ul>
<p style="padding-left:60px;">Uso: kill numeroPID</p>
<ul>
<li><strong>ls:</strong>Lista los archivos y directorios dentro del directorio de trabajo.</li>
</ul>
<ul>
<li><strong>make:</strong> Crea ejecutables a partir de los archivos fuente.</li>
</ul>
<ul>
<li><strong>man: </strong>muestra el manual de un programa o comando si este esta disponible</li>
</ul>
<p style="padding-left:90px;">Uso: man &#60;nombredelcomando&#62;</p>
<ul>
<li><strong>mkdir: </strong>Crea un nuevo directorio.</li>
</ul>
<p style="padding-left:90px;">Uso: mkdir nombredirectorio</p>
<ul>
<li><strong>mount: </strong>Monta una unidad.</li>
</ul>
<p style="padding-left:90px;">Uso: mount -t&#60; sistema_de_archivo&#62; &#60;dispositivo&#62; &#60;nombredirectorio&#62;</p>
<p><strong><br />
</strong></p>
<ul>
<li><strong>mv: </strong>Este comando sirve para renombrar un archivo.</li>
</ul>
<p style="padding-left:60px;">Uso: mv &#60;nombrearchivo&#62; &#60;nuevonombrearchivo&#62;</p>
<ul>
<li><strong>netstat:</strong>Muestra las conexiones y puertos abiertos por los que se establecen las comunicaciones.</li>
</ul>
<ul>
<li><strong>poweroff: </strong>Apaga el ordenador.</li>
</ul>
<ul>
<li><strong>ps: </strong>Muestra información acerca de los procesos activos.</li>
</ul>
<ul>
<li><strong>rlogin: </strong>Conecta un host local con un host remoto.</li>
</ul>
<p style="padding-left:90px;">Uso: rlogin &#60;maquina_remota&#62;</p>
<ul>
<li><strong>rm: </strong>Remueve o elimina un archivo.</li>
</ul>
<p style="padding-left:60px;">Uso: rm &#60;rutaynombrearchivo&#62;</p>
<ul>
<li><strong>rmdir: </strong>Elimina el directorio indicado, el cual debe estar vacío.</li>
</ul>
<p style="padding-left:90px;">Uso: rmdir nombredirectorio</p>
<ul>
<li><strong>sudo o su:</strong> Con este comando accedemos al sistema como root.</li>
</ul>
<ul>
<li><strong>umount: </strong>Desmontar unidades montadas anteriormente</li>
</ul>
<p style="padding-left:120px;">Uso: umount &#60;nombredirectorio&#62;</p>
<ul>
<li><strong>wc:</strong>Cuenta los caráteres, palabras y líneas del archivo de texto.</li>
</ul>
<p style="padding-left:60px;">Uso: wc nom_archivo</p>
<p style="padding-left:60px;">
<ul>
<li><strong>whereis: </strong>Devuelve la ubicación del archivo especificado, si existe.</li>
</ul>
<p style="padding-left:60px;">Uso: whereis nomb_archivo</p>
<p><strong>Larga vida a la consola!!</strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Humor, Tira Linux Hispano, sudo]]></title>
<link>http://jvare.wordpress.com/2009/11/17/humor-tira-linux-hispano-sudo/</link>
<pubDate>Tue, 17 Nov 2009 21:28:13 +0000</pubDate>
<dc:creator>jvare</dc:creator>
<guid>http://jvare.wordpress.com/2009/11/17/humor-tira-linux-hispano-sudo/</guid>
<description><![CDATA[He aquí uno de los problemas para ganar dinero con el software libre, los que tienen que dirigir la ]]></description>
<content:encoded><![CDATA[He aquí uno de los problemas para ganar dinero con el software libre, los que tienen que dirigir la ]]></content:encoded>
</item>
<item>
<title><![CDATA[Canon PIXMA MP560 Printer]]></title>
<link>http://kyliente.wordpress.com/2009/11/17/canon-pixma-mp560-printer/</link>
<pubDate>Tue, 17 Nov 2009 07:44:38 +0000</pubDate>
<dc:creator>kyliente</dc:creator>
<guid>http://kyliente.wordpress.com/2009/11/17/canon-pixma-mp560-printer/</guid>
<description><![CDATA[I got really tired of having to go to the community building where there is a printer with two compu]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I got really tired of having to go to the community building where there is a printer with two computers next to it in order print. Half the time I needed to print something, both the computers are being used up and I can&#8217;t print until one of them gets off. I&#8217;ve seen people watch youtube videos and play farmville. So, when it came to my birthday, I received a decent amount of money from my relatives and decided to buy my own printer! The Canon PIXMA MP560 sounded like the perfect printer for me. It was the cheapest printer I could find that was wireless, simple looking, and had two-sided printing.</p>
<div id="attachment_128" class="wp-caption alignright" style="width: 310px"><img class="size-medium wp-image-128" title="Screen shot 2009-11-16 at 11.15.23 PM" src="http://kyliente.wordpress.com/files/2009/11/screen-shot-2009-11-16-at-11-15-23-pm.png?w=300" alt="" width="300" height="261" /><p class="wp-caption-text">What I saw when trying to add my printer... the printer was not listed, but the scanner was. </p></div>
<p>After receiving this wonderful printer of mine, I found out that my MacBook was not able to detect the printer. The printer was supposed to be detected by my MacBook through bonjour, but the only thing that showed up was the scanner, not the printer. I couldn&#8217;t figure it out for the life of me, so I decided to look online.</p>
<p>That is when I ran into a <a href="http://discussions.apple.com/thread.jspa?threadID=2224953&#38;start=0&#38;tstart=0" target="_blank">forum post</a> on the Apple Discussion board. This post had someone having trouble trying to connect to their MP560 just like I was. I tried everything the people suggested, but could not get it to work. Pahu, the person who was helping the guy out, was the person who also tried to help me. He suggested that I have CUPS installed from <a href="http://www.usa.canon.com/consumer/controller?act=ModelInfoAct&#38;fcategoryid=2610&#38;modelid=18954#DownloadDetailAct" target="_blank">Canons website</a>. I installed it, the printer still wouldn&#8217;t show up. He then asked me if I had firewall setup or Parallels installed. Well, I never had my firewall setup, but I do have Parallels installed. Apparently, Parallels has a known problem to block the protocol that some Canon printers try to communicate through to the computer.</p>
<p>My first reaction&#8230; I do not want to uninstall Parallels because I bought the program and I use it fairly often for work and school purposes. So, I searched once again and found <a href="http://discussions.apple.com/thread.jspa?messageID=10115866&#38;#10115866" target="_blank">another forum post</a>. This one suggested that I stop a Parallels service that was running in the background by opening Terminal and typing &#8220;sudo launchctl stop com.parallels.desktop.launchdaemon&#8221; into it, without quotes.</p>
<div id="attachment_129" class="wp-caption alignleft" style="width: 310px"><img class="size-medium wp-image-129 " style="border:0 none initial;margin:0;padding:0;" title="Screen shot 2009-11-16 at 11.29.11 PM" src="http://kyliente.wordpress.com/files/2009/11/screen-shot-2009-11-16-at-11-29-11-pm.png?w=300" alt="" width="300" height="261" /><p class="wp-caption-text">This is what you are supposed to see when adding the MP560 as a printer.</p></div>
<p>Well what do you know? I opened the &#8220;add printer&#8221; dialogue again and it showed up after a good 10 seconds. So, when installing the Canon PIXMA MP560 Printer on a Mac, make sure you have CUPS drivers installed, MP560 Mac drivers installed, and parallels service not running by using the sudo command mentioned above (or just not installed period). Also, to print double-sided you will have to select the &#8220;duplex printing&#8221; option in the printer settings when printing. Took me awhile to figure out, but a quick search of the printers manual helped me solve that problem.</p>
<p>&#160;</p>
<p>Okay so this is a lot of information, but it&#8217;s mainly to help anyone who is having problems with the same printer. As an extra treat I should let you all know that there is an <a href="http://itunes.apple.com/us/app/canon-easy-photoprint-for-iphone/id331269951?mt=8" target="_blank">iPhone app</a> that allows you to print photos from your iPhone to the printer, wirelessly. Of course you will have to be connected to the same WiFi as the printer.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Make Me A Sandwich]]></title>
<link>http://baysideufl.wordpress.com/2009/11/16/make-me-a-sandwich/</link>
<pubDate>Tue, 17 Nov 2009 02:33:07 +0000</pubDate>
<dc:creator>baysideufl</dc:creator>
<guid>http://baysideufl.wordpress.com/2009/11/16/make-me-a-sandwich/</guid>
<description><![CDATA[This&#8230;is&#8230;hilarious&#8230; awesome&#8230;]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>This&#8230;is&#8230;hilarious&#8230;</p>
<p><a href="http://baysideufl.wordpress.com/files/2009/11/sudo-sandwich.jpg"><img class="alignnone size-medium wp-image-162" title="sudo sandwich" src="http://baysideufl.wordpress.com/files/2009/11/sudo-sandwich.jpg?w=300" alt="" width="300" height="248" /></a></p>
<p>awesome&#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Ubuntu Türkiye E-dergisi SUDO’nun onüçüncü sayısı.]]></title>
<link>http://belgelerim.wordpress.com/2009/11/16/ubuntu-turkiye-e-dergisi-sudo%e2%80%99nun-onucuncu-sayisi/</link>
<pubDate>Mon, 16 Nov 2009 18:17:22 +0000</pubDate>
<dc:creator>belgelerim</dc:creator>
<guid>http://belgelerim.wordpress.com/2009/11/16/ubuntu-turkiye-e-dergisi-sudo%e2%80%99nun-onucuncu-sayisi/</guid>
<description><![CDATA[&nbsp; İçindekiler; * Ubuntu ONE (Hakan TÜRÜT) * Gnome Shell (Ayhan AKTAŞ) * Tremulos (Ayhan AKTAŞ) ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>&#160;</p>
<p><img src="http://sudo.ubuntu-tr.org/sudo/resim/sudo13.jpg" alt="" width="400" height="300" /></p>
<p><strong>İçindekiler;</strong></p>
<p>* Ubuntu ONE (Hakan TÜRÜT)<br />
* Gnome Shell (Ayhan AKTAŞ)<br />
* Tremulos (Ayhan AKTAŞ)<br />
* Django (Levent ALTUNÖZ)<br />
* OpenSuse 11.2 (Ömer KIRMIZI)<br />
* Deluge (Utku DEMİR)<br />
* Karmic Röportajı (Ayhan AKTAŞ)<br />
* Güldürü (Levent ALTUNÖZ – Yusuf SANSARKAN)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Microsoft patent 7617530, the flap about sudo]]></title>
<link>http://hypecycles.wordpress.com/2009/11/15/microsoft-patent-7617530/</link>
<pubDate>Sun, 15 Nov 2009 23:13:39 +0000</pubDate>
<dc:creator>amrith</dc:creator>
<guid>http://hypecycles.wordpress.com/2009/11/15/microsoft-patent-7617530/</guid>
<description><![CDATA[The blogosphere has been buzzing with indignation about a Microsoft patent application 7617530 that ]]></description>
<content:encoded><![CDATA[The blogosphere has been buzzing with indignation about a Microsoft patent application 7617530 that ]]></content:encoded>
</item>
<item>
<title><![CDATA[Microsoft brevetta sudo? cazzate col botto!]]></title>
<link>http://vistabuntu.wordpress.com/2009/11/14/microsoft-brevetta-sudo-cazzate-col-botto/</link>
<pubDate>Sat, 14 Nov 2009 15:57:10 +0000</pubDate>
<dc:creator>gilean</dc:creator>
<guid>http://vistabuntu.wordpress.com/2009/11/14/microsoft-brevetta-sudo-cazzate-col-botto/</guid>
<description><![CDATA[E&#8217; di recente data la notizia secondo la quale Microsoft starebbe brevettando il tanto famoso ]]></description>
<content:encoded><![CDATA[E&#8217; di recente data la notizia secondo la quale Microsoft starebbe brevettando il tanto famoso ]]></content:encoded>
</item>
<item>
<title><![CDATA[Microsoft i sudo(ri) freddi e la GPL]]></title>
<link>http://idl3.wordpress.com/2009/11/14/microsoft-i-sudori-freddi-e-la-gpl/</link>
<pubDate>Sat, 14 Nov 2009 14:05:57 +0000</pubDate>
<dc:creator>idl3</dc:creator>
<guid>http://idl3.wordpress.com/2009/11/14/microsoft-i-sudori-freddi-e-la-gpl/</guid>
<description><![CDATA[In questi giorni la Microsoft e&#8217; riuscita a farsi odiare ancora di piu&#8217;, anche se non se]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>In questi giorni la <strong>Microsoft e&#8217; riuscita a farsi odiare ancora di piu&#8217;</strong>, anche se non sembrava possibile. Tutto e&#8217; cominciato dalla <a href="http://punto-informatico.it/2749062/PI/News/microsoft-inciampa-nella-gpl.aspx">notizia</a> del <strong>furto di codice sotto licenza <acronym title="GNU General Public License">GPL</acronym></strong>, ed e&#8217; proseguito per l&#8217;allarme, partito probabilmente da <a href="http://www.groklaw.net/article.php?story=20091111094923390">questo sito</a> e poi rimbalzato in ogni forum/blog/ecc., per una notizia secondo la quale <strong>Microsoft avrebbe brevettato sudo</strong>. Analizziamo le due notizie per <strong>vedere se l&#8217;allarme e l&#8217;odio sono giustificati</strong>.</p>
<p><img src="http://idl3.wordpress.com/files/2009/11/microsoft-sign.jpg?w=150" alt="microsoft-sign" title="microsoft-sign" width="150" height="134" class="alignleft size-thumbnail wp-image-1100" />Messa cosi&#8217; la situazione e&#8217; <strong>inquietante e preoccupante</strong>. Inquietante perche&#8217; <strong>sudo</strong> e&#8217; un comando utilizzato da anni negli ambienti Unix &#38; sons e perche&#8217; il <strong>furto del codice</strong> e&#8217; un atto grave, preoccupante perche&#8217; un <strong>ufficio brevetti</strong> non deve permettere di far brevettare cose che non implicano una novita&#8217; (tecnica o d&#8217;uso) e perche&#8217; si suppone che la <strong>GPL</strong> protegga il codice anche in queste situazioni. Vediamo dunque le singole notizie, parto dal brevetto di sudo.</p>
<p><img src="http://idl3.wordpress.com/files/2009/11/uspto.jpg?w=150" alt="uspto" title="uspto" width="150" height="150" class="alignright size-thumbnail wp-image-1102" /><strong>SUDO BREVETTATO?</strong> &#8211; I rapporti tra <strong>utenti GNU/Linux e Microsoft</strong> non sono certo dei migliori, e&#8217; normale quindi che una notizia del genere abbia scatenato una marea di articoli su blog e forum <strong>tra l&#8217;insulto e l&#8217;incredulita&#8217;</strong>. Ma e&#8217; stato veramente brevettato sudo? Prima di tutto vediamo di capire <strong>cos&#8217;e&#8217; sudo</strong>, <a href="http://it.wikipedia.org/wiki/Sudo">leggiamo da Wikipedia</a>:</p>
<blockquote><p>sudo (abbreviazione dalla lingua inglese di super user do, esegui come superutente) è un programma per i sistemi operativi Unix e Unix-like che, con dei vincoli, permette di eseguire altri programmi assumendo l&#8217;identità (e di conseguenza anche i privilegi) di altri utenti.</p></blockquote>
<p>Ora andiamoci a leggere il <a href="http://patft1.uspto.gov/netacgi/nph-Parser?Sect1=PTO1&#38;Sect2=HITOFF&#38;d=PALL&#38;p=1&#38;u=/netahtml/PTO/srchnum.htm&#38;r=1&#38;f=G&#38;l=50&#38;s1=7,617,530.PN.&#38;OS=PN/7,617,530&#38;RS=PN/7,617,530">brevetto 7617530</a> concesso il 10 novembre 2009 alla Microsoft dall&#8217;<strong>USPTO</strong> (United States Patent and Trademark Office):</p>
<blockquote><p>Systems and/or methods are described that enable a user to elevate his or her rights. In one embodiment, these systems and/or methods present a user interface identifying an account having a right to permit a task in response to the task being prohibited based on a user&#8217;s current account not having that right.</p></blockquote>
<p>Ma e&#8217; proprio lui, e&#8217; sudo! Tra l&#8217;altro una versione di <a href="http://sourceforge.net/projects/sudowin/">sudo per Windows</a> esisteva gia&#8217;. Pero&#8217; si tratta solo di un <strong>brevissimo estratto</strong>, non possiamo trarre conclusioni affrettate, quindi <strong>proseguiamo</strong> con la lettura. </p>
<p>Continuando a leggere <strong>scopriamo</strong> che:</p>
<blockquote><p>At arrow 6, user interface 116 presents a graphical user interface (GUI) to the user having at least one account with rights sufficient to permit the prohibited task. The graphical use interface may comprise one, many, or all accounts having sufficient rights. In some cases all of the accounts may be so many as to be cumbersome. In these cases, the user interface and/or rights elevator may select which to present based on various criteria, such as frequency of use, those associated with the current user, those with sufficient but not unlimited rights, and the like. </p></blockquote>
<p>Ecco la novita&#8217; che giustifica la <strong>brevettabilita&#8217;</strong>. Il &#8220;<em>sudo</em>&#8221; brevettato da Windows ha l&#8217;<strong>interfaccia grafica</strong>. Non e&#8217; quindi sudo. Inoltre il brevetto di Microsoft indica un&#8217;altra differenza con sudo, contenuto in queste parole: &#8220;<em>one, many, or all accounts</em>&#8220;, funzionalita&#8217; che mi pare proprio <strong>non sia presente in sudo</strong>. Questo brevetto di Microsoft serve per <strong>coprire l&#8217;User Account Control (UAC) di Windows Vista e 7</strong>.</p>
<p><img src="http://idl3.wordpress.com/files/2009/11/microsoft_logo.jpg?w=150" alt="microsoft_logo" title="microsoft_logo" width="150" height="120" class="alignleft size-thumbnail wp-image-1103" />Insomma, se ci fermiamo alle prime righe del brevetto <strong>e&#8217; normale fraintendere</strong>, ma se leggiamo tutto quanto scopriamo ad esempio che questo pseudo sudo della Microsoft &#8211; o meglio, <strong>le parti di questo pseudo sudo coperte dal brevetto</strong> &#8211; sono il fatto che all&#8217;utente puo&#8217; essere data la possibilita&#8217; di incrementare momentaneamente i suoi privilegi quando si trova a non poter compiere una determinata azione a causa dei suoi limitati privilegi, il tutto scegliendo da un <strong>elenco grafico</strong> tra i privilegi dei <strong>vari utenti</strong> che hanno i privilegi sufficienti a compiere quell&#8217;azione. <strong>Sudo non ha ne&#8217; la GUI, ne&#8217; la lista degli utenti autorizzati</strong>. Si tratta dunque di un&#8217;<strong>estensione delle funzioni dell&#8217;UAC</strong>.</p>
<p>E&#8217; un brevetto che <strong>non intacca minimamente il nostro sudo</strong>. E a <a href="http://blog.seattlepi.com/microsoft/archives/184980.asp">dirlo</a> e&#8217; <strong>Todd Miller</strong> (l&#8217;ingegnere che ha gestito sudo fin dal 1993):</p>
<blockquote><p>&#8220;I really don&#8217;t think that that patent applies to sudo. I read through it and it seems to be something completely different.&#8221;</p></blockquote>
<p>Anche perche&#8217; <strong>ad essere coperte da brevetto sono le parti del programma la cui brevettabilita&#8217; e&#8217; stata accettata, non tutto il programma</strong>.</p>
<p>Pare quindi che questa volta (sottolineo questa volta) Microsoft non abbia fatto <strong>nulla di male</strong>. Se invece si vuole valutare l&#8217;<strong>opportunita&#8217;</strong> o meno di brevettare i bit, allora il discorso cambia, si puo&#8217; essere d&#8217;accordo o contrari, ma <strong>finche&#8217; sara&#8217; legalmente possibile, non possiamo darne la colpa a chi ne approfitta</strong>.</p>
<p><img src="http://idl3.wordpress.com/files/2009/11/gpl_logo.jpg?w=150" alt="gpl_logo" title="gpl_logo" width="150" height="147" class="alignright size-thumbnail wp-image-1104" /><strong>FURTO DI CODICE SOTTO GPL</strong> &#8211; Un&#8217;altra notizia ha creato un certo scalpore, una <em>utility</em> di Windows ha varie <strong>righe di codice identiche</strong> ad un&#8217;applicazione sotto licenza <strong>GPLv2</strong>. Qualcuno si e&#8217; scaricato l&#8217;utility <strong>Windows 7 USB/DVD Download</strong> (applicazione che facilita la creazione di un&#8217;immagine di Windows 7 da inserire in una penna USB o da masterizzare in un DVD), ne ha guardato il <strong>codice</strong> e ha notato che in alcune parti e&#8217; <strong>identico a ImageMaster</strong> (progetto ospitato all&#8217;interno di <a href="http://www.codeplex.com/">Codeplex</a>):<br />
<div id="attachment_1097" class="wp-caption aligncenter" style="width: 310px"><a href="http://idl3.wordpress.com/files/2009/11/windows-furto-gpl.png"><img src="http://idl3.wordpress.com/files/2009/11/windows-furto-gpl.png?w=300" alt="Codici a confronto" title="windows-furto-gpl" width="300" height="137" class="size-medium wp-image-1097" /></a><p class="wp-caption-text">Codici a confronto (premi per ingrandire)</p></div></p>
<p>Dopo la segnalazione la Microsoft ha comunicato che <strong>il furto non e&#8217; stato intenzionale</strong>, in quanto si tratta di un <strong>software sviluppato (rubato) da terzi</strong> esterni alla Microsoft. Resta comunque la <strong>colpa grave</strong> della Microsoft per non aver notato la presenza di codice sotto licenza GPLv2. Pare comunque che voglia rimediare ai suoi errori, l&#8217;utility e&#8217; stata cosi&#8217; <strong>rimossa dal Microsoft Store</strong>, anche se da qualche parte <a href="http://download.cnet.com/Windows-7-USB-DVD-Download-Tool/3000-18513_4-10972600.html">e&#8217; ancora scaricabile</a>.</p>
<p>Inoltre sembrerebbe che la Microsoft <strong>piuttosto che far sparire il progetto</strong> abbia intenzione di <strong>rilasciarlo in accordo con la <a href="http://www.gnu.org/licenses/gpl-2.0.txt">licenza GPLv2</a></strong>. Fonti <a href="http://redmondmag.com/articles/2009/11/13/windows-7-download-utility-contains-gpl-code.aspx">ufficiali</a> infatti <strong>affermano</strong> che:</p>
<blockquote><p>&#8220;we will be making the source code as well as binaries for this tool available next week under the terms of the General Public License v2 as described here, and are also taking measures to apply what we have learned from this experience for future code reviews we perform&#8221;</p></blockquote>
<p>A dirlo e&#8217; <strong>Peter Galli</strong> (open source community manager for Microsoft&#8217;s Platform Strategy Group).</p>
<p><strong>ImageMaster</strong> e&#8217; invece <a href="http://www.codeplex.com/ImageMaster">sparito</a> dal sito di <strong>Codeplex</strong>:</p>
<blockquote><p>This project is not yet published</p></blockquote>
<p>Si possono trarre due morali da questa storia. La prima e&#8217; che bisogna tenere sempre gli <strong>occhi ben aperti e leggere tutto</strong> sino in fondo (sia che si tratti di codice sia che si tratti di un brevetto), la seconda e&#8217; che <strong>la licenza GPL funziona</strong>.</p>
<hr />
<p style="text-align:right;"><a href="#content" title="torna su">[^] torna su</a>&#160;&#124;&#160;<a href="http://postli.com/post?u=http://idl3.wordpress.com/2009/11/14/microsoft-i-sudori-freddi-e-la-gpl/&#38;t=Microsoft i sudo(ri) freddi e la GPL" title="Post to Postli" style="color:blue;text-decoration:none;">post<span style="color:orange;">&#60;</span><span style="color:red;">li</span><span style="color:orange;">&#62;</span></a>&#160;&#124;&#160;<a href="http://www.wikio.it/vote?url=http://idl3.wordpress.com/2009/11/14/microsoft-i-sudori-freddi-e-la-gpl/" target="_blank"><img src="http://www.wikio.it/shared/img/vote/wikio2.gif" border="0" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[#6 – (s)Collegamenti]]></title>
<link>http://idl3.wordpress.com/2009/11/14/6-scollegamenti/</link>
<pubDate>Sat, 14 Nov 2009 07:29:54 +0000</pubDate>
<dc:creator>idl3</dc:creator>
<guid>http://idl3.wordpress.com/2009/11/14/6-scollegamenti/</guid>
<description><![CDATA[Creare un .deb partendo da Python Programmate in Python e non sapete come creare un file .deb per la]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Creare un .deb partendo da Python</strong><br />
Programmate in Python e non sapete come creare un file .deb per la vostra distro Debian (o derivate come Ubuntu)? La soluzione è semplice e non serve molto per creare il vostro deb da usare oppure da condividere su internet per tutti i debianizzati.<br />
<a href="http://mika29.wordpress.com/2009/10/23/creare-un-deb-partendo-da-python/">Continua a leggere&#8230;</a></p>
<p><strong>Five Power Tools for Pidgin</strong><br />
Pidgin is a great GTK2-based instant messenger application that supports a bevy of protocols, including ICQ, Yahoo!, MSN, Jabber, and AIM. It&#8217;s a terrific app in its own right, but when you add some of these power tools, Pidgin is even better.<br />
<a href="http://ostatic.com/blog/five-power-tools-for-pidgin">Continua a leggere&#8230;</a></p>
<p><strong>Installare e configurare sudo su Debian</strong><br />
Questa breve guida è dedicata all&#8217;installazione e alla configurazione base di sudo. Molto semplicemente, sudo è l&#8217;acronimo di superuser do. Si intuisce quindi immediatamente il significato di questo comando molto utile: fornire i privilegi di root ad un singolo utente.<br />
<a href="http://www.e-pillole.com/linux/post/20/installare-e-configurare-sudo-su-debian/">Continua a leggere&#8230;</a></p>
<p><strong>Fstab Demystified: How to Add Partitions</strong><br />
In this article, you will learn to understand fstab (File System Table) and its entries. We&#8217;ll show you how to add a new hard drive to fstab and mount the partitions automatically on boot. We&#8217;ll also explain some of the terminology used in fstab, and we take a look at the fdisk command.<br />
<a href="http://www.brighthub.com/computing/linux/articles/13750.aspx">Continua a leggere&#8230;</a></p>
<p><strong>QuickTip: Make life easier with ssh-copy-id</strong><br />
Thanks to bash&#8217;s tab completion, I happened upon ssh-copy-id. Instead of all that above, just do this:<br />
<code>$ ssh-copy-id myhost</code><br />
<a href="http://www.sysadminsjourney.com/content/2009/11/12/quicktip-make-life-easier-ssh-copy-id">Continua a leggere&#8230;</a></p>
<hr />
<p style="text-align:right;"><a href="#content" title="torna su">[^] torna su</a>&#160;&#124;&#160;<a href="http://postli.com/post?u=http://idl3.wordpress.com/2009/11/14/6-scollegamenti/&#38;t=6 – sCollegamenti" title="Post to Postli" style="color:blue;text-decoration:none;">post<span style="color:orange;">&#60;</span><span style="color:red;">li</span><span style="color:orange;">&#62;</span></a>&#160;&#124;&#160;<a href="http://www.wikio.it/vote?url=http://idl3.wordpress.com/2009/11/14/6-scollegamenti/" target="_blank"><img src="http://www.wikio.it/shared/img/vote/wikio2.gif" border="0" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Microsoft patenta el comando sudo]]></title>
<link>http://conocimientolibre.wordpress.com/2009/11/14/microsoft-patenta-el-comando-sudo/</link>
<pubDate>Sat, 14 Nov 2009 03:10:38 +0000</pubDate>
<dc:creator>Ricardo Pluss</dc:creator>
<guid>http://conocimientolibre.wordpress.com/2009/11/14/microsoft-patenta-el-comando-sudo/</guid>
<description><![CDATA[Fuente: barrapunto Un Mundo Libre nos cuenta: «Groklaw ha dado la voz de alarma sobre la patente 7.6]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Fuente: <a href="http://barrapunto.com/articles/09/11/12/111207.shtml">barrapunto</a></p>
<div><a rel="nofollow" href="http://unmundolibre.net/">Un Mundo Libre</a> nos cuenta: <em>«<a href="http://www.groklaw.net/article.php?story=20091111094923390">Groklaw</a> ha dado la voz de alarma sobre la <a href="http://patft1.uspto.gov/netacgi/nph-Parser?Sect1=PTO1&#38;Sect2=HITOFF&#38;d=PALL&#38;p=1&#38;u=/netahtml/PTO/srchnum.htm&#38;r=1&#38;f=G&#38;l=50&#38;s1=7,617,530.PN.&#38;OS=PN/7,617,530&#38;RS=PN/7,617,530">patente 7.617.530</a>: Microsoft patenta el comando sudo. Aunque se trata de una versión personalizada en la forma, en el fondo la supuesta invención de la compañía de Redmond no aporta nada especialmente nuevo con respecto a lo que lleva haciendo el <a href="http://www.sudo.ws/">comando sudo</a> desde principios de la década de los ochenta, fecha en la que Bob Coggeshall y Cliff Spencer lo diseñaron e integraron en el Departamento de Informática en SUNY/Buffalo.»</em></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[El comportamiento de sudo es patentado por Microsoft]]></title>
<link>http://mgsanchezs.wordpress.com/2009/11/13/el-comportamiento-de-sudo-es-patentado-por-microsoft/</link>
<pubDate>Sat, 14 Nov 2009 02:43:13 +0000</pubDate>
<dc:creator>MgsanchezS</dc:creator>
<guid>http://mgsanchezs.wordpress.com/2009/11/13/el-comportamiento-de-sudo-es-patentado-por-microsoft/</guid>
<description><![CDATA[// Microsoft se ha hecho de la patente número 7617530 que duplica casi por igual el comportamiento q]]></description>
<content:encoded><![CDATA[// Microsoft se ha hecho de la patente número 7617530 que duplica casi por igual el comportamiento q]]></content:encoded>
</item>
<item>
<title><![CDATA[Cambiando el nombre a "sudo"]]></title>
<link>http://tuxbelito.wordpress.com/2009/11/13/cambiando-el-nombre-a-sudo/</link>
<pubDate>Fri, 13 Nov 2009 20:18:05 +0000</pubDate>
<dc:creator>Sr. Luzbel</dc:creator>
<guid>http://tuxbelito.wordpress.com/2009/11/13/cambiando-el-nombre-a-sudo/</guid>
<description><![CDATA[Si estas cansado de poner siempre la misma palabra «sudo» para obtener permisos de root hoy te voy a]]></description>
<content:encoded><![CDATA[Si estas cansado de poner siempre la misma palabra «sudo» para obtener permisos de root hoy te voy a]]></content:encoded>
</item>
<item>
<title><![CDATA[sudo microsoft]]></title>
<link>http://vaccaricarlo.wordpress.com/2009/11/13/sudo-microsoft/</link>
<pubDate>Fri, 13 Nov 2009 17:58:26 +0000</pubDate>
<dc:creator>vaccaricarlo</dc:creator>
<guid>http://vaccaricarlo.wordpress.com/2009/11/13/sudo-microsoft/</guid>
<description><![CDATA[ridicolo! microsoft ha brevettato le funzionalità del comando sudo, un comando che esiste dalla nott]]></description>
<content:encoded><![CDATA[ridicolo! microsoft ha brevettato le funzionalità del comando sudo, un comando che esiste dalla nott]]></content:encoded>
</item>
<item>
<title><![CDATA[Solo para geeks]]></title>
<link>http://usingyourbrain.wordpress.com/2009/11/13/solo-para-geeks/</link>
<pubDate>Fri, 13 Nov 2009 12:47:34 +0000</pubDate>
<dc:creator>theboywithoutribs</dc:creator>
<guid>http://usingyourbrain.wordpress.com/2009/11/13/solo-para-geeks/</guid>
<description><![CDATA[Via: Gizmodo]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://gizmodo.com/5402796/microsoft-patents-the-sudo-command?utm_source=feedburner&#38;utm_medium=feed&#38;utm_campaign=Feed:+gizmodo/full+(Gizmodo)&#38;utm_content=Google+Reader"><img class="alignnone" title="sudo" src="http://cache.gawker.com/assets/images/gizmodo/2009/11/sudowich_01.jpg" alt="sudo" width="340" height="282" /></a></p>
<p>Via: <a href="http://gizmodo.com/5402796/microsoft-patents-the-sudo-command?utm_source=feedburner&#38;utm_medium=feed&#38;utm_campaign=Feed:+gizmodo/full+(Gizmodo)&#38;utm_content=Google+Reader" target="_self">Gizmodo</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[adobe cs4 master collection cracks]]></title>
<link>http://adobecs4mastercollection.wordpress.com/2009/11/13/adobe-cs4-master-collection-cracks/</link>
<pubDate>Fri, 13 Nov 2009 08:04:33 +0000</pubDate>
<dc:creator>Adobe CS4 Master Collection</dc:creator>
<guid>http://adobecs4mastercollection.wordpress.com/2009/11/13/adobe-cs4-master-collection-cracks/</guid>
<description><![CDATA[[RS] Adobe Creative Suite 4 Master Collection Content Learning -Adobe.Master.Collection.CS4.FINAL.WI]]></description>
<content:encoded><![CDATA[[RS] Adobe Creative Suite 4 Master Collection Content Learning -Adobe.Master.Collection.CS4.FINAL.WI]]></content:encoded>
</item>
<item>
<title><![CDATA[Microsoft brevetta sudo]]></title>
<link>http://gianmichele.wordpress.com/2009/11/13/microsoft-brevetta-sudo/</link>
<pubDate>Fri, 13 Nov 2009 07:46:50 +0000</pubDate>
<dc:creator>gianmichele</dc:creator>
<guid>http://gianmichele.wordpress.com/2009/11/13/microsoft-brevetta-sudo/</guid>
<description><![CDATA[La concessione di un brevetto su un comando risalente all&#8217;alba dei tempi digitali scatena le e]]></description>
<content:encoded><![CDATA[La concessione di un brevetto su un comando risalente all&#8217;alba dei tempi digitali scatena le e]]></content:encoded>
</item>

</channel>
</rss>
