<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>clipping de internet</title>
	<atom:link href="http://clippingme.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://clippingme.wordpress.com</link>
	<description>recortes y documentación interesante de internet.</description>
	<lastBuildDate>Fri, 27 Jan 2012 22:54:09 +0000</lastBuildDate>
	<language>es</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='clippingme.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>clipping de internet</title>
		<link>http://clippingme.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://clippingme.wordpress.com/osd.xml" title="clipping de internet" />
	<atom:link rel='hub' href='http://clippingme.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Virtualizing a Linux System (Creating a Linux VM P2V)</title>
		<link>http://clippingme.wordpress.com/2012/01/27/virtualizing-a-linux-system-creating-a-linux-vm-p2v/</link>
		<comments>http://clippingme.wordpress.com/2012/01/27/virtualizing-a-linux-system-creating-a-linux-vm-p2v/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 22:54:03 +0000</pubDate>
		<dc:creator>clippingme</dc:creator>
				<category><![CDATA[virtualización]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://clippingme.wordpress.com/?p=345</guid>
		<description><![CDATA[Fuente: http://www.localizingjapan.com/blog/2011/03/05/virtualizing-a-linux-system-creating-a-linux-vm-p2v/ This tutorial article is going to show you how to create a Linux virtual machine from a physical Linux system. These instructions are generic enough to work with any Linux distribution, such as Ubuntu, Fedora, Red Hat, CentOS, Debian, Mint, etc. There are many reasons why you would create a VM of a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clippingme.wordpress.com&amp;blog=11174705&amp;post=345&amp;subd=clippingme&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Fuente: <a href="http://www.localizingjapan.com/blog/2011/03/05/virtualizing-a-linux-system-creating-a-linux-vm-p2v/">http://www.localizingjapan.com/blog/2011/03/05/virtualizing-a-linux-system-creating-a-linux-vm-p2v/</a></p>
<p>This tutorial article is going to show you how to create a Linux virtual machine from a physical Linux system. These instructions are generic enough to work with any Linux distribution, such as Ubuntu, Fedora, Red Hat, CentOS, Debian, Mint, etc.</p>
<p>There are many reasons why you would create a VM of a physical system you have running. You might want to test out things before you try them on your actual system. It is useful when you are translating to have both the English and Japanese (or other language) OS and applications open side by side to reference the correct translations easily. Whatever the reason, this article will show you one way to do it pretty easily.</p>
<p>Overview of the Linux VM creation task:</p>
<p>Tools and Resources Needed</p>
<ul>
<li><a href="http://www.sysresccd.org/Main_Page">SystemRescueCd ISO file</a></li>
<li>Blank CD-ROM or USB disk</li>
<li>USB disk drive large enough to fit entire Linux system</li>
<li>VMware or VirtualBox</li>
</ul>
<p>Preparation Tasks</p>
<ol>
<li>Make note of the disk partitioning</li>
<li>Create a bootable Linux rescue disk</li>
</ol>
<p>Main Tasks</p>
<ol>
<li>Image the hard drive partitions</li>
<li>Create an empty Virtual Machine</li>
<li>Recreate the hard drive partitions</li>
<li>Restore the hard drive partitions</li>
<li>Set up the boot loader</li>
</ol>
<p>Final Task – Boot the VM</p>
<p>Optional Task – Configure X11</p>
<h3>Preparation Tasks</h3>
<h4>Make Note of the Disk Partitioning</h4>
<p>On the physical Linux system we want to virualize, run the <em>df</em> command to list the partitions and mount points</p>
<pre>df -h</pre>
<p>Make a note of the partitions, their sizes, and mount points. You will use this information later to recreate the disk partitioning in the virtual machine.</p>
<h4>Create a Bootable Linux Rescue Disk</h4>
<p>For the task of converting a physical Linux system to a virtual machine we are going to use another version of Linux to do the work in. Any bootable version of Linux will work, and I really like <a href="http://www.sysresccd.org/Main_Page">SystemRescueCd</a> for this task. It is a light-weight Linux system that comes with all the system tools you’ll need for this job like partimage and fdisk (or GParted).</p>
<p>Download the <a href="http://www.sysresccd.org/Download">SystemRescueCd ISO file</a>.</p>
<p>Burn the ISO file to a CD-ROM, or <a href="http://www.sysresccd.org/Sysresccd-manual-en_How_to_install_SystemRescueCd_on_an_USB-stick">follow the instructions to make a bootable USB stick</a>.</p>
<p>Power down the physical Linux computer we are going to virtualize and put the SystemRescueCd in the CD-ROM drive or USB drive.</p>
<p>Turn the computer on and boot to SystemRescueCd Linux.</p>
<h3>Main Tasks</h3>
<h4>Image the Hard Drive Partitions</h4>
<p>Plug in your external USB hard drive.</p>
<p>Run the <em>dmesg</em> command to find the device name of the USB hard drive.</p>
<pre>dmesg</pre>
<p>Look for your hard drive name and description. For example, if you plugged in a Western Digital My Passport drive you should see something similar to this:</p>
<pre>usb 2-1: Product: My Passport 070A
usb 2-1: Manufacturer: Western Digital
sd 4:0:0:0: [sdb] 1463775232 512-byte logical blocks: (749 GB/697 GiB)
sd 4:0:0:0: [sdb] Write Protect is off
sd 4:0:0:0: [sdb] Mode Sense: 23 00 10 00
sd 4:0:0:0: [sdb] Assuming drive cache: write through
sdb: sdb1</pre>
<p>The key piece of information here is the <em>sdb1</em> on the last line. This is the device name we will use to mount the USB hard drive.</p>
<p>Create a directory to mount the USB hard drive. For example, a new directory called <em>flash</em>.</p>
<pre>mkdir /mnt/flash</pre>
<p>Mount the USB hard drive, device sdb1, on the newly created directory.</p>
<pre>mount /dev/sdb1 /mnt/flash</pre>
<p>Run the partimage program to image the partitions.</p>
<pre>partimage</pre>
<p>Use the GUI to select the partition to image.</p>
<p>Press <strong>Tab</strong> and enter the file name for the partition. For example (Assuming the partitions are on device sda):</p>
<pre>/mnt/flash/sda1.partimage.gz</pre>
<p>Press <strong>F5</strong> twice to navigate to the next screens and press <strong>OK</strong> to start the imaging process.</p>
<p>Repeat this process for each partition on the Linux system. Make sure to name the files appropriately.</p>
<p><strong>Note</strong>: Partimage will also show the partitions of the USB drive you mounted. Do not image the partitions of your USB disk. Also, do not image any extended or swap partitions.</p>
<p>When you are finished imaging all of the disk partitions, unmount the USB disk drive.</p>
<pre>umount /mnt/flash</pre>
<p>Shut down SystemRescueCd and restart your Linux system.</p>
<pre>reboot</pre>
<h4>Create an Empty Virtual Machine</h4>
<p>Create a new VM in VMware (or VirtualBox).</p>
<p>Configure the VM to have similar hardware specifications as the physical Linux computer: RAM, processor, hard disk. It is important that the hard disk be the same size or larger than the physical machine so the partitions fit.</p>
<p>Set the VM to boot from the CD-ROM drive using the SystemRescueCd ISO file.</p>
<p>Boot the empty virtual machine into SystemRescueCd.</p>
<h4>Recreate the Hard Drive Partitions</h4>
<p>Run the fdisk command to find the hard drive device.</p>
<pre>fdisk -l /dev/sda</pre>
<p>If it is sda and your drive was around 100 GB, you will see something like this:</p>
<pre>Disk /dev/sda: 105.2 GB, 105226698752 bytes</pre>
<p>Use fdisk to recreate the disk partitions of the original physical Linux computer. You should have made note of these in the preparation tasks. fdisk is a command line program to partition the drive. (You can also use the GUI GParted program in X Windows if you prefer. Press <em>startx</em> and select <strong>GParted</strong> from the menu.)</p>
<pre>fdisk /dev/sda</pre>
<p>Press <em>n</em> to add new partitions.</p>
<p>Press <em>a</em> to toggle the bootable partition (the /boot partition).</p>
<p>Press <em>t</em> to toggle the swap partition by setting it to 82.</p>
<p>Press <em>w</em> to write changes to disk.</p>
<p>Press <em>m</em> at any time for a list of options.</p>
<h4>Restore the Hard Drive Partitions</h4>
<p>Plug in your external USB hard drive and connect it to the virtual machine.</p>
<p>Run the <em>dmesg</em> command to find the device name of the USB hard drive.</p>
<pre>dmesg</pre>
<p>Look for your hard drive name and description.</p>
<p>Create a directory to mount the USB hard drive. For example, a new directory called <em>flash</em>.</p>
<pre>mkdir /mnt/flash</pre>
<p>Mount the USB hard drive, for example device sdb1, on the newly created directory.</p>
<pre>mount /dev/sdb1 /mnt/flash</pre>
<p>Run the partimage program to restore the partitions.</p>
<pre>partimage</pre>
<p>Use the GUI to select the partition to restore.</p>
<p>Press <strong>Tab</strong> and enter the file name and location for the image file. For example:</p>
<pre>/mnt/flash/sda1.partimage.gz</pre>
<p>Press <strong>Tab</strong> and change the <em>Action to be done</em> to <strong>Restore partition from an image file</strong>.</p>
<p>Press <strong>F5</strong> twice to navigate to the next screens and press <strong>OK</strong> to start the restore image process. In VMware you will probably have to press<strong> Function F5</strong> to get the <strong>F5</strong> key to work.</p>
<p>Repeat this process for each partition on the Linux system.</p>
<p>When you are finished imaging all of the disk partitions, unmount the USB disk drive.</p>
<pre>umount /mnt/flash</pre>
<h4>Set Up the Boot Loader</h4>
<p>The final step is to set up the boot loader and install it into the master boot record.</p>
<p>Mount the boot directory. For example, if sda1 is the boot partition and sda3 is the root partition.</p>
<pre>mkdir /mnt/root
mount /dev/sda3 /mnt/root
mount /dev/sda1 /mnt/root/boot</pre>
<p>Verify the configuration of the boot configuration file. Assuming you are using GRUB:</p>
<pre>nano /mnt/root/boot/grub/device.map</pre>
<p>Nano is a Linux text editor. You can also use pico or vi.</p>
<p>You want to verify that the device in the configuration file matches what it is in the VM. For example, if it says this:</p>
<pre>(hd0) /dev/hda</pre>
<p>You may need to change <em>hda</em> to <strong>sda</strong>. In this example we need to change it.</p>
<pre>(hd0) /dev/sda</pre>
<p>Exit Nano or whatever text editor you used.</p>
<p>Run <em>grub-install</em> to install GRUB into the MBR.</p>
<pre>grub-install --root-directory=/mnt/root /dev/sda</pre>
<h4>Final Tasks</h4>
<p>We’re all done. Now reboot in SystemRescueCd and your virtual machine should now boot into the same Linux setup that is on your physical machine.</p>
<pre>reboot</pre>
<p>This VM is now an exact copy of the physical Linux computer. You have successfully done a P2V (Physical to Virtual) conversion of your Linux system.</p>
<h4>Optional Task – Configure X11</h4>
<p>Depending on the version of Linux you are using, it may not be able to use the VMware settings to display X Windows properly. In that case, you will need to make a simple change to the <em>X11Config</em> file.</p>
<p>First, make a backup of the X11Config file. This assumes it is located in <em>/etc/X11</em>.</p>
<pre>cp /etc/X11/XF86Config /etc/X11/XF86Config.backup2</pre>
<p>Edit the X11Config file.</p>
<pre>nano /etc/X11/XF86Config</pre>
<p>Change the <em>Driver</em> and <em>BoardName</em> settings in the <em>Device</em> section from the VMware settings to a generic <strong>Vesa</strong> setting.</p>
<pre>Section      "Device"
Identifier   "Videocard0"
Driver       "<strong>vesa</strong>"
VendorName   "Videocard vendor"
BoardName    "<strong>VESA driver (generic)</strong>"</pre>
<p>Save the file and restart. You should be able to get X Windows to start now.</p>
<p>That’s it. It looks like a lot of steps, but it is not that difficult to do. The longest part is imaging and restoring the partitions.</p>
<p>Now that you have a virtual version of your Linux computer, you are able to do unique things like snapshots and work with multiple configurations or languages at the same time. This is really helpful when translating software from one language to another because you can now have both language versions running at the same time on the same desktop.</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clippingme.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clippingme.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clippingme.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clippingme.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clippingme.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clippingme.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clippingme.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clippingme.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clippingme.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clippingme.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clippingme.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clippingme.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clippingme.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clippingme.wordpress.com/345/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clippingme.wordpress.com&amp;blog=11174705&amp;post=345&amp;subd=clippingme&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clippingme.wordpress.com/2012/01/27/virtualizing-a-linux-system-creating-a-linux-vm-p2v/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8de6eef5f8bb430ae105e2496f6fff63?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clippingme</media:title>
		</media:content>
	</item>
		<item>
		<title>Las posturas para no dañar la maldita espalda&#8230;</title>
		<link>http://clippingme.wordpress.com/2012/01/27/las-posturas-para-no-danar-la-maldita-espalda/</link>
		<comments>http://clippingme.wordpress.com/2012/01/27/las-posturas-para-no-danar-la-maldita-espalda/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 17:43:31 +0000</pubDate>
		<dc:creator>clippingme</dc:creator>
				<category><![CDATA[miscellaneous]]></category>
		<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://clippingme.wordpress.com/?p=339</guid>
		<description><![CDATA[Si, lo sabemos, pero no viene mal volver a dar la vara con la postura ideal cuando estamos delante de la pantallita de turno&#8230; &#160;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clippingme.wordpress.com&amp;blog=11174705&amp;post=339&amp;subd=clippingme&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Si, lo sabemos, pero no viene mal volver a dar la vara con la postura ideal cuando estamos delante de la pantallita de turno&#8230;</p>
<p>&nbsp;</p>
<p><a href="http://clippingme.files.wordpress.com/2012/01/postura-ordenata.png"><img class="size-full wp-image-340 aligncenter" title="postura-ordenata" src="http://clippingme.files.wordpress.com/2012/01/postura-ordenata.png?w=600" alt="la postura ideal"   /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clippingme.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clippingme.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clippingme.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clippingme.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clippingme.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clippingme.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clippingme.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clippingme.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clippingme.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clippingme.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clippingme.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clippingme.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clippingme.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clippingme.wordpress.com/339/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clippingme.wordpress.com&amp;blog=11174705&amp;post=339&amp;subd=clippingme&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clippingme.wordpress.com/2012/01/27/las-posturas-para-no-danar-la-maldita-espalda/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8de6eef5f8bb430ae105e2496f6fff63?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clippingme</media:title>
		</media:content>

		<media:content url="http://clippingme.files.wordpress.com/2012/01/postura-ordenata.png" medium="image">
			<media:title type="html">postura-ordenata</media:title>
		</media:content>
	</item>
		<item>
		<title>inSSIDer: Escáner de redes inalámbricas (Wi-Fi) open source para Windows 7</title>
		<link>http://clippingme.wordpress.com/2012/01/11/inssider-escaner-de-redes-inalambricas-wi-fi-open-source-para-windows-7/</link>
		<comments>http://clippingme.wordpress.com/2012/01/11/inssider-escaner-de-redes-inalambricas-wi-fi-open-source-para-windows-7/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 08:18:30 +0000</pubDate>
		<dc:creator>clippingme</dc:creator>
				<category><![CDATA[redes]]></category>
		<category><![CDATA[utils]]></category>

		<guid isPermaLink="false">http://clippingme.wordpress.com/?p=337</guid>
		<description><![CDATA[Fuente: http://www.bloginformatico.com/inssider-escaner-de-redes-inalambricas-wi-fi-open-source-para-windows-7.php &#160; Muchas veces escanear una red inalámbrica no debería ser nada difícil, porque tanto Windows o el software controlador de nuestro adaptador inalámbrico incluyen herramientas que permiten en pocos segundos saber las redes Wi-Fi están a nuestro alrededor. Pero siempre es bueno probar diferentes opciones, y es por eso que les presento inSSIDer, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clippingme.wordpress.com&amp;blog=11174705&amp;post=337&amp;subd=clippingme&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Fuente: http://www.bloginformatico.com/inssider-escaner-de-redes-inalambricas-wi-fi-open-source-para-windows-7.php</p>
<p>&nbsp;</p>
<p align="center"><a href="http://www.bloginformatico.com/wp-content/uploads/2010/06/inSSIDer.jpg"><img title="inSSIDer" src="http://www.bloginformatico.com/wp-content/uploads/2010/06/inSSIDer_thumb1.jpg" alt="inSSIDer" width="498" height="378" border="0" /></a></p>
<p>Muchas veces escanear una red inalámbrica no debería ser nada difícil, porque tanto Windows o el software controlador de nuestro adaptador inalámbrico incluyen herramientas que permiten en pocos segundos saber las <a href="http://www.bloginformatico.com/etiqueta/redes-wifi">redes Wi-Fi</a> están a nuestro alrededor. Pero siempre es bueno probar diferentes opciones, y es por eso que les presento <strong>inSSIDer</strong>, un <a href="http://www.bloginformatico.com/categoria/software-libre">software libre</a> para <a href="http://www.bloginformatico.com/categoria/windows-7">Windows 7</a>.</p>
<p><strong>inSSIDer</strong> tiene un funcionamiento bastante concreto: escanear las redes inalámbricas que están a tu alcance, haciendo uso del adaptador inalámbrico que poseas, evidentemente. Algo que noté cuando estaba probando este programa es que es bastante rápido, muy fácil de usar. Sólo basta con descargarlo, e instalarlo, y de una vez procedemos a ejecutarlo, para disfrutar de su servicio.</p>
<p>El programa es compatible no sólo con Windows 7, sino también con <a href="http://www.bloginformatico.com/categoria/windows-vista">Windows Vista</a>, XP, 2000, en versiones tanto de 32 como de 64 bits. <strong>inSSIDer</strong> está disponible en español, aunque en su menú me encontré con algunas palabras en inglés, así que no está totalmente traducido por ahora pero por lo menos la mayoría de las palabras sí. Sólo requiere hacer clic en “Escanear” para proceder.</p>
<p>Entre las características más destacadas de <strong>inSSIDer</strong> tenemos las siguientes:</p>
<ul>
<li>Muestra un gráfico de la intensidad que tienen las diferentes señales de red</li>
<li>Obtiene datos de cada una de las redes: Dirección MAC, Nivel de seguridad, SSID, Canal, Tipo de red, Velocidad y la marca del dispositivo de red utilizado</li>
<li>Permite ver gráficos del canal 5GHz y 2.4GHz</li>
<li>Soporte para señales GPS</li>
<li>Totalmente <a href="http://www.howtonew.com/tag/open-source">open source</a> y disponible en español</li>
</ul>
<p>Es una herramienta bastante interesante para administradores de red. <strong>inSSIDer</strong> es perfecto para el escaneo de redes aledañas a radio. Otro <a href="http://www.bloginformatico.com/">programa gratis</a> bastante similar es <a href="http://www.bloginformatico.com/wirelessnetview-monitorea-las-redes-inalambricas-de-tu-area.php">WirelessNetView</a>.</p>
<p>Visto en <a href="http://www.snapfiles.com/whatsnewfw.html" target="_blank">Snap Files</a><br />
Enlace | <a href="http://www.metageek.net/products/inssider" target="_blank">inSSIDer</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clippingme.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clippingme.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clippingme.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clippingme.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clippingme.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clippingme.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clippingme.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clippingme.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clippingme.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clippingme.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clippingme.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clippingme.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clippingme.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clippingme.wordpress.com/337/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clippingme.wordpress.com&amp;blog=11174705&amp;post=337&amp;subd=clippingme&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clippingme.wordpress.com/2012/01/11/inssider-escaner-de-redes-inalambricas-wi-fi-open-source-para-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8de6eef5f8bb430ae105e2496f6fff63?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clippingme</media:title>
		</media:content>

		<media:content url="http://www.bloginformatico.com/wp-content/uploads/2010/06/inSSIDer_thumb1.jpg" medium="image">
			<media:title type="html">inSSIDer</media:title>
		</media:content>
	</item>
		<item>
		<title>DeSopa: la extensión para Firefox que ignora el bloqueo DNS</title>
		<link>http://clippingme.wordpress.com/2012/01/05/desopa-la-extension-para-firefox-que-ignora-el-bloqueo-dns/</link>
		<comments>http://clippingme.wordpress.com/2012/01/05/desopa-la-extension-para-firefox-que-ignora-el-bloqueo-dns/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 11:22:13 +0000</pubDate>
		<dc:creator>clippingme</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[seguridad]]></category>

		<guid isPermaLink="false">http://clippingme.wordpress.com/?p=334</guid>
		<description><![CDATA[Fuente:  http://alt1040.com/2011/12/desopa-la-extension-para-firefox-que-ignora-el-bloqueo-dns Siempre habrá un camino para saltarse los muros de la censura. Si no es este será otro y como no se le pueden poner puertas a la innovación y a la creación, aquí va una “ración” de ella. A unas horas de que vuelve a plantearse SOPA, los usuarios lanzan la extensión DeSopa, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clippingme.wordpress.com&amp;blog=11174705&amp;post=334&amp;subd=clippingme&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Fuente:  <a href="http://alt1040.com/2011/12/desopa-la-extension-para-firefox-que-ignora-el-bloqueo-dns">http://alt1040.com/2011/12/desopa-la-extension-para-firefox-que-ignora-el-bloqueo-dns</a></p>
<p><img title="Mafalda-SOPA" src="http://s3.alt1040.com/files/2011/12/Mafalda-SOPA.jpg" alt="" width="800" height="569" /> Siempre habrá un camino para saltarse los muros de la censura. Si no es este será otro y como no se le pueden poner puertas a la innovación y a la creación, aquí va una “ración” de ella. A unas horas de que vuelve a plantearse <strong><a href="http://alt1040.com/tag/SOPA">SOPA</a></strong>, los usuarios lanzan la <strong>extensión <a href="https://addons.mozilla.org/en-US/firefox/addon/desopa/">DeSopa</a>, un <em>add-on</em> para el navegador de Mozilla</strong> que promete saltarse las “normas” (y el bloqueo DNS) del proyecto de ley.</p>
<p>DeSopa es la misma respuesta que hemos encontrado en el pasado a la censura. La misma por la que se hicieron famosos <em>MAFIAAfire</em> con la creación de extensiones capaces de saltarse los filtros antipiratería de Google (<em>Gee! No Evil</em>), la posibilidad de redirección automática a los sitios bloqueados por la incautación de dominios en Estados Unidos (como el caso de rojadirecta) o incluso la última e irónica extensión <em>The Pirate Bay Dancing</em>, un <em>add-on</em> capaz de evitar la censura en sitios torrents.</p>
<p>Ayer también os hablábamos de <a href="http://alt1040.com/2011/12/sopa-lens-crean-extension-en-chrome-simulando-lo-que-ocurriria-con-la-ley-aprobada">SOPA Lens</a>, una extensión para Chrome que simulaba lo que ocurriría con la ley aprobada.</p>
<p>Todos ellos tienen en común con <em>DeSopa</em> la inspiración por buscar soluciones creativas para sortear la censura. En este caso podemos decir que se trata de la primera extensión “anti-sopa” para el navegador. Una herramienta que una vez instalada y a través de un sólo click, el usuario podrá <strong>resolver el dominio bloqueado vía servidores DNS extranjeros</strong>, pasando por encima de los bloqueos domésticos en los que se pudiera haber incurrido y permitiendo al usuario navegar por el sitio.</p>
<p>Así lo contaba hace unas horas <a href="http://torrentfreak.com/firefox-add-on-bypasses-sopa-dns-blocking-111220/">su desarrollador T Rizk</a>:</p>
<blockquote><p>Siento que el público en general no es consciente de la gravedad de SOPA. El Congreso parece que está a punto de atender a los intereses particulares de los involucrados en detrimento de Internet, como si eso dependiese para que yo y muchos otros vivamos y respiremos.</p>
<p>Podría ser que algunos miembros del Congreso no tengan conocimientos de tecnología y no entienden que es técnicamente imposible trabajar así, en absoluto. Así que aquí está una prueba con la que espero que les ayude a errar por el lado de la razón y SOPA se vote en contra.</p></blockquote>
<p>En cualquier caso, parece que el Comité está decidido a aprobarla ahora o dentro de una semana o si no, el próximo año. Es un esfuerzo posiblemente pactado en la medida que las presiones de los grupos pro-copyright han crecido en poder. Los mismos que utilizan las “técnicas” de piratería que intentar derribar.</p>
<p>Hoy nos enterábamos también del precio al que debería hacer frente la propia RIAA, una de las grandes impulsoras de la ley, si aplicásemos los métodos de multa por infracción. <em>YouHaveDownloaded</em> nos mostraba esta semana que sus IPs habían descargado <a href="http://alt1040.com/2011/12/riaa-y-homeland-security-tambien-piratas-del-bittorrent">60 episodios de la serie Dexter</a>.</p>
<p>Si las multas de los titulares de derechos sobre los usuarios son de 150.000 dólares por daños y perjuicios en cada obra copiada y distribuida ilegalmente… la organización se enfrentaría a <strong><a href="http://gizmodo.com/5869321/dear-recording-industry-pay-9-million-for-pirating-tv-shows-or-shut-up?utm_medium=referral&amp;utm_source=pulsenews">9 millones de dólares por la descarga de la serie</a></strong>, todos con cheque a la cuenta de la CBS.</p>
<p>Esa es la RIAA, la misma que un año antes sacudía a una familia. Una madre de cuatro hijos tendrá que pagar <a href="http://music.yahoo.com/blogs/amplifier/minnesota-mom-hit-with-15-million-fine-for-downloading-24-songs.html">1,5 millones por la descarga de 24 canciones</a> que compartió en la red. Ella sí tendrá que enfrentarse a la ley. Una ley que como SOPA, está escrita para unos (la mayoría de los usuarios) y el beneficio de unos pocos.</p>
<p>Quizá sólo por esto vale la pena apoyar a cuantas extensiones y propuestas intenten defendernos de lo que está por venir.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clippingme.wordpress.com/334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clippingme.wordpress.com/334/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clippingme.wordpress.com/334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clippingme.wordpress.com/334/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clippingme.wordpress.com/334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clippingme.wordpress.com/334/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clippingme.wordpress.com/334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clippingme.wordpress.com/334/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clippingme.wordpress.com/334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clippingme.wordpress.com/334/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clippingme.wordpress.com/334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clippingme.wordpress.com/334/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clippingme.wordpress.com/334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clippingme.wordpress.com/334/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clippingme.wordpress.com&amp;blog=11174705&amp;post=334&amp;subd=clippingme&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clippingme.wordpress.com/2012/01/05/desopa-la-extension-para-firefox-que-ignora-el-bloqueo-dns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8de6eef5f8bb430ae105e2496f6fff63?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clippingme</media:title>
		</media:content>

		<media:content url="http://s3.alt1040.com/files/2011/12/Mafalda-SOPA.jpg" medium="image">
			<media:title type="html">Mafalda-SOPA</media:title>
		</media:content>
	</item>
		<item>
		<title>10 editores html online</title>
		<link>http://clippingme.wordpress.com/2011/12/13/10-editores-html-online/</link>
		<comments>http://clippingme.wordpress.com/2011/12/13/10-editores-html-online/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 09:16:41 +0000</pubDate>
		<dc:creator>clippingme</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://clippingme.wordpress.com/?p=327</guid>
		<description><![CDATA[Fuente: http://geeksroom.com/2011/04/10-de-los-mejores-editores-html-online-y-gratuitos/48432/ En ocasiones es necesario retocar ligeramente alguna página html, con lo que poder disponer de un sencillo editor online nos viene de &#8220;perlas&#8221;. Lista con 10 de los mejores editores HTML online 1. Quackit Online HTML Editor: Codifique tanto como pueda y vea los resultados al hacer clic en ‘source‘. 2. Real-Time HTML [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clippingme.wordpress.com&amp;blog=11174705&amp;post=327&amp;subd=clippingme&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Fuente: <a href="http://geeksroom.com/2011/04/10-de-los-mejores-editores-html-online-y-gratuitos/48432/" title="http://geeksroom.com/2011/04/10-de-los-mejores-editores-html-online-y-gratuitos/48432/" target="_blank">http://geeksroom.com/2011/04/10-de-los-mejores-editores-html-online-y-gratuitos/48432/</a></p>
<p>En ocasiones es necesario retocar ligeramente alguna página html, con lo que poder disponer de un sencillo editor online nos viene de &#8220;perlas&#8221;.</p>
<h3>Lista con 10 de los mejores editores HTML online</h3>
<p>1. <strong>Quackit Online HTML Editor</strong>: Codifique tanto como pueda y vea los resultados al hacer clic en ‘<a href="http://www.quackit.com/html/online-html-editor/" target="_blank">source</a>‘.<br />
2.<strong> Real-Time HTML Editor</strong>: No hay más la necesidad de estar cambiando ventanas para ver el efecto de la <a href="http://www.timsfreestuff.com/HTMLEditor/" target="_blank">edición de su HTML. </a><br />
3. <strong>Online HTML Editor</strong>: Vea de manera anticipada <a href="http://www.onlinehtmleditor.net/" target="_blank">cómo se vería su sitio web</a> en realidad.<br />
4. <strong>Amy Editor</strong>: Un <a href="http://www.amyeditor.com/api/embed/test_eamy.html" target="_blank">editor HMTL sencillo </a> que soporta Ruby, Python, Texy!, PHP y otros.<br />
5. <strong>Tiny MCE</strong>: Uno de los recursos favoritos de los <a href="http://tinymce.moxiecode.com/tryit/full.php" target="_blank">desarrolladores y diseñadores web</a> en el mundo.<br />
6. <strong>Ajax.org Cloud9 Editor</strong>: <a href="http://ace.ajax.org/" target="_blank">Javascript</a> fácil de poner en tu sitio y sucesor del Mozilla Skywriter (Bespin) Project.<br />
7. <strong>HTML Instant</strong>: Un editor <a href="http://www.htmlinstant.com/" target="_blank">HTML en tiempo real</a>!<br />
8.<strong> HTML Editor</strong>: Escriba lo que quiera y obtenga la <a href="http://htmleditor.in/index.html" target="_blank">fuente HTML.</a><br />
9. <strong>WYSIWYG HTML Editor</strong>: Para templates en <a href="http://www.isdntek.com/editor.htm" target="_blank"> eBay Auction</a><br />
10. <strong>Online – HTML – Editor</strong>: Top rated <a href="http://www.online-html-editor.org/" target="_blank">HTML Editor</a> por Web Hosting Search.</p>
<p>Los parámetros de selección varían de acuerdo a varios indicadores. Por ello si usted tiene experiencia con HTML y utiliza otros medios que los citados, apreciamos comparta esa información con nuestros lectores.</p>
<p>Read more: <a href="http://geeksroom.com/2011/04/10-de-los-mejores-editores-html-online-y-gratuitos/48432/#ixzz1gP8W6wbN">http://geeksroom.com/2011/04/10-de-los-mejores-editores-html-online-y-gratuitos/48432/#ixzz1gP8W6wbN</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clippingme.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clippingme.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clippingme.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clippingme.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clippingme.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clippingme.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clippingme.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clippingme.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clippingme.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clippingme.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clippingme.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clippingme.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clippingme.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clippingme.wordpress.com/327/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clippingme.wordpress.com&amp;blog=11174705&amp;post=327&amp;subd=clippingme&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clippingme.wordpress.com/2011/12/13/10-editores-html-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8de6eef5f8bb430ae105e2496f6fff63?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clippingme</media:title>
		</media:content>
	</item>
		<item>
		<title>postgresql: cómo obtener datos entre diferentes base de datos</title>
		<link>http://clippingme.wordpress.com/2011/12/12/postgresql-como-obtener-datos-entre-diferentes-base-de-datos/</link>
		<comments>http://clippingme.wordpress.com/2011/12/12/postgresql-como-obtener-datos-entre-diferentes-base-de-datos/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 17:30:54 +0000</pubDate>
		<dc:creator>clippingme</dc:creator>
				<category><![CDATA[base datos]]></category>

		<guid isPermaLink="false">http://clippingme.wordpress.com/?p=324</guid>
		<description><![CDATA[Fuente: http://stackoverflow.com/questions/6083132/postgresql-insert-into-select Fuente: http://roy-rc.blogspot.com/2010/08/postgresql-dblink-conexion-entre-bases.html A veces es necesario poder copiar datos entre diferentes bases de datos, que incluso pueden residir en diferentes servidores. Postgresql proporciona una librería interesante para poder realizar dicho cometido. DBlink consta de un conjunto de funciones diseñadas para realizar conexiones entre bases de datos Postgres, en el mismo server o en [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clippingme.wordpress.com&amp;blog=11174705&amp;post=324&amp;subd=clippingme&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Fuente: <a href="http://stackoverflow.com/questions/6083132/postgresql-insert-into-select">http://stackoverflow.com/questions/6083132/postgresql-insert-into-select</a></p>
<p>Fuente: <a href="http://roy-rc.blogspot.com/2010/08/postgresql-dblink-conexion-entre-bases.html">http://roy-rc.blogspot.com/2010/08/postgresql-dblink-conexion-entre-bases.html</a></p>
<p>A veces es necesario poder copiar datos entre diferentes bases de datos, que incluso pueden residir en diferentes servidores. Postgresql proporciona una librería interesante para poder realizar dicho cometido.</p>
<div>DBlink consta de un conjunto de funciones diseñadas para realizar conexiones entre bases de datos Postgres, en el mismo server o en otros.. lo que se necesita es instalar DBlink en el servidor que hace la peticion..</div>
<div>Para implementar esto debes instalar el paquete contrib de la version que usas de postres</div>
<div>
<div id="highlighter_294085">
<div><a href="#">?</a></div>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<div>1</div>
</td>
<td>
<div>
<div><code># aptitude install postgresql-contrib-8.3</code></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div>el contrib de postgres provee una serie de funciones muy utiles para desarrolladores y administradores.</div>
<div>Para instalar la funcion en tu BD debes ser el usuario postgres y por lineas de comando:</div>
<div>
<div id="highlighter_503388">
<div><a href="#">?</a></div>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<div>1</div>
<div>2</div>
</td>
<td>
<div>
<div><code>$ cd /usr/share/postgresql/8.3/contrib </code></div>
<div><code>$ psql test_db u_test -h localhost &lt; dblink.sql</code></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<p>Te conectas a la BD que tiene instalado el DBlink y realizas la consulta</p>
<div>
<div id="highlighter_566922">
<div><a href="#">?</a></div>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<div>1</div>
</td>
<td>
<div>
<div><code>$ psql test_db u_test -h localhost</code></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div>La idea es trear datos de la BD my_db que esta en el servidor 191.168.50.90 y mostrarlos en la conexion establecida en test_db en localhost</div>
<div>
<div id="highlighter_721736">
<div><a href="#">?</a></div>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<div>1</div>
<div>2</div>
<div>3</div>
</td>
<td>
<div>
<div><code>test_db=</code><code># select * from </code></div>
<div><code>dblink (</code><code>'dbname=my_db hostaddr=191.168.50.90 user=u_test password=123456 port=5432'</code><code>, </code></div>
<div><code>'select id,descripcion from tabla'</code><code>)  as t1(id int4,descripcion text);</code></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<p>Por ejemplo:</p>
<p>En la bbdd1 creamos una tabla:</p>
<p>psql dbtest CREATE TABLE tblB (id serial, time integer);</p>
<p>INSERT INTO tblB (time) VALUES (5000), (2000);</p>
<p>&nbsp;</p>
<p>En la bbd2, creamo otra tabla, y la alimentaremos desde la tabla que reside en otra instancia:</p>
<p>psql postgres CREATE TABLE tblA (id serial, time integer);</p>
<p>INSERT INTO tblA     SELECT id, time      FROM dblink(&#8216;dbname=dbtest&#8217;, &#8216;SELECT id, time FROM tblB&#8217;)     AS t(id integer, time integer)     WHERE time &gt; 1000;</p>
<p>illatà !</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clippingme.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clippingme.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clippingme.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clippingme.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clippingme.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clippingme.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clippingme.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clippingme.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clippingme.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clippingme.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clippingme.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clippingme.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clippingme.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clippingme.wordpress.com/324/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clippingme.wordpress.com&amp;blog=11174705&amp;post=324&amp;subd=clippingme&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clippingme.wordpress.com/2011/12/12/postgresql-como-obtener-datos-entre-diferentes-base-de-datos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8de6eef5f8bb430ae105e2496f6fff63?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clippingme</media:title>
		</media:content>
	</item>
		<item>
		<title>Como librarse del plugin-container.exe en Firefox</title>
		<link>http://clippingme.wordpress.com/2011/12/07/como-librarse-del-plugin-container-exe-en-firefox/</link>
		<comments>http://clippingme.wordpress.com/2011/12/07/como-librarse-del-plugin-container-exe-en-firefox/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 13:18:29 +0000</pubDate>
		<dc:creator>clippingme</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://clippingme.wordpress.com/?p=321</guid>
		<description><![CDATA[Fuente: http://www.atenciontecnica.es/?p=137 En una de las últimas actualizaciones de Firefox incluyeron en su momento un nuevo complemento llamado Plug-in container, cuyo objetivo es aglutinar distintos plug-ins en uno solo. Este tiene un proceso dedicado, independiente del propio de Firefox. A pesar de que muchos usuarios de Firefox disfrutan de equipos potentes y mucha memoria RAM, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clippingme.wordpress.com&amp;blog=11174705&amp;post=321&amp;subd=clippingme&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Fuente: http://www.atenciontecnica.es/?p=137</p>
<p>En una de las últimas actualizaciones de Firefox incluyeron en su momento un nuevo complemento llamado <strong>Plug-in container,</strong> cuyo objetivo es aglutinar distintos plug-ins en uno solo. Este tiene un proceso dedicado, independiente del propio de Firefox.</p>
<p>A pesar de que muchos usuarios de Firefox disfrutan de equipos potentes y mucha memoria RAM, hay muchos otros que utilizan equipos que tienen ya unos cuantos años, a los cuales les puede costar soportar un proceso como el del Plug-in container (<em>plugin-container.exe</em>) el cual absorve entre 40 y 50 MB. Esto sumado al proceso de <em>firefox.exe</em> eleva el requerimiento total, que podría oscilar entre los 160 y 200 MB.</p>
<p>Este plugin no inhabilita todos los plugins anteriores, los cuales pueden seguir utilizándose normalmente. Si quieres librarte de él porque crees que te está sobrecargando demasiado la máquina hay una manera.</p>
<p>1 – Ir a Herramientas -&gt; Complementos -&gt; Plugins.</p>
<p>2 – Desactivar todos los plugins asociados a Flash.</p>
<p>3 – En la barra de direcciones acceder a la configuración de Firefox escribiendo “about:config”. Utilizando el filtro de la parte superior, buscar “ipc”.</p>
<p>4 – Buscar la siguiente línea:</p>
<p>dom.ipc.plugins.enabled.npswf32.dll;true</p>
<p>5 – Hacer click derecho sobre esta línea y seleccionar “Modificar”. Modificar el valor <strong>true </strong>por <strong>false</strong>.</p>
<p>6 – Salir del Firefox y volver a entrar.</p>
<p>7 – Volver a acceder a Herramientas -&gt; Complementos -&gt; Plugins, y activar los plug-ins asociados a Flash.</p>
<p>Al deshabilitar la librería anterior y volver a activar el plugin de Flash este funcionaría como antes de la actualización. Así un Firefox limpio y funcionando normalmente no tendría porque superar los 130, 140 MB de memoria requerida.</p>
<p><strong>Actualización</strong>:</p>
<p>Como me ha hecho notar acertadamente un amigo, para que el <em>Plugin container</em> no se active con otros formatos, como puede ser Quicktime, en el proceso de deshabilitación y habilitación de plugins (paso 1, 2 y 7) anterior debe incluirse sus respectivos plugins.</p>
<p>La .dll del paso 4 en el caso de Quicktime sería:</p>
<p>dom.ipc.plugins.enabled.npqtplugin.dll</p>
<p>Me apresuré a plantear el ejemplo solo con Flash. Espero que ahora con estos dos ejemplos concretos podáis eludir el<em> Plugin container</em> en la mayoría de los casos.</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/clippingme.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/clippingme.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/clippingme.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/clippingme.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/clippingme.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/clippingme.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/clippingme.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/clippingme.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/clippingme.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/clippingme.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/clippingme.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/clippingme.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/clippingme.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/clippingme.wordpress.com/321/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=clippingme.wordpress.com&amp;blog=11174705&amp;post=321&amp;subd=clippingme&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://clippingme.wordpress.com/2011/12/07/como-librarse-del-plugin-container-exe-en-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8de6eef5f8bb430ae105e2496f6fff63?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clippingme</media:title>
		</media:content>
	</item>
	</channel>
</rss>
