<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-457765937744967597</id><updated>2025-11-22T23:42:38.146-08:00</updated><category term="kali"/><category term="Fedora 22"/><category term="Fedora Server 22"/><category term="Fedora"/><category term="Linux"/><category term="VeraCrypt"/><category term="cron"/><category term="distros"/><category term="hacking"/><category term="instalar"/><category term="pentesting"/><category term="script"/><category term="sysadmin"/><category term="teamviewer"/><category term="Apache"/><category term="Bash"/><category term="Chroot"/><category term="IP estática"/><category term="Jail"/><category term="LAMP"/><category term="Mariadb"/><category term="Phpmyadmin"/><category term="Process Explorer"/><category term="RedPhone"/><category term="SAMBA"/><category term="SMS cifrado"/><category term="Servidor"/><category term="Solucion a retos"/><category term="Textsecure"/><category term="Ubuntu"/><category term="VPN"/><category term="Web Server"/><category term="actualizar"/><category term="backbox"/><category term="ghost"/><category term="impresora"/><category term="llamadas anónimas"/><category term="malware"/><category term="ransomware"/><category term="remoto"/><category term="revisar todos los procesos con virus total 2014"/><category term="seguridad"/><category term="ssh"/><category term="tango gestion"/><category term="tor"/><category term="virtualbox"/><title type='text'>hackendemoniado</title><subtitle type='html'>Un Blog dedicado a la variedad informática, hacking, seguridad, soporte, y demás etc</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default?start-index=26&amp;max-results=25'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>27</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-2570339787275212403</id><published>2017-09-19T04:40:00.002-07:00</published><updated>2017-09-19T04:40:58.790-07:00</updated><title type='text'>Comandos útiles para conocer nuestro procesador</title><content type='html'>&lt;br /&gt;
Hola volviendo a publicar después de un gran tiempo, ahora vengo a dar ejemplos de distintos comandos útiles para obtener toda la información de nuestros CPU&#39;s que suelo utilizar en mi día a día, sin más pasamos directo sin tanto rodeos a los comandos.&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
Obtener toda la información completa del procesador:&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;sudo cat /proc/cpuinfo | more&lt;/textarea&gt;&lt;/div&gt;
&lt;br /&gt;
O con el siguiente comando obtenemos la misma información pero agrupada en un simple listado:&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;lscpu&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Si solamente necesitamos recuperar información más especifica simplemente debemos hacer grep sobre este mismo archivo dependiendo de lo que necesitamos mirar.&lt;br /&gt;
&lt;br /&gt;
Por ejemplo, para obtener el nombre del fabricante:&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;grep &#39;vendor_id&#39; /proc/cpuinfo&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Para ver el modelo:&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;grep &#39;model name&#39; /proc/cpuinfo&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Para ver la velocidad:&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;grep &#39;cpu MHz&#39; /proc/cpuinfo&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Para saber el número de procesadores:&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;nproc --all&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Otra forma de obtener lo mismo es:&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;lscpu | grep &#39;CPU(s)&#39;&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
O incluso buscando el string &#39;processor&#39; dentro del archivo cpuinfo:&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;grep processor /proc/cpuinfo | wc -l&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Obtener el número de núcleos:&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;cat /proc/cpuinfo | grep &quot;cpu cores&quot;&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Obtener el número de cpus/cores Físicos:&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;lscpu -p | egrep -v &#39;^#&#39; | wc -l&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Obtener el número de cpus lógicos incluyendo los cores con Tecnología de HyperThreading:&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;lscpu -p | egrep -v &#39;^#&#39; | sort -u -t, -k 2,4 | wc -l&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Para computadoras antiguas que no tienen el comando nproc ni lscpu es el comando getconf:&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;getconf _NPROCESSORS_ONLN&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Aunque también podemos ocupar el comando dmidecode pero con privilegios:&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;sudo dmidecode -t 4 | egrep &#39;Socket Designation|Count&#39;&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
También podemos instalar algunos paquetes extras que nos pueden brindar alguna información extra como lo son cpufrequtils, cpuid, inxi, aunque logicamente podemos utilizar algunos softwares diseñados para obtener información completa de nuestro sistema pero que con algunos parametros podemos precisar al procesador de nuestro equipo: lshw, hwinfo si queremos instalarlos podemos hacer:&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;sudo dnf install cpufrequtils cpuid inxi lshw hwinfo -y&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Con cpufrequtils podemos hacer:&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;cpupower frequency-info&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Para cpuid es tan simple como:&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;cpuid | more&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Con inxi debemos de tirar lo siguiente:&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;inxi -C&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Ahora con lshw debemos de teclear:&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;sudo lshw -c processor&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Y por último tenemos a hwinfo que lo usaremos de la siguiente manera:&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;hwinfo -cpu | more&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Para cada uno de estos comandos vamos a tener una variedad de información de todo tipo de colores y sabores que con lo cuál dependiendo lo que estemos buscando o asegurando podremos corroborar o demostrar, e incluso conocer mejor nuestro cpu, espero que les sea de utilidad... Saludos</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/2570339787275212403/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2017/09/comandos-utiles-para-conocer-nuestro.html#comment-form' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/2570339787275212403'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/2570339787275212403'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2017/09/comandos-utiles-para-conocer-nuestro.html' title='Comandos útiles para conocer nuestro procesador'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-6196661221328814651</id><published>2016-01-29T07:40:00.002-08:00</published><updated>2016-01-29T13:56:23.182-08:00</updated><title type='text'>  script para automatizar tareas (PARTE 3) - Detectar intruso en nuestra red + aviso por mail</title><content type='html'>Ya vamos por la tercer parte de esta serie de scripts, ahora toca un script muy curioso que me tomo un buen tiempo dejarlo a punto, antes que nada hay que entender que es necesario tener instalado: nmap para poder saber quien esta conectado a nuestra red y también a mutt o cualquier aplicación que nos deje enviar correo a través de la terminal, y después solo necesitas un poco de tiempo y paciencia para ir probando como funciona y adaptarlo a tu redo u organización, como siempre voy a explicar línea a línea para que todos podamos aprender y crecer....&lt;br /&gt;
&lt;br /&gt;
Acá dejo las partes anteriores: &lt;br /&gt;
&lt;a href=&quot;http://hackendemoniado.blogspot.com.ar/2015/11/script-para-automatizar-tareas-parte-1.html&quot; target=&quot;_blank&quot;&gt;http://hackendemoniado.blogspot.com.ar/2015/11/script-para-automatizar-tareas-parte-1.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
En la parte dos muestro como configurar a mutt para poder mandar mail por la terminal &lt;br /&gt;
&lt;a href=&quot;http://hackendemoniado.blogspot.com.ar/2015/12/script-para-automatizar-tareas-parte-2.html&quot; target=&quot;_blank&quot;&gt;http://hackendemoniado.blogspot.com.ar/2015/12/script-para-automatizar-tareas-parte-2.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&quot;POR FAVOR LEER TODO EL POST PORQUE HAY QUE TENER EN CUENTA VARIOS DETALLES PARA ADAPTARLO A SU RED&quot;&lt;br /&gt;
&lt;br /&gt;
Vamos directamente a mostrar el script:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 1110px; width: 700px;&quot;&gt;#!/bin/bash
# -*- ENCODING: UTF-8 -*-
#Script programado por hackendemoniado
#Fecha de terminación:16/01/2016
#Detalles con explicación detallada
#Seguime en mi blog http://hackendemoniado.blogspot.com/
#


#creamos la ruta para guardar los txt necesarios para que trabaje el script
ruta=$HOME/controlared
#es un simple if para saber si existe o no la carpeta
if [ ! -d $ruta ]; then
echo &quot;creando la carpeta controlared en el direcotrio home &quot;
mkdir $ruta
#para ver si existe el archivo
if [ -f $ruta/listablanca.txt ];
then
echo &quot;Sí, ya existe el archivo de host permitidos&quot;
else
echo &quot;No, no existe el archivo de host permitidos&quot;
echo &quot;creando listablanca.txt.....&quot;
echo &quot;00:00:00:00:00:00&quot; &gt;$ruta/listablanca.txt
cat $ruta/listablanca.txt
fi
fi
echo &quot;path: &quot; $ruta
#esto debemos de ejecutarlo para probar el script y cuando sepamos bien que segmentos a analizar
#debemos de comentar estas lineas y descomentar el nmap comentado de más abajo
########............................................########################

echo &quot;Para empezar ingrese el o los segmentos de ip a analizar:&quot;
read ips
#Lanzo nmap en mi red, deben modificar por el segmento correspondiente a su red #sed &#39;1,4d&#39;
echo &quot;Ejecutando nmap en la red: &quot;$ips
nmap -sP $ips &gt; $ruta/controlred.txt

#si leen bien es simple solamente comenten las 4 líneas de atras y descomenten la siguiente
#poniendo su segmento de red
#nmap -sP 192.168.100.1-255 --exclude 192.168.100.4 &gt; $ruta/controlred.txt
#busco el MAC de los hosts conectados
echo &quot;creando los archivos pertinentes&quot;
cat $ruta/controlred.txt | grep Address | cut -c 14-31 | tr -d &quot;()&quot; &gt; $ruta/host.txt
#busco las ip de los hosts conectados
cat $ruta/controlred.txt | grep for | cut -c 22-36 | tr -d &quot;()&quot; &gt; $ruta/ip.txt
#cuento la cantidad de hosts conectado para utilizarlo en el bucle for
canthost=`wc -l $ruta/host.txt | awk &#39;{print $1}&#39;`
#declaro una bandera para controlar si existe al menos un intruso y luego mandar el mail
bandera=0
echo &quot;Busqueda de las mac&quot;
for ((i=1; i&lt;= $canthost ; i++))
do
#guardo en una variable el MAC de los host, esto es un for...
hostmac=`head -$i $ruta/host.txt | tail -1 | cut -c 1-17`
#guardo en otra variable la ip de los hosts
hostip=`head -$i $ruta/ip.txt | tail -1 | cut -c 1-15`
#Tengo una lista blanca de MAC permitidas de la cual debo buscarlas 
busca=`grep -ic &quot;$hostmac&quot; $ruta/listablanca.txt`
#Si la variable busca es igual a cero significa que es un intruso
if [ $busca == 0 ];then
#Cambio la bandera porque debo mandar el mail para notificar
bandera=1
#Extraigo info del intruso y lo guardo en un txt
echo $hostmac | nmap -v -A -O $hostip &gt;&gt; $ruta/infointruso.txt
echo &quot;Se encontro un intruso con MAC Address: &quot;$hostmac &quot;IP: &quot;$hostip
#fin if
fi
#fin for
done
#Acá pregunto si la bandera es igual a uno pues significa que hay intruso
if [ $bandera == 1 ];then
#mando el mail con el archivo adjunto con la información extraida de los mismos
echo &quot;Se conecto algún/os intruso/s en la red&quot; | mutt -s &quot;ACCESO A LA RED&quot; -a $ruta/infointruso.txt -- sergiosysforence@hotmail.com.ar
#borro el archivo con la info para que la proxima ves no se siga agregando info repetida
rm -rf $ruta/infointruso.txt
fi
echo ---------Fin del script-------------
&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Como se dan cuenta ya tiene comentarios como para llegar a entender algo, pero bueno debo comentar algunos puntos del funcionamiento del script:&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Primero que nada este script funciona como base buscando los mac de cada pc o equipo por ende debo de tener una lista blanca de host que yo conozco y que lógicamente no son intrusos recordad que esto incluye no solo las computadoras sino también celulares, routers,.... etc.&lt;/li&gt;
&lt;li&gt;El archivo llamado listablanca.txt cuando se ejecuta la primera ves se va a crear con un mac por defecto 00:00:00:00:00:00 el cual si desean lo dejan así la primera ves y ejecutan el script ingresando los rangos a escanear y ver como muestra y reporta los intrusos o detienen el script y modifican los host porniendo las mac pertinentes.&lt;/li&gt;
&lt;li&gt;Si la ruta no les apetece simplemente cambien por la de su interés o que se les complique menos, yo simplemente lo programe así por comodidad en la utilización del script.&lt;/li&gt;
&lt;li&gt;Tener en cuenta un punto muy importante que es lo siguiente, el script va a lanzar nmap a cada segmento de ip de su red y si tienen varios segmentos va a tomar un buen tiempo..., lo ideal seria que primero lo ejecuten y tomar aproximadamente el tiempo que toma en analizar toda su red y en definitiva dejar que ejecute completo y de a cuerdo a ese tiempo agregarlo a las tareas automáticas.&lt;/li&gt;
&lt;li&gt;El script también realiza un nmap sobre el intruso y con más razón tomar bien el tiempo para su próxima ejecución.&lt;/li&gt;
&lt;li&gt;Para que no se ejecute cada tanto tiempo podrian poner el script en una pc en cada segmento de red que mande el correo a la misma cuenta y así no hacer que la tarea en cron se ejecute cada mucho tiempo &lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
Bueno luego de las consideraciones del script pasamos a explicar un poco el script por si no llegan a entender bien....&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;El primer if &quot;&lt;span class=&quot;pl-k&quot;&gt;if&lt;/span&gt; [ &lt;span class=&quot;pl-k&quot;&gt;!&lt;/span&gt; &lt;span class=&quot;pl-k&quot;&gt;-d&lt;/span&gt; &lt;span class=&quot;pl-smi&quot;&gt;$ruta&lt;/span&gt; ]&lt;span class=&quot;pl-k&quot;&gt;;&lt;/span&gt; &lt;span class=&quot;pl-k&quot;&gt;then&lt;/span&gt;&quot; pregunta si existe la ruta, osea si ya fué creada la carpeta, con la opción -d verifica sobre carpetas, si no existe simplemente la crea.&lt;/li&gt;
&lt;li&gt;Segundo if &quot;&lt;span class=&quot;pl-k&quot;&gt;if&lt;/span&gt; [ &lt;span class=&quot;pl-k&quot;&gt;-f&lt;/span&gt; &lt;span class=&quot;pl-smi&quot;&gt;$ruta&lt;/span&gt;/listablanca.txt ]&lt;span class=&quot;pl-k&quot;&gt;;&lt;/span&gt;&quot; es lo mismo que en el caso anterior solo que con la opción -f que se utiliza para comprobar si existe o no el archivo, asique ya saben -d para directorios y -f para archivos, no tiene el signo &quot;!&quot; porque ya es implícito que deseamos comprobar que existe asique no es indispensable ese signo.&lt;/li&gt;
&lt;li&gt;El siguiente punto importante es &quot;nmap -sP &lt;span class=&quot;pl-smi&quot;&gt;$ips&lt;/span&gt; &lt;span class=&quot;pl-k&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;pl-smi&quot;&gt;$ruta&lt;/span&gt;/controlred.txt&quot; aca es muy simple hacemos un escaneo con nmap sobre el segmento de ip que ingresamospor teclado obviamente esto no funcionara si lo ejecutamos con cron... por eso deje un poco más abajo un ejemplo de nmap sin el pedido por teclado &quot;&lt;span class=&quot;pl-c&quot;&gt;nmap -sP 192.168.100.1-255 --exclude 192.168.100.4 &amp;gt; $ruta/controlred.txt&lt;/span&gt;&quot; osea comentamos las líneas anteriores osea desde el echo que pide el segmento hasta el nmap que utiliza lo ingresado por teclado y descomentamos esta línea que deje de ejemplo y ponen su segmento de red.&lt;/li&gt;
&lt;li&gt;&quot;cat &lt;span class=&quot;pl-smi&quot;&gt;$ruta&lt;/span&gt;/controlred.txt &lt;span class=&quot;pl-k&quot;&gt;|&lt;/span&gt; grep Address &lt;span class=&quot;pl-k&quot;&gt;|&lt;/span&gt; cut -c 14-31 &lt;span class=&quot;pl-k&quot;&gt;|&lt;/span&gt; tr -d &lt;span class=&quot;pl-s&quot;&gt;&lt;span class=&quot;pl-pds&quot;&gt;&quot;&lt;/span&gt;()&lt;span class=&quot;pl-pds&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;pl-k&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;pl-smi&quot;&gt;$ruta&lt;/span&gt;/host.txt&quot; con esto lo que hago es mostrar la salida del nmap guardada en &quot;controlred.txt&quot; y busco la palabra Address y corto justo en el lugar del mac con la opción &quot;cut -c ...&quot; y lo mando a un archivo llamado &quot;host.txt&quot;.&lt;/li&gt;
&lt;li&gt;&quot;cat &lt;span class=&quot;pl-smi&quot;&gt;$ruta&lt;/span&gt;/controlred.txt &lt;span class=&quot;pl-k&quot;&gt;|&lt;/span&gt; grep &lt;span class=&quot;pl-k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;pl-k&quot;&gt;|&lt;/span&gt; cut -c 22-36 &lt;span class=&quot;pl-k&quot;&gt;|&lt;/span&gt; tr -d &lt;span class=&quot;pl-s&quot;&gt;&lt;span class=&quot;pl-pds&quot;&gt;&quot;&lt;/span&gt;()&lt;span class=&quot;pl-pds&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt; &lt;span class=&quot;pl-k&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;pl-smi&quot;&gt;$ruta&lt;/span&gt;/ip.txt&quot; exactamente lo mismo que en caso anterior pero buscando solo las ip, también lo guardo en un archivo llamad &quot;ip.txt&quot;.&lt;/li&gt;
&lt;li&gt;Luego genero 2 variables que se llaman &quot;hostmac&quot; y &quot;hostip&quot;, la idea es que en el bucle se guarde línea por línea los respectivos mac e ip de los host que están conectados y luego en &quot;busca&quot; guardo un 0 (cero) o un 1 dependiendo de que si lo encontró o no en la lista blanca de host permitidos, si debuelve un cero es porque no esta en esa lista y es un intruso.&lt;/li&gt;
&lt;li&gt;&quot;echo &lt;span class=&quot;pl-smi&quot;&gt;$hostmac&lt;/span&gt; &lt;span class=&quot;pl-k&quot;&gt;|&lt;/span&gt; nmap -v -A -O &lt;span class=&quot;pl-smi&quot;&gt;$hostip&lt;/span&gt; &lt;span class=&quot;pl-k&quot;&gt;&amp;gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;pl-smi&quot;&gt;$ruta&lt;/span&gt;/infointruso.txt &lt;span class=&quot;pl-c1&quot;&gt;&quot; lo hago porque encontre un intruso e intento descubrir toda la info posible de el y lo guardo en un txt en el cual se va a ir concatenando cada ves que encuentre uno.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;pl-c1&quot;&gt;&quot;echo&lt;/span&gt; &lt;span class=&quot;pl-s&quot;&gt;&lt;span class=&quot;pl-pds&quot;&gt;&quot;&lt;/span&gt;Se encontro un intruso con MAC Address: &lt;span class=&quot;pl-pds&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;pl-smi&quot;&gt;$hostmac&lt;/span&gt; &lt;span class=&quot;pl-s&quot;&gt;&lt;span class=&quot;pl-pds&quot;&gt;&quot;&lt;/span&gt;IP: &lt;span class=&quot;pl-pds&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;pl-smi&quot;&gt;$hostip&lt;/span&gt;&quot; acá simplemente muestro el mac y el ip del intruso.&lt;/li&gt;
&lt;li&gt;&amp;nbsp;&quot;&lt;span class=&quot;pl-k&quot;&gt;if&lt;/span&gt; [ &lt;span class=&quot;pl-smi&quot;&gt;$bandera&lt;/span&gt; &lt;span class=&quot;pl-k&quot;&gt;==&lt;/span&gt; 1 ]&lt;span class=&quot;pl-k&quot;&gt;;&lt;/span&gt;&lt;span class=&quot;pl-k&quot;&gt;then&lt;/span&gt;&quot; si la bandarea esta en uno significa que encontro aunque sea un intruso en la red entonces debo de mandar el correo.&lt;/li&gt;
&lt;li&gt;Luego de eso simplemente mando el correo pertinente con el archivo adjunto y borro la info del intruso.&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;a href=&quot;https://github.com/hackendemoniado/scripts/blob/master/controlared.sh&quot; target=&quot;_blank&quot;&gt;Link para descargar script&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Luego lo que hice fue agregar a cron el script de la siguiente manera:&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;nano /etc/cron.d/controlared
&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Y luego puse lo siguiente:&lt;textarea cols=&quot;35&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;*/15 * * * * root /tu/ruta/al/cript/controlared.sh 2&gt;&amp;1 &gt;&gt; /var/log/controlared.log
&lt;/textarea&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lo puse para que se ejecute cada 15 minutos, algunas capturas de pantalla:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgZMQ16fzxLa3OKztem_XgBxoEMTwwEzxwrZNRwCVL3OlPxSm6JXGTsuetVHySoy71tgWJ5Qpx_UCeGHFagw1XO3Ks0etAsSJbhlO67qmpoofSvrKyKa7A5lvx_6NiEPomU7b5t04WQw_I/s1600/controlared1.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;179&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgZMQ16fzxLa3OKztem_XgBxoEMTwwEzxwrZNRwCVL3OlPxSm6JXGTsuetVHySoy71tgWJ5Qpx_UCeGHFagw1XO3Ks0etAsSJbhlO67qmpoofSvrKyKa7A5lvx_6NiEPomU7b5t04WQw_I/s320/controlared1.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhVXWOQyHcQT1EJNBkDTLFQmuGPIwfZHOk-6zMlHYB-ZrTuBlXW4byfVlnHKUf06n81PNjoKEaIO_hvTKioV5NArtk0-v_9079RIgbPuyQGpSs7qKum_C_0aJP9nUzXQW6Jecwa5pJqm_0/s1600/controlared2.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;179&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhVXWOQyHcQT1EJNBkDTLFQmuGPIwfZHOk-6zMlHYB-ZrTuBlXW4byfVlnHKUf06n81PNjoKEaIO_hvTKioV5NArtk0-v_9079RIgbPuyQGpSs7qKum_C_0aJP9nUzXQW6Jecwa5pJqm_0/s320/controlared2.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Como muestra la imagen llega el correo con el adjunto que posee la info del intruso. &lt;br /&gt;
&lt;br /&gt;
Si no entienden algo o encuentra algún error por favor me avisan así lo soluciono, como siempre digo la idea es aprender entre todos....&lt;br /&gt;
&lt;br /&gt;
Espero que les resulte interesante y compartan....&lt;br /&gt;
&lt;br /&gt;
Si tienen ideas de script que pueden llegar a ser útiles no duden en contarme y ver si los puedo ayudar a realizarlos.... &lt;br /&gt;
&lt;br /&gt;
Saludos amigos&lt;br /&gt;
&lt;ul&gt;
&lt;/ul&gt;
&lt;ol&gt;
&lt;/ol&gt;
</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/6196661221328814651/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2016/01/script-para-automatizar-tareas-parte-3.html#comment-form' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/6196661221328814651'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/6196661221328814651'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2016/01/script-para-automatizar-tareas-parte-3.html' title='  script para automatizar tareas (PARTE 3) - Detectar intruso en nuestra red + aviso por mail'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgZMQ16fzxLa3OKztem_XgBxoEMTwwEzxwrZNRwCVL3OlPxSm6JXGTsuetVHySoy71tgWJ5Qpx_UCeGHFagw1XO3Ks0etAsSJbhlO67qmpoofSvrKyKa7A5lvx_6NiEPomU7b5t04WQw_I/s72-c/controlared1.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-1010211905100880775</id><published>2015-12-30T12:25:00.000-08:00</published><updated>2015-12-30T12:26:05.019-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="backbox"/><category scheme="http://www.blogger.com/atom/ns#" term="hacking"/><category scheme="http://www.blogger.com/atom/ns#" term="kali"/><category scheme="http://www.blogger.com/atom/ns#" term="pentesting"/><category scheme="http://www.blogger.com/atom/ns#" term="tor"/><title type='text'>Que hacer después de instalar kali linux 2.0</title><content type='html'>Hola como andan, seguimos con el tema de kali linux pero ahora poniendo a punto, primero obviamente lo tienes que tener instalado siguiendo esta guia &lt;a href=&quot;http://hackendemoniado.blogspot.com.ar/2015/12/como-instalar-kali-linux-20.html&quot; target=&quot;_blank&quot;&gt;http://hackendemoniado.blogspot.com.ar/2015/12/como-instalar-kali-linux-20.html&lt;/a&gt;&lt;br /&gt;
Luego de ese sencillo paso vamos derecho a terminar de sacarle filo....&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;En caso de tenerlo instalado en virtualbox, lo primero es instalar el guest additions, luego de montada tiramos los siguientes comandos:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 55px; width: 633px;&quot;&gt;cp /media/cd-rom/VBoxLinuxAdditions.run /root/
chmod 755 /root/VBoxLinuxAdditions.run
cd /root
./VboxLinuxAdditions.run
&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Luego verificamos o modificamos los repositorios, primero que nada el archivo de repositorios se debe de corresponder con los que aparecen en la documentación oficial &lt;a href=&quot;http://docs.kali.org/general-use/kali-linux-sources-list-repositories&quot;&gt;&lt;/a&gt; y si queremos las modificamos, solo voy a agregar los repositorios de tor y firefox:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 300px; width: 633px;&quot;&gt;# 

# deb cdrom:[Debian GNU/Linux 2.0 _Sana_ - Official Snapshot amd64 LIVE/INSTALL Binary 20150811-08:02]/ sana contrib main non-free

#deb cdrom:[Debian GNU/Linux 2.0 _Sana_ - Official Snapshot amd64 LIVE/INSTALL Binary 20150811-08:02]/ sana contrib main non-free

deb http://http.kali.org/kali sana main non-free contrib
deb-src http://http.kali.org/kali sana main non-free contrib

deb http://security.kali.org/kali-security/ sana/updates main contrib non-free
deb-src http://security.kali.org/kali-security/ sana/updates main contrib non-free

# TOR Repo
deb http://deb.torproject.org/torproject.org jessie main
deb-src http://deb.torproject.org/torproject.org jessie main

#Firefox
deb http://downloads.sourceforge.net/project/ubuntuzilla/mozilla/apt all main
&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Luego toca actualizar la distro:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 25px; width: 633px;&quot;&gt;apt-get clean &amp;&amp; apt-get update &amp;&amp; apt-get upgrade –y &amp;&amp; apt-get dist-upgrade –y
&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Luego de un buen rato pasamos a instalar TOR obviamente que no es algo necesario pero como soy un poco paranoico con esto de la privacidad prefiero tener algo que lo intente:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;apt-get install tor torsocks -y
/etc/init.d/tor start
&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Verificamos que todo se ejecuta como corresponde:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;service tor start
service tor status
&lt;/textarea&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjm33vH4cvNusk9i3PDoCtVg-nWehIrrEjKdHVYc-vTOIUI8Ad5UZy684VoS-MPHWROsBeApsL_1HQYS-kHcTsYOzwGIQ2ypRQjFZMtGkQKpRdNkCVUA5mdxg1P7bBj03eX31TydNHeCiM/s1600/kali2.0_02.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjm33vH4cvNusk9i3PDoCtVg-nWehIrrEjKdHVYc-vTOIUI8Ad5UZy684VoS-MPHWROsBeApsL_1HQYS-kHcTsYOzwGIQ2ypRQjFZMtGkQKpRdNkCVUA5mdxg1P7bBj03eX31TydNHeCiM/s320/kali2.0_02.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Realizamos una prueba para ver si tor funciona como queremos:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 25px; width: 633px;&quot;&gt;torsocks curl ipecho.net/plain ; echo&lt;/textarea&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiMHtLbpiEZr7s0VMvKwYps7fgr9KO1bPLysbeMtY-qX9185MLozPDlXzJ0_48fToznCnozH1TfxQPEfLOWgWtl37B5bNMJhjPMCHH-uAJg4UxXgnMTeKY7I4XkCb7CoBrllqWHb5T8qW0/s1600/kali2.0_03.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiMHtLbpiEZr7s0VMvKwYps7fgr9KO1bPLysbeMtY-qX9185MLozPDlXzJ0_48fToznCnozH1TfxQPEfLOWgWtl37B5bNMJhjPMCHH-uAJg4UxXgnMTeKY7I4XkCb7CoBrllqWHb5T8qW0/s320/kali2.0_03.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Ahora si queremos enrutar todo el tráfico a traves de tor necesitaremos a la famosa &lt;b&gt;Backbox-anonymous&lt;/b&gt;, si no saven o no la conocen les explico un poco que se trata de un par de script que apuntan a configurar nuestro iptables para lograr que todo el sistema pase o se enrute primero a traves de tor se entiende?? osea configuraremos toda la máquina para que todas las plicaciones que toquen algo a traves de la red o internet pase enrutado a través de TOR, es muy sencilla de utilizar y bastante descriptiva si se presentan errores y así poder solucionar los inconvenientes que se presenten, para configurar necesitamos los siguientes 2 script y copiarlos (crearlos ) en las rutas indicadas:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 25px; width: 633px;&quot;&gt;nano /etc/default/backbox-anonymous&lt;/textarea&gt;&lt;/br&gt;Y pegamos lo siguiente:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 355px; width: 633px;&quot;&gt;# Defaults for BackBox Anonymous script
# sourced by /usr/sbin/anonymous

# List, separated by spaces, of destinations that you do not want to be
# routed through Tor
NON_TOR=&quot;192.168.0.0/16 172.16.0.0/12&quot;

# The UID as which Tor runs
TOR_UID=&quot;debian-tor&quot;

# Tor TransPort
TRANS_PORT=&quot;9040&quot;

# List, separated by spaces, of process names that should be killed
TO_KILL=&quot;chrome dropbox firefox pidgin skype thunderbird xchat&quot;

# List, separated by spaces, of BleachBit cleaners
BLEACHBIT_CLEANERS=&quot;bash.history system.cache system.clipboard system.custom system.recent_documents system.rotated_logs system.tmp system.trash&quot;

# Overwrite files to hide contents
OVERWRITE=&quot;true&quot;

# The default local hostname NOTE: Edit with your hostname, kali linux default is kali.
REAL_HOSTNAME=&quot;kali&quot;&lt;/textarea&gt;&lt;/br&gt;Ahora seguimos con el último script:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 25px; width: 633px;&quot;&gt;nano /usr/bin/backbox-anonymous&lt;/textarea&gt;&lt;/br&gt;le insertamos lo siguiente:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 355px; width: 633px;&quot;&gt;#!/bin/sh

# BackBox Script for Anonymous Internet Navigation
#
# This script is intended to set up your BackBox machine to guarantee 
# anonymity through Tor. Additionally, the script takes further steps to 
# guarantee prevantion of data leakage by killing dangerous processes,
# changing MAC address and IP information and so on.
#
# Author: Raffaele Forte &lt;raffaele@backbox.org&gt;
# Version: 1.4

# List, separated by spaces, of destinations that you do not want to be
# routed through Tor
NON_TOR=&quot;192.168.0.0/16 172.16.0.0/12&quot;

# The UID as which Tor runs
TOR_UID=&quot;debian-tor&quot;

# Tor TransPort
TRANS_PORT=&quot;9040&quot;

# List, separated by spaces, of process names that should be killed
TO_KILL=&quot;chrome dropbox firefox pidgin skype thunderbird xchat&quot;

# List, separated by spaces, of BleachBit cleaners
BLEACHBIT_CLEANERS=&quot;bash.history system.cache system.clipboard system.custom system.recent_documents system.rotated_logs system.tmp system.trash&quot;

# Overwrite files to hide contents
OVERWRITE=&quot;true&quot;

# The default local hostname
REAL_HOSTNAME=&quot;backbox&quot;

# Include default options, if any
if [ -f /etc/default/backbox-anonymous ] ; then
 . /etc/default/backbox-anonymous
fi

warning() {
 echo &quot;\n[!] WARNING! It&#39;s a simple script that avoid the most common system data&quot;
 echo &quot;    leaks. Your coumputer behaviour is the key to guarantee you a strong&quot;
 echo &quot;    privacy protection and a good anonimate.&quot;
 
 echo &quot;\n[i] Please edit /etc/default/backbox-anonymous with your custom values.&quot;
}

# General-purpose Yes/No prompt function
ask() {
 while true; do
  if [ &quot;${2:-}&quot; = &quot;Y&quot; ]; then
   prompt=&quot;Y/n&quot;
   default=Y
  elif [ &quot;${2:-}&quot; = &quot;N&quot; ]; then
   prompt=&quot;y/N&quot;
   default=N
  else
   prompt=&quot;y/n&quot;
   default=
  fi
 
  # Ask the question
  echo
  read -p &quot;$1 [$prompt] &gt; &quot; REPLY
 
  # Default?
  if [ -z &quot;$REPLY&quot; ]; then
   REPLY=$default
  fi
 
  # Check if the reply is valid
  case &quot;$REPLY&quot; in
   Y*|y*) return 0 ;;
   N*|n*) return 1 ;;
  esac
 done
}

# Make sure that only root can run this script
check_root() {
 if [ &quot;$(id -u)&quot; -ne 0 ]; then
  echo &quot;\n[!] This script must run as root\n&quot; &gt;&amp;2
  exit 1
 fi
}

# Kill processes at startup
kill_process() {
 if [ &quot;$TO_KILL&quot; != &quot;&quot; ]; then
  killall -q $TO_KILL
  echo &quot; * Killed processes to prevent leaks&quot;
 fi
}

# Release DHCP address
clean_dhcp() {
 dhclient -r
 rm -f /var/lib/dhcp/dhclient*
 echo &quot; * DHCP address released&quot;
}

# Change the local hostname
change_hostname() {
 
 echo

 CURRENT_HOSTNAME=$(hostname)

 clean_dhcp

 RANDOM_HOSTNAME=$(shuf -n 1 /etc/dictionaries-common/words | sed -r &#39;s/[^a-zA-Z]//g&#39; | awk &#39;{print tolower($0)}&#39;)

 NEW_HOSTNAME=${1:-$RANDOM_HOSTNAME}

 echo &quot;$NEW_HOSTNAME&quot; &gt; /etc/hostname
 sed -i &#39;s/127.0.1.1.*/127.0.1.1\t&#39;&quot;$NEW_HOSTNAME&quot;&#39;/g&#39; /etc/hosts

 echo -n &quot; * Service &quot;
 service hostname start 2&gt;/dev/null || echo &quot;hostname already started&quot;

 if [ -f &quot;$HOME/.Xauthority&quot; ] ; then
  su &quot;$SUDO_USER&quot; -c &quot;xauth -n list | grep -v $CURRENT_HOSTNAME | cut -f1 -d\ | xargs -i xauth remove {}&quot;
  su &quot;$SUDO_USER&quot; -c &quot;xauth add $(xauth -n list | tail -1 | sed &#39;s/^.*\//&#39;$NEW_HOSTNAME&#39;\//g&#39;)&quot;
  echo &quot; * X authority file updated&quot;
 fi
 
 avahi-daemon --kill

 echo &quot; * Hostname changed to $NEW_HOSTNAME&quot;
}

# Change the MAC address for network interfaces
change_mac() {
 
 VAR=0
 
 while [ $VAR -eq 0 ]; do
  echo -n &quot;Select network interfaces [&quot;
  echo -n $(ifconfig -a | grep Ethernet | awk &#39;{print $1}&#39;)
  read -p &quot;] &gt; &quot; IFACE
  
  ifconfig -a | grep Ethernet | awk &#39;{print $1}&#39; | grep -q -x &quot;$IFACE&quot;
  
  if [ $? -ne 1 ]; then
   VAR=1
  fi
 done

 if [ &quot;$1&quot; = &quot;permanent&quot; ]; then
  NEW_MAC=$(macchanger -p &quot;$IFACE&quot; | tail -n 1 | sed &#39;s/  //g&#39;)
  echo &quot;\n * $NEW_MAC&quot;
 else
  NEW_MAC=$(macchanger -A &quot;$IFACE&quot; | tail -n 1 | sed &#39;s/  //g&#39;)
  echo &quot;\n * $NEW_MAC&quot;
 fi
}

# Check Tor configs
check_configs() {

 grep -q -x &#39;RUN_DAEMON=&quot;yes&quot;&#39; /etc/default/tor
 if [ $? -ne 0 ]; then
  echo &quot;\n[!] Please add the following to your &#39;/etc/default/tor&#39; and restart the service:\n&quot;
  echo &#39; RUN_DAEMON=&quot;yes&quot;\n&#39;
  exit 1
 fi

 grep -q -x &#39;VirtualAddrNetwork 10.192.0.0/10&#39; /etc/tor/torrc
 VAR1=$?

 grep -q -x &#39;TransPort 9040&#39; /etc/tor/torrc
 VAR2=$?

 grep -q -x &#39;DNSPort 53&#39; /etc/tor/torrc
 VAR3=$?

 grep -q -x &#39;AutomapHostsOnResolve 1&#39; /etc/tor/torrc
 VAR4=$?

 if [ $VAR1 -ne 0 ] || [ $VAR2 -ne 0 ] || [ $VAR3 -ne 0 ] || [ $VAR4 -ne 0 ]; then
  echo &quot;\n[!] Please add the following to your &#39;/etc/tor/torrc&#39; and restart service:\n&quot;
  echo &#39; VirtualAddrNetwork 10.192.0.0/10&#39;
  echo &#39; TransPort 9040&#39;
  echo &#39; DNSPort 53&#39;
  echo &#39; AutomapHostsOnResolve 1\n&#39;
  exit 1
 fi
}

iptables_flush() {
 iptables -F
 iptables -t nat -F
 echo &quot; * Deleted all iptables rules&quot;
}

# BackBox implementation of Transparently Routing Traffic Through Tor
# https://trac.torproject.org/projects/tor/wiki/doc/TransparentProxy
redirect_to_tor() {
 
 echo

 if [ ! -e /var/run/tor/tor.pid ]; then
  echo &quot;\n[!] Tor is not running! Quitting...\n&quot;
  exit 1
 fi

 if ! [ -f /etc/network/iptables.rules ]; then
  iptables-save &gt; /etc/network/iptables.rules
  echo &quot; * Saved iptables rules&quot;
 fi

 iptables_flush

 echo -n &quot; * Service &quot;
 service resolvconf stop 2&gt;/dev/null || echo &quot;resolvconf already stopped&quot;

 echo &#39;nameserver 127.0.0.1&#39; &gt; /etc/resolv.conf
 echo &quot; * Modified resolv.conf to use Tor&quot;

 iptables -t nat -A OUTPUT -m owner --uid-owner $TOR_UID -j RETURN
 iptables -t nat -A OUTPUT -p udp --dport 53 -j REDIRECT --to-ports 53

 for NET in $NON_TOR 127.0.0.0/9 127.128.0.0/10; do
  iptables -t nat -A OUTPUT -d &quot;$NET&quot; -j RETURN
 done

 iptables -t nat -A OUTPUT -p tcp --syn -j REDIRECT --to-ports $TRANS_PORT
 iptables -A OUTPUT -m state --state ESTABLISHED,RELATED -j ACCEPT

 for NET in $NON_TOR 127.0.0.0/8; do
  iptables -A OUTPUT -d &quot;$NET&quot; -j ACCEPT
 done

 iptables -A OUTPUT -m owner --uid-owner $TOR_UID -j ACCEPT
 iptables -A OUTPUT -j REJECT
}

# BleachBit cleaners deletes unnecessary files to preserve privacy
do_bleachbit() {
 if [ &quot;$OVERWRITE&quot; = &quot;true&quot; ] ; then
  echo -n &quot;\n * Deleting and overwriting unnecessary files... &quot;
  bleachbit -o -c $BLEACHBIT_CLEANERS &gt;/dev/null
 else
  echo -n &quot;\n * Deleting unnecessary files... &quot;
  bleachbit -c $BLEACHBIT_CLEANERS &gt;/dev/null
 fi

 echo &quot;Done!&quot;
}

do_start() {
 check_configs
 check_root
 
 warning

 echo &quot;\n[i] Starting anonymous mode\n&quot;

 echo -n &quot; * Service &quot;
 service network-manager stop 2&gt;/dev/null || echo &quot; network-manager already stopped&quot;

 kill_process
 
 if [ &quot;$(virt-what)&quot; != &quot;&quot; ]; then
  echo &quot; * Unable to change MAC address in a Virtual Machine&quot;
 else
  if ask &quot;Do you want to change the MAC address?&quot; Y; then
   change_mac
  fi
 fi
 
 if ask &quot;Do you want to change the local hostname?&quot; Y; then
  read -p &quot;Type it or press Enter for a random one &gt; &quot; CHOICE

  if [ &quot;$CHOICE&quot; = &quot;&quot; ]; then
   change_hostname
  else
   change_hostname &quot;$CHOICE&quot;
  fi
 fi

 if ask &quot;Do you want to transparently routing traffic through Tor?&quot; Y; then
  redirect_to_tor
 else
  echo
 fi

 echo -n &quot; * Service &quot;
 service network-manager start 2&gt;/dev/null || echo &quot;network-manager already started&quot;
 service tor restart
 echo
}

do_stop() {

 check_root

 echo &quot;\n[i] Stopping anonymous mode\n&quot;

 echo -n &quot; * Service &quot;
 service network-manager stop 2&gt;/dev/null || echo &quot; network-manager already stopped&quot;

 iptables_flush

 if [ -f /etc/network/iptables.rules ]; then
  iptables-restore &lt; /etc/network/iptables.rules
  rm /etc/network/iptables.rules
  echo &quot; * Restored iptables rules&quot;
 fi

 echo -n &quot; * Service &quot;
 service resolvconf start 2&gt;/dev/null || echo &quot;resolvconf already started&quot;

 kill_process
 
 if [ &quot;$(virt-what)&quot; != &quot;&quot; ]; then
  echo &quot; * Unable to change MAC address in a Virtual Machine&quot;
 else
  if ask &quot;Do you want to change the MAC address?&quot; Y; then
   change_mac permanent
  fi
 fi
 
 if ask &quot;Do you want to change the local hostname?&quot; Y; then
  read -p &quot;Type it or press Enter to restore default [$REAL_HOSTNAME] &gt; &quot; CHOICE

  if [ &quot;$CHOICE&quot; = &quot;&quot; ]; then
   change_hostname $REAL_HOSTNAME
  else
   change_hostname &quot;$CHOICE&quot;
  fi
 else
  echo
 fi
 
 echo -n &quot; * Service &quot;
 service network-manager start 2&gt;/dev/null || echo &quot;network-manager already started&quot;
 service tor restart

 if [ &quot;$DISPLAY&quot; ]; then
  if ask &quot;Delete unnecessary files to preserve your privacy?&quot; Y; then
   do_bleachbit
  fi
 fi

 echo
}

do_status() {

 echo &quot;\n[i] Showing anonymous status\n&quot;

 ifconfig -a | grep &quot;encap:Ethernet&quot; | awk &#39;{print &quot; * &quot; $1, $5}&#39;

 CURRENT_HOSTNAME=$(hostname)
 echo &quot; * Hostname $CURRENT_HOSTNAME&quot;
 
 HTML=$(curl -s https://check.torproject.org/?lang=en_US)
 IP=$(echo &quot;$HTML&quot; | egrep -m1 -o &#39;[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}&#39;)

 echo &quot;$HTML&quot; | grep -q &quot;Congratulations. This browser is configured to use Tor.&quot;

 if [ $? -ne 0 ]; then
  echo &quot; * IP $IP&quot;
  echo &quot; * Tor OFF\n&quot;
  exit 3
 else
  echo &quot; * IP $IP&quot;
  echo &quot; * Tor ON\n&quot;
 fi
}

case &quot;$1&quot; in
 start)
  do_start
 ;;
 stop)
  do_stop
 ;;
 status)
  do_status
 ;;
 *)
  echo &quot;Usage: $0 {start|stop|status}&quot; &gt;&amp;2
  exit 3
 ;;
esac

exit 0&lt;/textarea&gt;&lt;/br&gt;Por las dudas dejo los links de cada uno por separado&amp;nbsp;&lt;a href=&quot;https://github.com/hackendemoniado/scripts/blob/master/etc/default/backbox-anonymous&quot; target=&quot;_blank&quot;&gt;https://github.com/hackendemoniado/scripts/blob/master/etc/default/backbox-anonymous&lt;/a&gt; y el último es&amp;nbsp;&lt;a href=&quot;https://github.com/hackendemoniado/scripts/blob/master/usr/sbin/backbox-anonymous&quot; target=&quot;_blank&quot;&gt;https://github.com/hackendemoniado/scripts/blob/master/usr/sbin/backbox-anonymous&lt;/a&gt; &lt;/br&gt;Ahora solo hace falta iniciar el servicio:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;service tor start
backbox-anonymous start
&lt;/textarea&gt;&lt;/br&gt;A mi me apareció el siguiente problema (es algo normal la primera ves que lo ejecutemos...):&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEghtmd1H5vONLTS10zn8I3yN6UZAcYH6Jv5gzuMcazWRl3spUMy9vpAI4nv5FHrYWJ5uRrf8oyuWYc2kBnbbdfsApRxlZf4BmkE7CauH3tY7B6QIQMVhwFFRYKlrRGkLGsaaBJRMnUOHow/s1600/kali2.0_04.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEghtmd1H5vONLTS10zn8I3yN6UZAcYH6Jv5gzuMcazWRl3spUMy9vpAI4nv5FHrYWJ5uRrf8oyuWYc2kBnbbdfsApRxlZf4BmkE7CauH3tY7B6QIQMVhwFFRYKlrRGkLGsaaBJRMnUOHow/s320/kali2.0_04.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/br&gt;Como les aclare que era muy descriptivo solo agregue ese texto al archivo /etc/tor/torrc y luego ya funciona con normalidad y nos realiza las consultas pertinentes:&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjpNiN1Yb_QV31eFwoQHYuBxWI94PuyHyKCoA6BYY2P84tKwOBZMdTrbvWDerBlTjl_8Dt8giR7M5iuww9LV9NWeYFiF8vRuhGJc_f7OOhAGfaBzChPVvmpKcrfZmeUGA1H4hT-Ijk4-qQ/s1600/kali2.0_05.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjpNiN1Yb_QV31eFwoQHYuBxWI94PuyHyKCoA6BYY2P84tKwOBZMdTrbvWDerBlTjl_8Dt8giR7M5iuww9LV9NWeYFiF8vRuhGJc_f7OOhAGfaBzChPVvmpKcrfZmeUGA1H4hT-Ijk4-qQ/s320/kali2.0_05.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/br&gt;Ahora vamos a comprobar que realmente esté funcionando como nosotros deseamos, la forma más simple es mirar cual es nuestra ip externa actual y cual es nuestra geolocalización:&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhktQ9ejQejZGzeD_6d5Xmb0sH6FaDmvT4efATK_LGsMptMedBwWOTFYrih31VYBBRxSKOl6eEgpcFs3_bsfeZiErWgOwOKJQiZjON1RLXj3ONuLIYxNO_Y0CmgatJMLtdQ21tIJoUbXiM/s1600/kali2.0_06.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhktQ9ejQejZGzeD_6d5Xmb0sH6FaDmvT4efATK_LGsMptMedBwWOTFYrih31VYBBRxSKOl6eEgpcFs3_bsfeZiErWgOwOKJQiZjON1RLXj3ONuLIYxNO_Y0CmgatJMLtdQ21tIJoUbXiM/s320/kali2.0_06.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi6aizCpW4AJZH7V_zrEfz6KhNK2IE7qlUwY8iLH8_2THokddTXo3O8TOkF6J2qZXvpqmIFolIsezM49QrJvgN_zc0iaFNeBECB6V6UVoSphIakRTDBIr9xopZvroBS44j3xhNkadXGlEo/s1600/kali2.0_07.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi6aizCpW4AJZH7V_zrEfz6KhNK2IE7qlUwY8iLH8_2THokddTXo3O8TOkF6J2qZXvpqmIFolIsezM49QrJvgN_zc0iaFNeBECB6V6UVoSphIakRTDBIr9xopZvroBS44j3xhNkadXGlEo/s320/kali2.0_07.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/br&gt;Como se darán cuanta funciona.....&lt;/li&gt;
&lt;li&gt;Luego instalaremos firefox (otro paso opcional pues yo estoy más a costumbrado...), obvio removeremos a iceweasel:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;apt-get remove iceweasel -y
apt-get install firefox-mozilla-build -y
&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Flash player ni se te cruce por la mente instalarlo heeeee.&lt;/li&gt;
&lt;li&gt;Ahora agregaremos un usuario para no manipular siempre con root:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;useradd -m tuusuario -G sudo -s /bin/bash
passwd tuusuario
&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Si te molesta el &quot;Intelligent Sidebar Option&quot; lo podemos desactivar de la siguiente manera:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;iframe allowfullscreen=&quot;&quot; class=&quot;YOUTUBE-iframe-video&quot; data-thumbnail-src=&quot;https://i.ytimg.com/vi/nUkPC4McSiY/0.jpg&quot; frameborder=&quot;0&quot; height=&quot;266&quot; src=&quot;https://www.youtube.com/embed/nUkPC4McSiY?feature=player_embedded&quot; width=&quot;320&quot;&gt;&lt;/iframe&gt;&lt;/li&gt;
&lt;/ol&gt;
Bueno amigos espero que les funcione todo y aclaro que lógicamente desde este punto ya pueden instalar todas las aplicaciones que ustedes deseen pero como es una distro para pentesting (legal o no ja) lo demás ya no me parece imprescindible explicar como instalar pues ya se aleja del objetivo para el cual esta diseñada la distro, cualquier cosa ya saben consulten.
</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/1010211905100880775/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2015/12/que-hacer-despues-de-instalar-kali.html#comment-form' title='14 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/1010211905100880775'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/1010211905100880775'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2015/12/que-hacer-despues-de-instalar-kali.html' title='Que hacer después de instalar kali linux 2.0'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjm33vH4cvNusk9i3PDoCtVg-nWehIrrEjKdHVYc-vTOIUI8Ad5UZy684VoS-MPHWROsBeApsL_1HQYS-kHcTsYOzwGIQ2ypRQjFZMtGkQKpRdNkCVUA5mdxg1P7bBj03eX31TydNHeCiM/s72-c/kali2.0_02.png" height="72" width="72"/><thr:total>14</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-2856296832399326136</id><published>2015-12-29T13:17:00.000-08:00</published><updated>2015-12-29T15:15:04.346-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="hacking"/><category scheme="http://www.blogger.com/atom/ns#" term="kali"/><category scheme="http://www.blogger.com/atom/ns#" term="pentesting"/><category scheme="http://www.blogger.com/atom/ns#" term="seguridad"/><title type='text'>Como instalar Kali linux 2.0</title><content type='html'>Hola amigos hoy vengo a mostrar unas pequeños print de pantalla que muestran los pasos para instalar esta distro, primero que nada se van al sitio oficial y descargan la iso &lt;a href=&quot;https://www.kali.org/downloads/&quot; target=&quot;_blank&quot;&gt;https://www.kali.org/downloads/&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Luego de descargarla y de quemarla en un DVD o pendrive o lo que sea pasamos directamente a instalarla, en mi caso lo voy a realizar en virtualbox, algo importante si llegan a decidir instalarla también en virtualbox es que necesitan darle un disco de mas de 8 gb, yo lo hice de 10 gb y del tipo vmdk porque suele dar errores al instalarla si no lo configuramos de esta manera, aclarado esto ahora si pasamos a los pasos de la instalación que no a cambiado casi nada de las versiones anteriores pero bueno si es la primera ves que lo haces seguramente te ayude si no llegas a tener un poco de experiencia en linux pero ya verán que es super sencillo y rápido.&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Lo primero que veremos al montar la iso será lo siguiente:&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEixSJa6Lm4wvIozlfTvwtHjkawbYpPSrJy9kviN5z2qSap51ljzBAuKnHoJRuV3i3WKWEEDv-bRxTUb0COj5ehscA7jETn6hoRfXx4kRJZLoCRLYvX7xW3sQzeuItUx08IM0dbqoGzQsCQ/s1600/kali2.0_01.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEixSJa6Lm4wvIozlfTvwtHjkawbYpPSrJy9kviN5z2qSap51ljzBAuKnHoJRuV3i3WKWEEDv-bRxTUb0COj5ehscA7jETn6hoRfXx4kRJZLoCRLYvX7xW3sQzeuItUx08IM0dbqoGzQsCQ/s320/kali2.0_01.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Luego decidimos por instalar en el modo gráfico (o si quieren testear la distro antes de instalar seleccionan alguna de las opciones anteriores):&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgYcRSaFZBpOIE4Fo_MmsOdrvvJe3R7DwE_FLlYmLDv05XnJbvsKQxOt76YNfdKA8pZxFcz-2bzGlcTqZ7hRJfZtrG9t1D53WL_ZFXGamz6hqNpWc3-cTlb0lmVMx_LtoxqLhb6zMQqlFE/s1600/kali2.0_02.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgYcRSaFZBpOIE4Fo_MmsOdrvvJe3R7DwE_FLlYmLDv05XnJbvsKQxOt76YNfdKA8pZxFcz-2bzGlcTqZ7hRJfZtrG9t1D53WL_ZFXGamz6hqNpWc3-cTlb0lmVMx_LtoxqLhb6zMQqlFE/s320/kali2.0_02.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Esperamos a que cargue&lt;span id=&quot;goog_1351984740&quot;&gt;&lt;/span&gt;&lt;span id=&quot;goog_1351984741&quot;&gt;&lt;/span&gt; y seleccionamos nuestro idioma:&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiC_UPI8olEzYa-uv1cxpEhiKVFjugQeVFoH9EUIwwRf24d7Qj8cMcFn0OEmirWaImBV18FNdFs8kY1nj1arnrIYqzA5R2KI_WzRXz7w_oL2Gkq-aYHQtDxgSlBmswpXkxpco7E8fFc6yY/s1600/kali2.0_03.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiC_UPI8olEzYa-uv1cxpEhiKVFjugQeVFoH9EUIwwRf24d7Qj8cMcFn0OEmirWaImBV18FNdFs8kY1nj1arnrIYqzA5R2KI_WzRXz7w_oL2Gkq-aYHQtDxgSlBmswpXkxpco7E8fFc6yY/s320/kali2.0_03.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Buscamos nuestro país:&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhasQW2rPrLau0CzDGZ_i6tDUtHKdTOUMu51TMqVKKGinq1YIBya4FSscGRjhiIlZU0h4RYtwhrNyIB4860vQsrb0cIDHZLBxFrKe1aJTSf7jkW6UXNDWEbi21nh7sCLMuJ8_WaKXmlLZc/s1600/kali2.0_04.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhasQW2rPrLau0CzDGZ_i6tDUtHKdTOUMu51TMqVKKGinq1YIBya4FSscGRjhiIlZU0h4RYtwhrNyIB4860vQsrb0cIDHZLBxFrKe1aJTSf7jkW6UXNDWEbi21nh7sCLMuJ8_WaKXmlLZc/s320/kali2.0_04.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Configuramos el teclado:&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg-saeXZ4OfLO5ZBWVUhOZ-lUPkL3SqWZnekdpk2HeWNvT_ix4Ie49vVLi9rB5raJSxrvEY6pjKuXypmz3csxeX4PIj88ACokB7FZ1y-OMlCWikkR-33LK4Syzs-COSIOJ7WwtkUlhXg_0/s1600/kali2.0_05.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg-saeXZ4OfLO5ZBWVUhOZ-lUPkL3SqWZnekdpk2HeWNvT_ix4Ie49vVLi9rB5raJSxrvEY6pjKuXypmz3csxeX4PIj88ACokB7FZ1y-OMlCWikkR-33LK4Syzs-COSIOJ7WwtkUlhXg_0/s320/kali2.0_05.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Le damos un nombre a nuestra máquina:&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi_F1cXqI4wEzwjQRGPYMWyKMWMHuJk_Nu_Wpi_ZJbK4JWkvJriINkTXZ9DpWKCoGGBfTQndNyQ54Aum7yhBIbNkVZZVL9EwLVRs5OlWDF9W1eKJlR3JzX8UuSeF73Bx4ogEki9Q9Xi3A0/s1600/kali2.0_06.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi_F1cXqI4wEzwjQRGPYMWyKMWMHuJk_Nu_Wpi_ZJbK4JWkvJriINkTXZ9DpWKCoGGBfTQndNyQ54Aum7yhBIbNkVZZVL9EwLVRs5OlWDF9W1eKJlR3JzX8UuSeF73Bx4ogEki9Q9Xi3A0/s320/kali2.0_06.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Si tenemos un dominio al cual tenemos que unir esta máquina lo indicamos acá:&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhIP2IXQuJ0ybE_HHfmWRn9tyNoLcZeSL4vxdLjbsTdnYUjvj7JkOkjW0gkkURFcmPDiBBQSc4LUPaV3J0_viFYULeJZrpW7IGoSIKD5lD8xe3YOU9JQVYAY8M9K2OCvbNT5FJhnozIdA0/s1600/kali2.0_07.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhIP2IXQuJ0ybE_HHfmWRn9tyNoLcZeSL4vxdLjbsTdnYUjvj7JkOkjW0gkkURFcmPDiBBQSc4LUPaV3J0_viFYULeJZrpW7IGoSIKD5lD8xe3YOU9JQVYAY8M9K2OCvbNT5FJhnozIdA0/s320/kali2.0_07.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Ponemos el password para el root del sistema o super usuario:&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg6bQTfzpOB0No3T_PzfRbJO5bGA98bCx-xGoNuBtFtl4XdzunEkwZKwoAuJwn122Tk6RJD1j6FhS460LTTAaj7wJT49oJvz1dTynffUGO8aW-2PcPoZFdkb2GiB0Jdz5NTKu2pI-g4vro/s1600/kali2.0_08.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg6bQTfzpOB0No3T_PzfRbJO5bGA98bCx-xGoNuBtFtl4XdzunEkwZKwoAuJwn122Tk6RJD1j6FhS460LTTAaj7wJT49oJvz1dTynffUGO8aW-2PcPoZFdkb2GiB0Jdz5NTKu2pI-g4vro/s320/kali2.0_08.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Indicamos como vamos a particionar el disco, lo normal es dejarlo por defecto:&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNcgFY-gIFk3a1Dufp5Th0WKoEtO2f7igS3qL6BFdZQ7nGXEeI4NRZLRdcenpwXj1yCMWx9MzhlisC4qjkXhu37ea4-gId6_-agcIrAtQwwa2rn2ByC_Hl8bxBucMm3_oTWJzLDf3z9d4/s1600/kali2.0_09.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNcgFY-gIFk3a1Dufp5Th0WKoEtO2f7igS3qL6BFdZQ7nGXEeI4NRZLRdcenpwXj1yCMWx9MzhlisC4qjkXhu37ea4-gId6_-agcIrAtQwwa2rn2ByC_Hl8bxBucMm3_oTWJzLDf3z9d4/s320/kali2.0_09.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Nos indica el nombre y datos del disco en el cual se realizará la instalación y aclara que si tienen algo se perderá porque formateara todo:&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUHywxrskMI6vWfTj5bPiWfYyo-3FfWnIvrJ5fLZrPXYgl5LDKouZzty5rUM5vLAYMbLCxc7CgPV-zPwRNsCO_veBf9NkZ-sfk9A0BBX1pr90NB14d6xjkTo0Edlglzf5yHfT_ffLF4C4/s1600/kali2.0_10.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUHywxrskMI6vWfTj5bPiWfYyo-3FfWnIvrJ5fLZrPXYgl5LDKouZzty5rUM5vLAYMbLCxc7CgPV-zPwRNsCO_veBf9NkZ-sfk9A0BBX1pr90NB14d6xjkTo0Edlglzf5yHfT_ffLF4C4/s320/kali2.0_10.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Indicamos la forma que vamos a dividir nuestro disco (lo dejamos por defecto):&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjB-qnj9V-0UbzcMib-hoEh_vHXH-yrCNU1XxoMl9YvVkJp4cNFv8OXyAXtNc_DHBZuHHDFd9khep2uWZQKm4fIFjiumOb_qiksL1dIku4vO7yghyphenhyphenDPXlQVFupuwdqePvIzRs3khHZjW6U/s1600/kali2.0_11.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjB-qnj9V-0UbzcMib-hoEh_vHXH-yrCNU1XxoMl9YvVkJp4cNFv8OXyAXtNc_DHBZuHHDFd9khep2uWZQKm4fIFjiumOb_qiksL1dIku4vO7yghyphenhyphenDPXlQVFupuwdqePvIzRs3khHZjW6U/s320/kali2.0_11.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Nos muestra como va a quedar nuestro disco dividido, y seleccionamos finalizar el particionado....:&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhuhGiVo9tqRZbYuk0ReW8NWvf8yyaSzKR1rO49Ty8re9qQ_FacJbjLAlLA9jgSeVxzrhjE3tKQ6c2SmCVRtwZHpzWe9XN1klI7tSNgM8K1jmIRz05SyS9N5-_32JKBHzq3HDwLUeb7nKg/s1600/kali2.0_12.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhuhGiVo9tqRZbYuk0ReW8NWvf8yyaSzKR1rO49Ty8re9qQ_FacJbjLAlLA9jgSeVxzrhjE3tKQ6c2SmCVRtwZHpzWe9XN1klI7tSNgM8K1jmIRz05SyS9N5-_32JKBHzq3HDwLUeb7nKg/s320/kali2.0_12.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Nos pide confirmación para realizar los cambios y obvio le damos que si:&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEglGnsQuMZDkoYvfc7vNByGc_TllM4YzNz2nTtiyCWBubojYaZk-onCFs0b30qqffe-Alqkeo9WUDgmO24cc0Pg34SOTwrzIodzV5CyiqtvmdpATeU0aj4d4QpP2vs2jXWQdStUWn28S10/s1600/kali2.0_13.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEglGnsQuMZDkoYvfc7vNByGc_TllM4YzNz2nTtiyCWBubojYaZk-onCFs0b30qqffe-Alqkeo9WUDgmO24cc0Pg34SOTwrzIodzV5CyiqtvmdpATeU0aj4d4QpP2vs2jXWQdStUWn28S10/s320/kali2.0_13.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Esperamos un poco mientras se instala:&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhEpWKHivIWIwRjlAZTY_fCcnCgQCb7s8FjDLwCLB2bKblHZv0gd1PR_NXjionpx7XkoPvnpWFR7EGA37k3mGzNGmFfBt8EVtUALBMKfLk6xF61vrESCQg-HDJg_mzhzPzhqZVi-kHy6N0/s1600/kali2.0_14.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhEpWKHivIWIwRjlAZTY_fCcnCgQCb7s8FjDLwCLB2bKblHZv0gd1PR_NXjionpx7XkoPvnpWFR7EGA37k3mGzNGmFfBt8EVtUALBMKfLk6xF61vrESCQg-HDJg_mzhzPzhqZVi-kHy6N0/s320/kali2.0_14.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span id=&quot;goog_1351984767&quot;&gt;&lt;/span&gt;&lt;span id=&quot;goog_1351984768&quot;&gt;&lt;/span&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgRvr844Z9ZlD6NoxzJaeIwK8rp0g8dTuNfdhTP5cCfsQp14r7vlsos3dWV3XAz81bUsTWGfLHjM2wnucgJrWk3LuSLQIG4ARWMkMsiduRRPR1P-P_9CoueREGSSEUUqYKsj1WdA2fBt4s/s1600/kali2.0_15.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgRvr844Z9ZlD6NoxzJaeIwK8rp0g8dTuNfdhTP5cCfsQp14r7vlsos3dWV3XAz81bUsTWGfLHjM2wnucgJrWk3LuSLQIG4ARWMkMsiduRRPR1P-P_9CoueREGSSEUUqYKsj1WdA2fBt4s/s320/kali2.0_15.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Nos indica que es el único sistema instalado y que podremos instalar el grub o cargador de arranque y le damos a que si:&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpYKfrE3EUyoFmRi3YAfwNGfjNHq3ZllDXwV6Km1Yqgb3cyNArcR2iWl9KyJ1OR94W8vqqJc0OeyH_OUJNI1ub7ZBSy3a9HSmAZH2mJ2m11YIorMFppfA7QcO9Ne-s5tpRJ-w9ekpAwxM/s1600/kali2.0_16.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpYKfrE3EUyoFmRi3YAfwNGfjNHq3ZllDXwV6Km1Yqgb3cyNArcR2iWl9KyJ1OR94W8vqqJc0OeyH_OUJNI1ub7ZBSy3a9HSmAZH2mJ2m11YIorMFppfA7QcO9Ne-s5tpRJ-w9ekpAwxM/s320/kali2.0_16.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Seleccionamos nuestro disco como principal:&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioR7zicbzVbOycWSAQEvagarxGv4mxVlzJ8BXeq9-xm8nsfOBhjNUzQEHY_8yLv9vmmXwAU39zVIoaj1BPGplOgs5zWK11KL2ukSnBJcDOgULb67Ppu7THUT1TEOHL5aNfvHVSaURTKtg/s1600/kali2.0_17.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioR7zicbzVbOycWSAQEvagarxGv4mxVlzJ8BXeq9-xm8nsfOBhjNUzQEHY_8yLv9vmmXwAU39zVIoaj1BPGplOgs5zWK11KL2ukSnBJcDOgULb67Ppu7THUT1TEOHL5aNfvHVSaURTKtg/s320/kali2.0_17.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Y luego de unos minutos ya terminamos:&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiDjFGjSa8SFVvQAp5CUUVFrIMrPQio5XuMcvHRjHvlO8vfPNL5HahFL9wvxE8bsRZqzjWJ9XbGSojsXL0KJK6hAGoPfCNVR-c_Ou_oqzxWnyb-HZJJrQFN9IS85HnZ5Z5fW7_HAsyzAzI/s1600/kali2.0_18.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiDjFGjSa8SFVvQAp5CUUVFrIMrPQio5XuMcvHRjHvlO8vfPNL5HahFL9wvxE8bsRZqzjWJ9XbGSojsXL0KJK6hAGoPfCNVR-c_Ou_oqzxWnyb-HZJJrQFN9IS85HnZ5Z5fW7_HAsyzAzI/s320/kali2.0_18.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhtwjzjJXmE3ZHBc63GX5Lpn-HuH8q2E5ACcJjhyphenhyphenKy7cd9Q_zGEaIL-iPgWZ-vlZ5z-86CT-zMkVa22GCYMmmrRMPTrqj3tUyGCd5IdZ22piSUauPxDu_ffUByKKEcR8uU9oKg2cFDskZs/s1600/kali2.0_19.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhtwjzjJXmE3ZHBc63GX5Lpn-HuH8q2E5ACcJjhyphenhyphenKy7cd9Q_zGEaIL-iPgWZ-vlZ5z-86CT-zMkVa22GCYMmmrRMPTrqj3tUyGCd5IdZ22piSUauPxDu_ffUByKKEcR8uU9oKg2cFDskZs/s320/kali2.0_19.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Después se reiniciara y aparecerá lo siguiente:&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgLQGbwbcGKP20YSB2dEQJUyEbWOTyCrpk_R7vqeFUf70S_3AJj3P7I8BuWcLaB2C3dnAfb96CWjywYM4ob-x4cW5g1Zr2AWnyWFQS_xRWm5wuBiHK_zsTLvWhnEyJD4ph3NGVE_qJsAWU/s1600/kali2.0_20.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgLQGbwbcGKP20YSB2dEQJUyEbWOTyCrpk_R7vqeFUf70S_3AJj3P7I8BuWcLaB2C3dnAfb96CWjywYM4ob-x4cW5g1Zr2AWnyWFQS_xRWm5wuBiHK_zsTLvWhnEyJD4ph3NGVE_qJsAWU/s320/kali2.0_20.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Esperamos a que se inicie y nos va a pedir nuestro usuario que es root y el password que ya lo definimos durante la instalación:&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi3fiSKIvgEvZBLRX59tkOl_dehdgMCtmOMi7lfNIXDNW09M4bHiaazhhG3LgaCCx25HPARCR4PW3_DxXaWtARjK1FH_kw6Zng1GKC2qIV1dARQU7WRuVxe8YFTsTfusY2CfIQR23SVTp4/s1600/kali2.0_21.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi3fiSKIvgEvZBLRX59tkOl_dehdgMCtmOMi7lfNIXDNW09M4bHiaazhhG3LgaCCx25HPARCR4PW3_DxXaWtARjK1FH_kw6Zng1GKC2qIV1dARQU7WRuVxe8YFTsTfusY2CfIQR23SVTp4/s320/kali2.0_21.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTJ7UWi4g3jRyD2ZENIsSiKSqICd1u8j-WqHLoD6ZiIJjy5zKOSZFDYBT4FvGfttFvYt3nSgRHQFOh4VZdKtmdhEgFHlgmzlzjWg-auDb993MVWegOVtKBr1VXWVibKgrD8cJmN9ZzR6Q/s1600/kali2.0_22.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTJ7UWi4g3jRyD2ZENIsSiKSqICd1u8j-WqHLoD6ZiIJjy5zKOSZFDYBT4FvGfttFvYt3nSgRHQFOh4VZdKtmdhEgFHlgmzlzjWg-auDb993MVWegOVtKBr1VXWVibKgrD8cJmN9ZzR6Q/s320/kali2.0_22.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_NZ2YuMnN1jsDElLnDvBIcWssxdatg__MOHMm3rscFg6-4DVes-RrUFdFd4GT34XJGrLHD__PUvJMHdIhzRRdc9rVN6tjjxjlScgC1tLtjyBG4tagpkSVfrWOsh2-GsB_a7yo9ovpcOw/s1600/kali2.0_23.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_NZ2YuMnN1jsDElLnDvBIcWssxdatg__MOHMm3rscFg6-4DVes-RrUFdFd4GT34XJGrLHD__PUvJMHdIhzRRdc9rVN6tjjxjlScgC1tLtjyBG4tagpkSVfrWOsh2-GsB_a7yo9ovpcOw/s320/kali2.0_23.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;La verdad es un proceso muy sencillo, como verán es bastante diferente a versiones anteriores y no hace falta configurar demasiadas cosas ni resolver errores como era antes pues ya esto es una muestra de lo evolucionada que esta la distro y del gran empeño en mejorarla.&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
Bueno amigos espero que les sea de utilidad y ya voy a publicar un par de cosas que podremos configurar para dejara un poquito más a punto esta increíble distro, saludos&lt;br /&gt;
&lt;ol&gt;
&lt;/ol&gt;
</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/2856296832399326136/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2015/12/como-instalar-kali-linux-20.html#comment-form' title='7 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/2856296832399326136'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/2856296832399326136'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2015/12/como-instalar-kali-linux-20.html' title='Como instalar Kali linux 2.0'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEixSJa6Lm4wvIozlfTvwtHjkawbYpPSrJy9kviN5z2qSap51ljzBAuKnHoJRuV3i3WKWEEDv-bRxTUb0COj5ehscA7jETn6hoRfXx4kRJZLoCRLYvX7xW3sQzeuItUx08IM0dbqoGzQsCQ/s72-c/kali2.0_01.png" height="72" width="72"/><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-2522078080615054355</id><published>2015-12-23T04:01:00.001-08:00</published><updated>2016-01-28T08:28:10.666-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="cron"/><category scheme="http://www.blogger.com/atom/ns#" term="script"/><category scheme="http://www.blogger.com/atom/ns#" term="sysadmin"/><title type='text'>script para automatizar tareas (PARTE 2) - Controlar logins fallidos y mandar alerta por email</title><content type='html'>Hola seguimos con el tema de los script, ahora vamos a dar un pequeño paso más en esto de los script con cosas bastante útiles, la cosa es muy simple controlar los intentos de login en nuestro equipo por el momento a nuestros usuarios osea controlar la cantidad de intentos de acceso y en caso de ser necesario que nos llegue un email a nuestro correo reportando alguna actividad y de paso esta opción la podremos ocupar en el futuro para otros scripts y obviamente utilizaremos algunas cosas de la &lt;a href=&quot;http://hackendemoniado.blogspot.com.ar/2015/11/script-para-automatizar-tareas-parte-1.html&quot; target=&quot;_blank&quot;&gt;parte 1&lt;/a&gt;.&lt;br /&gt;
Vamos a necesitar un corrego en gmail, y tener conocimentos en comandos variados de linux y programación básica,&amp;nbsp; pueden leet la parte uno para empezar desde cero porque hay cosas que ya las explique en esa parte y no da que repita lo mismo, todo lo nuevo obvio lo explico paso a paso para no perderce. &lt;br /&gt;
&lt;br /&gt;
Bueno pasemos directamente a trabajar:&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Primero creamos un archivo y le damos los permisos necesarios para ejecutar dicho script: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 45px; width: 633px;&quot; onMouseOver=&quot;this.focus()&quot; onFocus=&quot;this.select()&quot;&gt;touch login_hackendefail.sh
chmod a+x login_hackendefail.sh
vim login_hackendefail.sh
&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Bien pasemos de lleno al script voy a explicar línea por línea:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 280px; width: 633px;&quot;&gt;#/bin/bash
unahoramenos=`date +%R --date=&#39;-1 hours&#39;`
horaactual=`date +%R`
lastb -s $unahoramenos -t $horaactual | grep hackende &gt; /tmp/loginfailshackende.txt
cantfail=`wc -l /tmp/loginfailshackende.txt &gt; /tmp/cantfailhackende.txt`
contador=`awk &#39;{print $1}&#39; /tmp/cantfailhackende.txt`
dia=`awk &#39;{print $5}&#39; /tmp/loginfailshackende.txt | head -n 1`
hora=`date +&quot;%R&quot;`
diahoy=`date +&quot;%d&quot;`
if [ $contador -ge 3 ] &amp;&amp; [ $dia -eq $diahoy ]; then
        echo &quot;Alguien esta intentando entrar demaciadas veces como hackendemoniado&quot; | mutt -s &quot;Intento de acceso a hackendemoniado&quot; sergiosysforence@hotmail.com.ar
 fechahoy=$(date +&quot;%d-%m-%Y-%H-%M&quot;)
 tar -zcvf backupsloginhack.$fechahoy.tar.gz /tmp/loginfailshackende.txt
 cp backupsloginhack.$fechahoy.tar.gz /media/veracrypt1/backupsscripts/backups_loginhackendemoniado
 rm -rf backupsloginhack.$fechahoy.tar.gz
 rm -rf /tmp/loginfailshackende.txt
fi
&lt;/textarea&gt;&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;La variable unahoramenos sirve para tener guardada una hora menos que la actual, osea si son las 20 horas va a guardar la hora 19, se entiende?? esto lo utilizo para que cuando ejecute el script empiece a controlar no desde la hora actual sino desde una hora antes y revisar la cantidad de intentos de acceso, obvio eso ustedes los pueden manipular como ustedes más gusten.&lt;/li&gt;
&lt;li&gt;La variable horaactual obtiene la hora actual del sistema sin los segundos. &lt;/li&gt;
&lt;li&gt;El comando &quot;lastb&quot; es lo principal de este script porque es el que lista los intentos fallidos en el sistema para todos los usuarios con información relevante como fecha, hora, etc. con la &quot;-s&quot; indicamos un horario en el cual queremos revisar para que no nos liste absolutamente todo desde el origen de los tiempos, obvio primero lo hacemos para algún usuario en particular en mi caso el mio (| grep hackende) y luego lo redirigimos a un txt (loginfailshackende.txt).&lt;/li&gt;
&lt;li&gt;Con el comando &quot;wc -l&quot; lo que hacemos es contar la cantidad de lineas que tiene el archivo de txt que creamos en la línea anterior para saber exactamente la cantidad de intentos fallidos en el sistema y lo redirigimos a un txt (&lt;span class=&quot;pl-s&quot;&gt;cantfailhackende.txt&lt;span class=&quot;pl-pds&quot;&gt;&lt;/span&gt;&lt;/span&gt;).&lt;/li&gt;
&lt;li&gt;&amp;nbsp;&quot;awk&quot; lo que permite es manipular los strings, y precisamente sacamos lo que tiene la primer columna es decir la cantidad de intentos fallidos y lo guardamos en la variable &quot;contador&quot;.&lt;/li&gt;
&lt;li&gt;Para la variable &quot;dia&quot; utilizamos el comando &quot;awk&quot; de nuevo pero obteniendo la columna 5 que tiene justamente el número del día en que sucedio el intento de acceso del archivo &quot;&lt;span class=&quot;pl-s&quot;&gt;loginfailshackende.txt&lt;/span&gt;&quot; con el comando &quot;&lt;span class=&quot;pl-s&quot;&gt;head -n 1&lt;span class=&quot;pl-pds&quot;&gt;&lt;/span&gt;&lt;/span&gt;&quot; hacemos que solo lo haga para la primer línea porque sino guardaria la columna entera y seria ineficiente tener cosas de más.&lt;/li&gt;
&lt;li&gt;En la variable &quot;hora&quot; justamente guardamos la hora.&lt;/li&gt;
&lt;li&gt;En la variable &quot;diahoy&quot; guardamos el número del día de hoy.&lt;/li&gt;
&lt;li&gt;Ahora llega el momento de explicar &quot;&lt;span class=&quot;pl-k&quot;&gt;if&lt;/span&gt; [ &lt;span class=&quot;pl-smi&quot;&gt;$contador&lt;/span&gt; &lt;span class=&quot;pl-k&quot;&gt;-ge&lt;/span&gt; 3 ] &lt;span class=&quot;pl-k&quot;&gt;&amp;amp;&amp;amp;&lt;/span&gt; [ &lt;span class=&quot;pl-smi&quot;&gt;$dia&lt;/span&gt; &lt;span class=&quot;pl-k&quot;&gt;-eq&lt;/span&gt; &lt;span class=&quot;pl-smi&quot;&gt;$diahoy&lt;/span&gt; ]&lt;span class=&quot;pl-k&quot;&gt;;&lt;/span&gt; &lt;span class=&quot;pl-k&quot;&gt;then&lt;/span&gt;&quot; bueno es solo un condicional que realizara alguna acción si se cumplen uno o varios factores determinantes que permitan tomar el control para alguna acción en particular, para nuestro caso es muy simple, decimos &quot;si [lo que tiene la variable &quot;contador&quot; es mayor igual a 3] y [la variable &quot;dia&quot; es igual a la variable &quot;diahoy&quot;]&quot; hacemos...., osea simplemente controlamos 2 factores, primero que la variable contador sea mayor a 3 porque en ese caso posiblemente alguien este intentando demasiadas veces entrar y debemos actuar al respecto; y el segundo punto que solo se realice para la fecha de hoy.&lt;/li&gt;
&lt;li&gt;Acá mandamos directamente el email porque se supone que se cumplieron los 2 factores en la linea de control IF, bueno yo utilice mutt para mandar el email, para instalar simplemente hacemos:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 30px; width: 633px;&quot;&gt;dnf install mutt -y&lt;/textarea&gt;Luego lo configuramos modificando el archivo &quot;nano /root/.muttrc&quot;:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 30px; width: 633px;&quot;&gt;nano /root/.muttrc&lt;/textarea&gt;Debemos de cargar los datos para configurar correctamente a mutt para eso hacemos:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 180px; width: 633px;&quot;&gt;set from = &quot;sergiosysforence@gmail.com&quot;
set realname = &quot;Notificación del servidor&quot;
set imap_user = &quot;tuemail@gmail.com&quot;
set imap_pass = &quot;tupasswordentrecomillas&quot;
set folder = &quot;imaps://imap.gmail.com:993&quot;
set spoolfile = &quot;+INBOX&quot;
set postponed =&quot;+[Gmail]/Drafts&quot;
set header_cache =~/.mutt/cache/headers
set message_cachedir =~/.mutt/cache/bodies
set certificate_file =~/.mutt/certificates
set smtp_url = &quot;smtp://tuemail@smtp.gmail.com:587/&quot;
set smtp_pass = &quot;tupasswordentrecomillas&quot;&lt;/textarea&gt;Esto es solo pegar lo anterior y acomodarlo a su gusto, obviamente cuando lo utilicen se darán cuenta para que se utiliza cada cosa pero obviamente yo solo lo probé en gmail (en hotmail hay que investigar un poco pero bueno como yo ya tenia ese correo lo deje...) una ves echo eso ya estamos listo para mandar email desde la consola, en nuestro script lo realizamos con un &quot;echo&quot; que indica el texto que aparecera en nuestro email como texto simple en nuestro caso la advertencia¡¡¡ luego con una tuberia llamamos a mutt con &quot;-s&quot; para indicar el encabezado del email a enviar.&lt;/li&gt;
&lt;li&gt;Todo lo demas dentro de ese bucle ya lo conocemos de la &lt;a href=&quot;http://hackendemoniado.blogspot.com.ar/2015/11/script-para-automatizar-tareas-parte-1.html&quot; target=&quot;_blank&quot;&gt;parte 1.&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;li&gt;Luego el siguiente paso es mandar el script a que se ejecute con cron:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 30px; width: 633px;&quot;&gt;vim /etc/crontab&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Y solo agregamos la ruta del script al igual como lo hicimos en la parte 1: &quot;3 * * * * root /home/hackendemoniado/Documentos/scripts/login_hackendefail.sh&quot; yo lo configuro para que se ejecute cada 3 minutos para probarlo pero en realidad hay que dejarlo cada una hora eso seria cada 59 minutos o ponerlo dentro de la carpeta que se ejecuta cada hora (al script copiarlo dentro obvio) o como ustedes quieran.&lt;/li&gt;
&lt;li&gt;Para root es exactamente lo mismo solo que buscamos todo para root:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 45px; width: 633px;&quot;&gt;touch login_hackendefail.sh
chmod a+x login_hackendefail.sh
vim login_hackendefail.sh
&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Bien pasemos de lleno al script voy a explicar línea por línea:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 280px; width: 633px;&quot;&gt;#/bin/bash
unahoramenos=`date +%R --date=&#39;-1 hours&#39;`
horaactual=`date +%R`
lastb -s $unahoramenos -t $horaactual | grep root &gt; /tmp/loginfailsroot.txt
cantfail=`wc -l /tmp/loginfailsroot.txt &gt; /tmp/cantfailroot.txt`
contador=`awk &#39;{print $1}&#39; /tmp/cantfailroot.txt`
dia=`awk &#39;{print $5}&#39; /tmp/loginfailsroot.txt | head -n 1`
hora=`date +&quot;%R&quot;`
diahoy=`date +&quot;%d&quot;`
if [ $contador -ge 3 ] &amp;&amp; [ $dia -eq $diahoy ]; then
 echo &quot;Alguien esta intentando entrar demaciadas veces como root&quot; | mutt -s &quot;Intento de acceso a root&quot; sergiosysforence@hotmail.com.ar
 fechahoy=$(date +&quot;%d-%m-%Y-%H-%M&quot;)
 tar -zcvf backupsloginroot.$fechahoy.tar.gz /tmp/loginfailsroot.txt
 cp backupsloginroot.$fechahoy.tar.gz /media/veracrypt1/backupsscripts/backups_loginroot
 rm -rf backupsloginroot.$fechahoy.tar.gz
 rm -rf /tmp/loginfailsroot.txt
 rm -rf /tmp/cantfail*
fi
&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;como ven es casi lo mismo pero adaptado al ususario root, luego lo agregamos a cron como hicimos para nuestro usuario anterior y listo&lt;/li&gt;
&lt;li&gt;Imagenes:&lt;/li&gt;
&lt;/ol&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFjxOE9lXCS2GyVNt94ATGBy-NT-VxkW2VRioJlaNK6xiQRfpVNkpjSd13CYFHUmuM_Puv1q5moc_wtlknDoXesXHXeWpEg4lZgv7z1h1z6n0SVOlV9UaJ0484T6Q9nzBSTuAk2wK2-yw/s1600/script2-1.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;179&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFjxOE9lXCS2GyVNt94ATGBy-NT-VxkW2VRioJlaNK6xiQRfpVNkpjSd13CYFHUmuM_Puv1q5moc_wtlknDoXesXHXeWpEg4lZgv7z1h1z6n0SVOlV9UaJ0484T6Q9nzBSTuAk2wK2-yw/s320/script2-1.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgRQxDv6N0ERYNajS-akjLCYSCnOr-pTw4WmVfMDOaQh6E13YEQSl_q509vezmlpJ9iE1J5ydpv0Cb39I-aHRNh9wsbxTVdPDEThbVfxr3iDfxrzmFIXXSx-DHX6qwB9nRw2OHnsHaTD50/s1600/script2-2.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;179&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgRQxDv6N0ERYNajS-akjLCYSCnOr-pTw4WmVfMDOaQh6E13YEQSl_q509vezmlpJ9iE1J5ydpv0Cb39I-aHRNh9wsbxTVdPDEThbVfxr3iDfxrzmFIXXSx-DHX6qwB9nRw2OHnsHaTD50/s320/script2-2.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Como ven efectivamente llego el email luego de probar a traves de laterminal el acceso como root y poner 3 veces la clave mal, obvio funciona tanto para root como para nuestro usuario, es algo que me parecio curioso de hacerlo y de paso compartirlo, espero que les sea útil a ustedes y cualquier cosa me consultan porque se pueden precentar una variadad de errores que lógicamente están todos controlados con el script y con la configuración de mutt (igual como digo siempre todo puede fallar¡¡¡¡ jeje) asique ya saben consulten sus dudas y ya estare publicando la parte 3.....&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;/ol&gt;
&lt;ol&gt;

&lt;/ol&gt;
</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/2522078080615054355/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2015/12/script-para-automatizar-tareas-parte-2.html#comment-form' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/2522078080615054355'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/2522078080615054355'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2015/12/script-para-automatizar-tareas-parte-2.html' title='script para automatizar tareas (PARTE 2) - Controlar logins fallidos y mandar alerta por email'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFjxOE9lXCS2GyVNt94ATGBy-NT-VxkW2VRioJlaNK6xiQRfpVNkpjSd13CYFHUmuM_Puv1q5moc_wtlknDoXesXHXeWpEg4lZgv7z1h1z6n0SVOlV9UaJ0484T6Q9nzBSTuAk2wK2-yw/s72-c/script2-1.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-5453617506370786017</id><published>2015-11-28T17:58:00.000-08:00</published><updated>2015-12-26T06:13:12.970-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="cron"/><category scheme="http://www.blogger.com/atom/ns#" term="script"/><category scheme="http://www.blogger.com/atom/ns#" term="sysadmin"/><title type='text'>script para automatizar tareas (PARTE 1) - actualizar el sistema y guardar el history</title><content type='html'>Hola amigos como están, hoy vengo con este rollo de automatizar tareas que obvio es súper útil, para esta entretenida tarea vamos a ocupar cualquier editor de texto de su preferencia, y también vamos a ocupar cron que se utiliza para programar tareas en linux, obviamente vienen también software diseñado justamente para esta tarea pero para mi y por experiencia laboral siempre es mejor saber manipular cron porque raras veces tendrán en sus manos algún server con GUI, pero bueno esa es mi opinión personal, todo lo hice como root asique si ustedes no solo agregue sudo,pasemos directamente a mancharnos los dedos.&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;El primer paso es crear una carpeta que contenga todos nuestros scripts asique la creamos donde queramos y le damos un nombre descriptivo: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 30px; width: 633px;&quot;&gt;mkdir Documentos/scripts 
&lt;/textarea&gt;
&lt;/li&gt;
&lt;li&gt;Ahora tenemos que crear nuestro primer script para eso hacemos:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 30px; width: 633px;&quot;&gt;touch actualizar.sh&lt;/textarea&gt;
&lt;/li&gt;
&lt;li&gt;Luego debemos convertir dicho archivo a ejecutable:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 30px; width: 633px;&quot;&gt;chmod a+x actualizar.sh&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Llego el momento de empezar a modificar dicho archivo, yo voy a ocupar vim para editarlo:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 30px; width: 633px;&quot;&gt;vim actualizar.sh&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Primero debemos de saber que tiene que tener una estructura particular para poder funcionar y para esto indicamos 2 cosas una seria decirle que es un bash lo que estamos escribiendo y el tipo de codificación, aunque este último no llega a ser estricto pueden presentarse situaciones en las cuales se necesite este parámetro por ende siempre acostumbro a ponerlo:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 30px; width: 633px;&quot;&gt;#!/bin/bash
# -*- ENCODING: UTF-8 -*-&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Pasamos a escribir el script:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 90px; width: 633px;&quot;&gt;sudo dnf update -y &gt; /tmp/update.txt
fechahoy=$(date +&quot;%d-%m-%Y&quot;)
tar -zcvf backupsupdate.$fechahoy.tar.gz /tmp/update.txt
cp backupsupdate.$fechahoy.tar.gz /backupsscripts/backups_comandoupdate
rm -rf backupsupdate.$fechahoy.tar.gz
rm -rf /tmp/update.txt&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;A no desesperarse porque es muy sencillo, la primer línea hace el update como si lo tipiaramos nosotros y con el signo &quot;&amp;gt;&quot; le indico que guarde la salida de la pantalla en un archivo llamado update.txt situado en el directorio tmp, la segunda línea estamos declarando una pequeña variable que en nuestro caso nos permite guardar en &quot;fechahoy&quot; la fecha de hoy en formate dia-mes-año osea si ustedes ponen en la terminal date +&quot;%d-%m-%Y&quot; se darán cuenta a que me refiero y el símbolo $ es parecido al uso que tiene en php osea nos ayuda a guardar todo ese string en la variable, en la tercera línea creo un archivo comprimido llamado backupsupdate.$fechahoy.tar.gz que con esa línea y la explicación de la línea 2 ya sea darán cuanta para que hacemos ese paso y obviamente le indicamos que archivo queremos comprimir osea le indicamos la ruta de update.txt, la cuarta línea simplemente copiamos el tar recién echo en una carpeta ya definida por mi para guardar de manera ordenada los backups (obviamente esas carpetas las tienen que crear primero jaja), la quinta borramos el tar osea borramos el que creamos en la tercer línea, en la sexta línea borramos el txt.&lt;/li&gt;
&lt;/ol&gt;
Ahora después de tener este script ya echo y entendido toca modificar cron para automatizar esta tarea, para esto editamos el siguiente archivo: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 30px; width: 633px;&quot;&gt;vim /etc/crontab&lt;/textarea&gt;

Nos aparece algo como esto:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 230px; width: 633px;&quot;&gt;SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root

# For details see man 4 crontabs

# Example of job definition:
# .---------------- minute (0 - 59)
# |  .------------- hour (0 - 23)
# |  |  .---------- day of month (1 - 31)
# |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
# |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# |  |  |  |  |
# *  *  *  *  * user-name  command to be executed
19 15 * * * root /home/hackendemoniado/Documentos/scripts/actualiza.sh&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Les paso a explicar pero igual con solo leer ya se deben de imaginar como funciona crontab o cron, la clave de esto son los 5 primeros parámetros que a medida que sigamos dando ejemplos veremos variantes pero la base es que se debe de indicar primero los minutos, luego la hora, luego día del mes, numero del mes, y día de la semana segudi del usuario que ejecutara el comando o el script y segudo de dicho comando o directorio del scripts, para nuestro ejemplo:&lt;br /&gt;
&quot;19 15 * * * root /home/hackendemoniado/Documentos/scripts/actualiza.sh&quot;&lt;br /&gt;
creo que es bastante descriptivo lo único que falta aclarar es que los asteriscos &quot;*&quot; representan todos los valores osea algo que se repite siempre para todos los valores, yo lo diseñe para que se ejecute siempre a las 15 horas con 19 minutos, la parte comentada puede variar dependiendo la distribución (yo use fedora 23), ya con esto lo único que resta es guardar los cambio y revisar la carpeta donde dijimos que estará el backups, yo al poner el comando ls veo los siguiente:&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 30px; width: 633px;&quot;&gt;-rwx------. 1 hackendemoniado bumblebee 245 nov 28 15:19 backupsupdate.28-11-2015.tar.gz&lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Donde pueden ver que se creo a la hora que yo le especifique y con el formato con el dia mes y año como está programado en el script.&lt;br /&gt;
&lt;br /&gt;
Luego pasamos a realizar algo parecido pero para resguardar todos nuestros comandos que vamos ocupando tanto para root como para algún usuario que nosotros queramos controlar:&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;vamos a crear en total&amp;nbsp; 3 scirpt asique como ya saben como hacer tiro directamente los comandos:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 100px; width: 633px;&quot;&gt;touch guardahistory_hackendemoniado.sh
touch guardahistory_root.sh
touch backups_history.sh
chmod a+x guardahistory_hackendemoniado.sh
chmod a+x guardahistory_root.sh
chmod a+x backups_history.sh
&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Luego pasamos a modificar los archivos primero debemos saber que maejar el comando history con un script es diferente a lo anterior por ende no necesitamos las primeras 2 líneas para que ejecute bien, bueno realizamos el script para &quot;guardahistory_hackendemoniado.sh&quot;:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 20px; width: 633px;&quot;&gt;history &gt; /tmp/history_hackendemoniado.txt&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Hacemos lo mismo con el archivo &quot;guardahistory_root.sh&quot;:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 20px; width: 633px;&quot;&gt;history &gt; /tmp/history_root.txt&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Por último modificamos el script llamado &quot;backups_history.sh&quot;:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 110px; width: 633px;&quot;&gt;#!/bin/bash
# -*- ENCODING: UTF-8 -*-
fechahoy=$(date +&quot;%d-%m-%Y&quot;)
tar -zcvf backupshistory.$fechahoy.tar.gz /tmp/history_*
cp backupshistory.$fechahoy.tar.gz /backupsscripts/backups_history
rm -rf backupshistory.$fechahoy.tar.gz
rm -rf /tmp/history_*&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Es bastante parecido al script que hicimos primero, la única diferencia es que borramos cualquier archivo que empiece con history_ dentro de la carpeta tmp, osea &quot;/tmp/history_*&quot; hace justamente eso, ahora lo agregamos a cron:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 90px; width: 633px;&quot;&gt;vim /etc/crontab
10 14 * * * hackendemoniado /home/hackendemoniado/Documentos/scripts/guardahistory_hackendemoniado.sh
11 14 * * * root /home/hackendemoniado/Documentos/scripts/guardahistory_root.sh
13 15 * * * root /home/hackendemoniado/Documentos/scripts/backups_history.sh
&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Como se darán cuenta el history de mi usuario lo represento como que lo ejecuto como mi nombre de usuario osea hackendemoniado y el de root con root, y los configuro a los 3 con esos horarios de ejecución para todos los días del año logicamente debemos de ejecutar en ese orden para que no falle asique cuidado con eso, ahora vemos con el comando ls -al como quedan los backups:
&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 30px; width: 633px;&quot;&gt;-rwx------. 1 hackendemoniado bumblebee 196 nov 28 15:13 backupshistory.28-11-2015.tar.gz&lt;/textarea&gt;&lt;/li&gt;
&lt;/ol&gt;
Bueno con esto quise empezar y hacer un buen hola mundo algo diferente y con cosas útiles para que todos les puedan dar uso, de igual manera ya voy a seguir haciendo script de este estilo con cosas distintas, se podrán imaginar la infinidad de cosas que se pueden hacer, por ejemplo instalar algún servidor y tener scripts preparados para instalar todo de una sin tener que tipiar todo, o configurar infinidad de servicios, backups redundantes, etc. es realmente infinitas las posibilidades solo es cuestión de organizarse y enfocarse en hacerlo bien para que ejecute el script y luego ya poder usarlo cuantas veces queramos, realmente es algo muy útil que todo el mundo que se dedica a trabajar como sysadmin o incluso programadores lo utilizan porque simplifica las tareas, aparte cuando uno se dedica a esto siempre busca ahorrar tiempo y con esto se logra efectivamente solo es cuestión de leer un poco y adaptarlo a nuestras circunstancias, espero que les sea de su agrado y cualquier cosa tengo todos mis script hechos de este post en: &lt;a href=&quot;https://github.com/hackendemoniado/scripts&quot; target=&quot;_blank&quot;&gt;https://github.com/hackendemoniado/scripts&amp;nbsp;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
bueno amigos cualquier cosa consulten y pronto estare subiendo más post.... </content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/5453617506370786017/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2015/11/script-para-automatizar-tareas-parte-1.html#comment-form' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/5453617506370786017'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/5453617506370786017'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2015/11/script-para-automatizar-tareas-parte-1.html' title='script para automatizar tareas (PARTE 1) - actualizar el sistema y guardar el history'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-3483861420724358467</id><published>2015-06-09T07:39:00.000-07:00</published><updated>2015-06-09T12:29:22.292-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Fedora Server 22"/><category scheme="http://www.blogger.com/atom/ns#" term="SAMBA"/><category scheme="http://www.blogger.com/atom/ns#" term="ssh"/><title type='text'>Como instalar y configurar fedora server (PARTE 3) Servidor de Archivos SAMBA</title><content type='html'>Hola primero que nada les muestro las partes que llevo echas hasta este momento por si quieren leer....&lt;br /&gt;
&lt;a href=&quot;http://hackendemoniado.blogspot.com/2015/06/como-instalar-fedora-server-22-parte-1.html&quot; target=&quot;_blank&quot;&gt;Como instalar fedora server 22 (PARTE 1)&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://hackendemoniado.blogspot.com/2015/06/como-instalar-y-configurar-fedora.html&quot; target=&quot;_blank&quot;&gt;Como instalar y configurar fedora server 22 (PARTE 2) Web server- LAMP&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://hackendemoniado.blogspot.com/2015/06/como-instalar-y-configurar-fedora_9.html&quot; target=&quot;_blank&quot;&gt;Como instalar y configurar fedora server (PARTE 3) Servidor de Archivos SAMBA&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Vamos directamente a empezar, como siempre explicando un poco antes lo que aremos, como el título lo indica vamos a instalar SAMBA que es ni más ni menos un aplicativo libre para compartir archivos o recursos desde un equipo GNU/Linux, para poder acceder dentro de una red sin importar que sean equipos con windows o linux, y como es libre tiene un sin fin de configuraciones que podemos aplicar, todo esto posible al protocolo SMB que es el encargado de permitir poder compartir recursos con equipos windows o linux, acá es bidireccional pues desde el linux (en mi caso fedora server) podremos acceder al recurso compartidos por todos los windows y desde los windows accederemos a los recursos del linux (fedora server).&lt;br /&gt;
&lt;br /&gt;
Luego de explicar un poco que es SAMBA pasemos a la instalación:&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Nos conectamos por ssh a nuestro servidor fedora 22: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;ssh root@192.168.100.4&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Instalamos simplemente así: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;dnf -y install samba&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Luego de la instalación pasaremos a configurar lo que queremos compartir con los respectivos permisos opciones más usadas, empezaremos con el más sencillo que es el acceso Anónimo esto significa que cualquiera podrá acceder al recurso y no pedirá ningún tipo de autenticación:&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;Editamos el archivo que se encuentra en /etc/samba/smb.conf así: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;nano /etc/samba/smb.conf&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Nos vamos a la linea 89 (en nano apretando CTRL+SHIFT+tecla guión nos permite ingresar la linea a la que queremos ir), y lo configuramos de la siguiente manera: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 90px; width: 633px;&quot;&gt;workgroup = WORKGROUP
        server string = Mi servidor samba %v
        map to guest = bad user
        netbios name = hackendemoniado
&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Nos vamos al final del archivo y aparece lo siguiente: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 120px; width: 633px;&quot;&gt;;       [public]
;       comment = Public Stuff
;       path = /home/samba
;       public = yes
;       writable = yes
;       printable = no
;       write list = +staff

&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Lo modificamos de la siguiente manera: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 140px; width: 633px;&quot;&gt;        [anonimo]
        comment = anonimo
        path = /home/samba/anonimo
        browsable =yes
        writable = yes
        guest ok = yes
        read only = no
        create mode = 0777
        directory mode = 0777

&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;comment se usa para escribir algún tipo de comentario, path es el directorio que compartiremos, browseable significa que va a permitir mostrar el recurso en la lista de recursos compartidos, writable es si se permitirá escribir dentro del recurso, guest ok es para permitir el acceso como usuario invitado, read only es si sera de solo lectura, create mode define los permisos que tendrán los nuevos archivos que se creen dentro del recurso y directory mode lo mismo que el anterior pero aplicado a las carpetas. &lt;/li&gt;
&lt;li&gt;El paso siguiente es crear dicha carpeta y darle los permisos para que todos puedan acceder: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 50px; width: 633px;&quot;&gt;mkdir -p /home/samba/anonimo
chmod -R 0755 /home/samba/anonimo/
chown -R nobody:nobody /home/samba/anonimo/&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Listo pasamos a habilitar el servicio samba y para que se active solo al iniciarse el server fedora 22: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 70px; width: 633px;&quot;&gt;systemctl enable smb.service
systemctl enable nmb.service
systemctl start smb.service
systemctl start nmb.service&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Debemos de configurar el puerto para que el firewall del server nos permita el acceso: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 50px; width: 633px;&quot;&gt;firewall-cmd --permanent --add-service=samba
firewall-cmd --reload&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Probando desde un host con fedora 21:&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEino6RzrUgEXfHg3yfda8D-56tp3NzzYTPfdBfaWAKRF9MH-aq_oN1Ko1X_d1_Ynw9rg0WIMYT0d7SPwVb2JLOf65FYno_a3rBqeWdZKGE0i01uWn8iYhoNBcm46BQ7f9fv1a6pPheU96g/s1600/servidorsamba2.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEino6RzrUgEXfHg3yfda8D-56tp3NzzYTPfdBfaWAKRF9MH-aq_oN1Ko1X_d1_Ynw9rg0WIMYT0d7SPwVb2JLOf65FYno_a3rBqeWdZKGE0i01uWn8iYhoNBcm46BQ7f9fv1a6pPheU96g/s320/servidorsamba2.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjmf18ICEdUavCU3iXN4KluQu1cmINVCQzZuUxxb2fQqDiVUDb_SKwIwo5B8dF37r-vcpAK6AJ6UPXBqRhKkS9JIbM1_FHZGcwtoZlqc6LPal5EfzepNap7ESiZ2xgNnXuNnESy_p5ZiTI/s1600/servidorsamba1.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjmf18ICEdUavCU3iXN4KluQu1cmINVCQzZuUxxb2fQqDiVUDb_SKwIwo5B8dF37r-vcpAK6AJ6UPXBqRhKkS9JIbM1_FHZGcwtoZlqc6LPal5EfzepNap7ESiZ2xgNnXuNnESy_p5ZiTI/s320/servidorsamba1.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi0etXFUdWxYQIt_a0-qV2IjkjVb9zYi4mEDTtLTBIJj_Nlq76nNA6Bm7fawFnTcw49Hc-ToJ_sy9_jM_MJ8Fe4lV0U3xI9hadMYNsW_rPumzTQW-I3uyZk4PUfvGZvHt54ZIZ6493HT9U/s1600/servidorsamba3.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi0etXFUdWxYQIt_a0-qV2IjkjVb9zYi4mEDTtLTBIJj_Nlq76nNA6Bm7fawFnTcw49Hc-ToJ_sy9_jM_MJ8Fe4lV0U3xI9hadMYNsW_rPumzTQW-I3uyZk4PUfvGZvHt54ZIZ6493HT9U/s320/servidorsamba3.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;li&gt;Probando desde un windows 8.1:&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi6wskytAm1wgpl8_oOQGFOoR1wCgNp33XQHF02lX1ZHEDXLj_VLCgDsv2O7EvSqLUPU3pvHceKXSqIgn8m2Z5OLzZo92Ok40rQRFmkyO3bknjeg_5YnQg7sMIKCz3lIYEfV2W1YZatsfw/s1600/servidorsamba6.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi6wskytAm1wgpl8_oOQGFOoR1wCgNp33XQHF02lX1ZHEDXLj_VLCgDsv2O7EvSqLUPU3pvHceKXSqIgn8m2Z5OLzZo92Ok40rQRFmkyO3bknjeg_5YnQg7sMIKCz3lIYEfV2W1YZatsfw/s320/servidorsamba6.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjjFpDqNWmyeyUFICgT7L0Imc1s_eN6beh9uElOO0AVGn6ln3yMiGHWr6yeNRKOyeHsFTR0hStNhNb9tCSohqEiVTmurva16nJ4POCpN_ERD-pPClvdYrPRfPqW9jfeotkqrboOGIbz4BM/s1600/servidorsamba4.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjjFpDqNWmyeyUFICgT7L0Imc1s_eN6beh9uElOO0AVGn6ln3yMiGHWr6yeNRKOyeHsFTR0hStNhNb9tCSohqEiVTmurva16nJ4POCpN_ERD-pPClvdYrPRfPqW9jfeotkqrboOGIbz4BM/s320/servidorsamba4.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgl-ss7jlFjfCLpv5e-orI2-7MghzfeWM5CBBPQwF9ORIFl4gPzfaSa_eSA-EmrFmFc16WNkc8KLpIKUqxdo1JhyphenhyphenQscAbbbu25bZx9qhiZJ6-bkOW5BzxZ0QpcXA5EDvf2KSWBNBjIXbW0/s1600/servidorsamba5.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgl-ss7jlFjfCLpv5e-orI2-7MghzfeWM5CBBPQwF9ORIFl4gPzfaSa_eSA-EmrFmFc16WNkc8KLpIKUqxdo1JhyphenhyphenQscAbbbu25bZx9qhiZJ6-bkOW5BzxZ0QpcXA5EDvf2KSWBNBjIXbW0/s320/servidorsamba5.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;li&gt;Ahora explicare como compartir recursos pero permitiendo autentificarse, empecemos:&lt;/li&gt;
&lt;/ol&gt;
&lt;ul&gt;&lt;ul&gt;
&lt;li&gt;Editamos de nuevo el archivo /etc/samba/smb.conf así: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;nano /etc/samba/smb.conf&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Buscamos casi al final lo siguiente: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 110px; width: 633px;&quot;&gt;[homes]
        comment = Home Directories
        browseable = no
        writable = yes
;       valid users = %S
;       valid users = MYDOMAIN\%S
&lt;/textarea&gt;
&lt;/li&gt;
&lt;li&gt;Lo modificamos así: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 120px; width: 633px;&quot;&gt;[seguridad]
        comment = directorio securizado
        path = /home/samba/seguridad
        valid users = @gruposeguridad
        guest ok = no
        writable = yes
        browseable = yes
&lt;/textarea&gt;
&lt;/li&gt;
&lt;li&gt;Creamos la carpeta seguridad: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;mkdir -p /home/samba/seguridad&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Creamos el grupo: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;groupadd gruposeguridad&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Creamos el usuario llamado &quot;sergio&quot; y lo agregamos al grupo previamente ya creado: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;useradd sergio -G gruposeguridad&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Ahora le asignamos una contraseña a este usuario en las bases de datos de samba, esto se repite para cada usuario que deseamos agregar: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 51px; width: 633px;&quot;&gt;smbpasswd -a sergio
New SMB password:
Retype new SMB password:
Added user sergio.
&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Cambiamos los permisos de la carpeta seguridad: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;chmod -R 0777 /home/samba/seguridad/&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Cambiamos el propietario de la carpeta seguridad: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;chown -R sergio:gruposeguridad /home/samba/seguridad/&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Reiniciamos samba: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 41px; width: 633px;&quot;&gt;systemctl restart smb.service
systemctl restart nmb.service&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Listo ahora pasamos a un equipo con windows y verán lo siguiente:&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhhsHL-UGdTNmmVOl6rO7vMrMeH_hNnuyeqXqsHKeq7JTx9Kw0vEW0Jq7Xjlj3G5XofjqurDZkKg_Y5bZbVxdj2M4WqwC4VfBuxVQcH0HVnG7gkIfj8YEEZRrtXw1LL_wXeg6hwL8j8AE8/s1600/servidorsamba10.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhhsHL-UGdTNmmVOl6rO7vMrMeH_hNnuyeqXqsHKeq7JTx9Kw0vEW0Jq7Xjlj3G5XofjqurDZkKg_Y5bZbVxdj2M4WqwC4VfBuxVQcH0HVnG7gkIfj8YEEZRrtXw1LL_wXeg6hwL8j8AE8/s320/servidorsamba10.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjPHAIPbgOzP1iIWnm_zbbwKXJpwH5Szh6ai0BV5g4ZSjs7bDWLfWyzjzcrw5hiq3aLwL-2FExAweHyFCLLb_QlrZK8IrdDETXiPT3WzyWNYSAtjk9vXzDtZkR2iafPYBKk2phgumpQorQ/s1600/servidorsamba9.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjPHAIPbgOzP1iIWnm_zbbwKXJpwH5Szh6ai0BV5g4ZSjs7bDWLfWyzjzcrw5hiq3aLwL-2FExAweHyFCLLb_QlrZK8IrdDETXiPT3WzyWNYSAtjk9vXzDtZkR2iafPYBKk2phgumpQorQ/s320/servidorsamba9.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;li&gt;Desde un fedora 21 seria:&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjONgvg7WPCNQUtzR5O9QZI3ZO7v8OiaVXLt4Ijv6e0NLVMHlDzol73TjS8_99AEU1_M33VEbzaaMYAcSpn3nLVoCRtwyAhAHvOi57wVChXgExtGiHgmIUXVdWl7EZI_IYKwU_IcS1XWWY/s1600/servidorsamba7.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjONgvg7WPCNQUtzR5O9QZI3ZO7v8OiaVXLt4Ijv6e0NLVMHlDzol73TjS8_99AEU1_M33VEbzaaMYAcSpn3nLVoCRtwyAhAHvOi57wVChXgExtGiHgmIUXVdWl7EZI_IYKwU_IcS1XWWY/s320/servidorsamba7.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgrG1q2aDZTnVtjaOahcK0aEV_sLsymwwt1v44AeZ1AOQ_x8rz3zJV6YVzFvMF5xvA4fwn15Tos50yVnB3E0gGvAEu0A8-KCKSk-KC8RQvF1SJ1gYwxob7P95zEVcTs8vOR9WUQwL8pEVI/s1600/servidorsamba8.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgrG1q2aDZTnVtjaOahcK0aEV_sLsymwwt1v44AeZ1AOQ_x8rz3zJV6YVzFvMF5xvA4fwn15Tos50yVnB3E0gGvAEu0A8-KCKSk-KC8RQvF1SJ1gYwxob7P95zEVcTs8vOR9WUQwL8pEVI/s320/servidorsamba8.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/ul&gt;
&lt;/ul&gt;
Como ven ya podemos acceder en nuestra red y pidiendo usuario y clave, igual quiero aclarar que a esto se le pueden agregar un montón de configuraciones aunque es un poco duro estar modificando el archivo smb.conf porque un solo caracter mal escrito dará error, o que nos equivoquemos al escribir el patho un montón de situcaiones que se pueden presentar, la mejor opción es borrarle todo el contenido y dejarlo limpio de modo de tener solo lo que nosotros queramos compartir y evitar un montón de inconvenientes, aunque también hay formas de hacerlo desde un navegador que hace la tarea mucho más fácil como swat o algo más abarcativo como webmin que se utiliza no solo para samba sino para configurarle cualquier cosa que deseáramos tener en nuestro server y todo desde un navegador.... pero es importante primero saber como hacerlo a mano porque pueden existir errores y si no tenemos ni idea de como se configura algo como en este caso samba pues es obvio que no sabremos como solucionar el error....&lt;br /&gt;
&lt;br /&gt;
Bueno espero haber sido claro y cualquier cosa consultan....</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/3483861420724358467/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2015/06/como-instalar-y-configurar-fedora_9.html#comment-form' title='4 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/3483861420724358467'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/3483861420724358467'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2015/06/como-instalar-y-configurar-fedora_9.html' title='Como instalar y configurar fedora server (PARTE 3) Servidor de Archivos SAMBA'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEino6RzrUgEXfHg3yfda8D-56tp3NzzYTPfdBfaWAKRF9MH-aq_oN1Ko1X_d1_Ynw9rg0WIMYT0d7SPwVb2JLOf65FYno_a3rBqeWdZKGE0i01uWn8iYhoNBcm46BQ7f9fv1a6pPheU96g/s72-c/servidorsamba2.png" height="72" width="72"/><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-3640951211237295151</id><published>2015-06-07T11:12:00.002-07:00</published><updated>2015-06-09T07:41:26.209-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Apache"/><category scheme="http://www.blogger.com/atom/ns#" term="Fedora Server 22"/><category scheme="http://www.blogger.com/atom/ns#" term="IP estática"/><category scheme="http://www.blogger.com/atom/ns#" term="LAMP"/><category scheme="http://www.blogger.com/atom/ns#" term="Mariadb"/><category scheme="http://www.blogger.com/atom/ns#" term="Phpmyadmin"/><category scheme="http://www.blogger.com/atom/ns#" term="Web Server"/><title type='text'>Como instalar y configurar fedora server 22 (PARTE 2) Web server- LAMP</title><content type='html'>&lt;br /&gt;
Bueno amigos seguimos con las configuraciones en nuestro fedora server 22, acá tiene las partes hasta el momento:&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://hackendemoniado.blogspot.com/2015/06/como-instalar-fedora-server-22-parte-1.html&quot; target=&quot;_blank&quot;&gt;Como instalar fedora server 22 (PARTE 1)&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://hackendemoniado.blogspot.com/2015/06/como-instalar-y-configurar-fedora.html&quot; target=&quot;_blank&quot;&gt;Como instalar y configurar fedora server 22 (PARTE 2) Web server- LAMP&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://hackendemoniado.blogspot.com/2015/06/como-instalar-y-configurar-fedora_9.html&quot; target=&quot;_blank&quot;&gt;Como instalar y configurar fedora server (PARTE 3) Servidor de Archivos SAMBA&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Ahora vamos a configurar a nuestro fedora como Web server, y será paso a paso como siempre....&lt;br /&gt;
&lt;br /&gt;
Empecemos:&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Primero nos logeamos en nuestra distro.... obvio&lt;/li&gt;
&lt;li&gt;Lo primero que tenemos que tener en cuenta es nuestra ip, y configurarala como estática porque no queremos que siempre cambie esta ip porque sino para trabajar en remoto o desde otra pc de nuestra red es trabajoso estar mirando siempre la ip, entonces lo que hacemos es:&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;Mirar nuestra ip actual:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;ip add&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Nos mostrara algo parecido a esta imagen: &lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqWo3bFLrG2L8_kNVFEqp60KhYcxk8T8BuJzjMap2uSZXzvp15Uf3p135eAS_dYRAeE96VBuNw22Ranrax7i3yQDpSCnAUhT2EwO0H1v8WmfIjUiEfwSRooOunQgrr1BvvwmnV8yEN6Q0/s1600/servidorweb1.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;177&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqWo3bFLrG2L8_kNVFEqp60KhYcxk8T8BuJzjMap2uSZXzvp15Uf3p135eAS_dYRAeE96VBuNw22Ranrax7i3yQDpSCnAUhT2EwO0H1v8WmfIjUiEfwSRooOunQgrr1BvvwmnV8yEN6Q0/s320/servidorweb1.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;li&gt;Donde dice enp0s3 es nuestra nic o tarjeta de red, y donde dice 192.168.100.4/24 es nuestra ip osea esta:192.168.100.4, si esta ip no tiene conflicto con ninguna otra pc de nuestra red la podríamos dejar como estática, para hacer eso hacemos lo siguiente:&lt;/li&gt;
&lt;li&gt;Instalan el editor nano, el navegador links que es para usarlo en la terminal, y netstat con: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;dnf install -y nano lirks net-tools&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Debemos de modificar el archivo de configuración de nuestra nic o tarjeta de red para eso tiramos el comando: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;nano /etc/sysconfig/network-scripts/ifcfg-enp0s3&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Nos mostrara algo parecido a esto:&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgH8JWM9LgdPyBqznuDQ4spnLALnHoowmS-OiOC0XkG3MsgQ3OWXUagFETaURiaQqCSW74WYyrthoCj-mWcgj0zSqSCW_mUpfxsl-XmNwczFCGSTUUjOj0c3cbIq1ZHCoMub_t8MrKxJxE/s1600/servidorweb2.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgH8JWM9LgdPyBqznuDQ4spnLALnHoowmS-OiOC0XkG3MsgQ3OWXUagFETaURiaQqCSW74WYyrthoCj-mWcgj0zSqSCW_mUpfxsl-XmNwczFCGSTUUjOj0c3cbIq1ZHCoMub_t8MrKxJxE/s320/servidorweb2.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;li&gt;Y lo modificamos como la siguiente imagen: &lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHYnEbXn0LQQ2tvtb2IvggzU5JlSkeUA9Bz4hdP8PM5zEOP3ZDjK2L0HVYnw-nn-AnHq6GX6OqqHHYTx60Sq00e5R1S0eJSUjff7nNlANGvd86FBHYVeu7vzY0Ltob8sflRdqIOPFZgv0/s1600/servidorweb15.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHYnEbXn0LQQ2tvtb2IvggzU5JlSkeUA9Bz4hdP8PM5zEOP3ZDjK2L0HVYnw-nn-AnHq6GX6OqqHHYTx60Sq00e5R1S0eJSUjff7nNlANGvd86FBHYVeu7vzY0Ltob8sflRdqIOPFZgv0/s320/servidorweb15.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Eso es solo lo que tienen que modificar, guardan y listo.&lt;/li&gt;
&lt;li&gt;Recuerden los que le dije de mi configuración de red... &lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Seguimos.... Como modificamos la opción de red será conveniente reiniciar el servicio de red para que se apliquen los cambios, podremos hacerlo con: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;/etc/init.d/network restart&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Probamos que si tengamos internet: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;ping www.google.com.ar&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Les aparecerá algo parecido a esta imagen: 
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhsD3mlR3kvJTypuusuf-LccHwm7EJPtoSIVTggYzwNLf9vs4vOtQMzOXIk7xskJdz5iL-r_wE6VE3J4QHxAMJQGceQt_VYwLXVRmS2aZIsb2B55PSsChnqU8MjWka4vJIamqp1-uJGgNA/s1600/servidorweb7.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhsD3mlR3kvJTypuusuf-LccHwm7EJPtoSIVTggYzwNLf9vs4vOtQMzOXIk7xskJdz5iL-r_wE6VE3J4QHxAMJQGceQt_VYwLXVRmS2aZIsb2B55PSsChnqU8MjWka4vJIamqp1-uJGgNA/s320/servidorweb7.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Con esto terminamos de configurar la parte de IP estática para nuestro server....&lt;/li&gt;
&lt;/ul&gt;
&lt;li&gt;Instalamos las herramientas de desarrollo, como el paquete de compiladores GCC, make, las fuentes del kernel y Perl: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;dnf install -y gcc make kernel-devel perl&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Instalamos los paquetes más completos por las dudas que los necesitemos en un futuro:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;dnf -y groupinstall “Development tools”&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Ahora es el turno de instalar apache: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;dnf -y install httpd&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Lo iniciamos y lo agregamos para que se ejecute siempre al inicio: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 45px; width: 633px;&quot;&gt;systemctl start httpd.service
systemctl enable httpd.service
&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Ahora permitimos el acceso desde afuera agregando las siguientes reglas al firewall: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 70px; width: 633px;&quot;&gt;firewall-cmd --permanent --add-service=http
firewall-cmd --reload
firewall-cmd --permanent --add-service=https
firewall-cmd --reload
&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Nos vamos a otra pc y ponemos la ip estática que configuramos previamente y nos debería de mostrar lo siguiente: &lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj48sllrkyT2Ifljbhr7Y1FODZc7F8TGquS6Lz9jYbkxb2sQiwNtA57UQbUrhOcL96LiKGQAiT4L9_sJshXSFOxFdKSyCNqxXbIx66Bv2cVHkegtgjcxE5i5iLZsFTbpCPOA5T7XZMvMlw/s1600/servidorweb14.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj48sllrkyT2Ifljbhr7Y1FODZc7F8TGquS6Lz9jYbkxb2sQiwNtA57UQbUrhOcL96LiKGQAiT4L9_sJshXSFOxFdKSyCNqxXbIx66Bv2cVHkegtgjcxE5i5iLZsFTbpCPOA5T7XZMvMlw/s320/servidorweb14.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;li&gt;Desde otra pc o en mi caso mi pc real voy a conectarme a este server a través de ssh, para esto utilizamos la ip estática que configuramos antes y el nombre del usuario con el que nos queremos conectar: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;ssh root@192.168.100.4&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Bueno después de conectarnos pasamos a instalar mariadb o mysql... hay que dejar solo uno y como me gusta lo libre yo elijo siempre mariadb: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;dnf install -y mariadb-server&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Lo iniciamos y configuramos para que inicie siempre en el inicio: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 45px; width: 633px;&quot;&gt;systemctl start mariadb.service
systemctl enable mariadb.service&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Paso a mostrarles como instalar MYSQL, yo igual les muestro como instalar ambos...: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;dnf install -y mysql mysql-server&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;También lo iniciamos y configuramos para que inicie siempre con inicio: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 45px; width: 633px;&quot;&gt;systemctl start mysqld.service
systemctl enable mysqld.service&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;El paso siguiente es crucial configuramos la seguridad de mariadb o sql con: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;mysql_secure_installation&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Nos dirá que ingresemos el password de nuestra base de datos en el caso que ya la tengamos configurada previamente, como es la primera ves que la ejecutamos apretamos enter directamente: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 120px; width: 633px;&quot;&gt;NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!

In order to log into MariaDB to secure it, we&#39;ll need the current
password for the root user.  If you&#39;ve just installed MariaDB, and
you haven&#39;t set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none):&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Ahora si debemos de elegir un password para nuestra base de datos: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 85px; width: 633px;&quot;&gt;Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.

Set root password? [Y/n] 
&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Le damos que si y luego ingresamos nuestro password 2 veces y listo.... sigamos&lt;/li&gt;
&lt;li&gt;Nos va a preguntar si queremos remover al usuario anónimo... obvio que si....: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 110px; width: 633px;&quot;&gt;By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n]
&lt;/textarea&gt;
&lt;/li&gt;
&lt;li&gt;Ahora nos preguntara si queremos bloquear el acceso a root desde remoto y le damos que si: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 80px; width: 633px;&quot;&gt;Normally, root should only be allowed to connect from &#39;localhost&#39;.  This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] 
&lt;/textarea&gt;
&lt;/li&gt;
&lt;li&gt;Nos preguntara luego si queremos eleminar la base de datos de prueba y nevamente le damos a yes: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 90px; width: 633px;&quot;&gt;By default, MariaDB comes with a database named &#39;test&#39; that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] 
&lt;/textarea&gt;
&lt;/li&gt;
&lt;li&gt;Luego nos preguntara recargar los privilegios de las tablas por los cambios que hicimos y le damos que si: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 80px; width: 633px;&quot;&gt;Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] 
&lt;/textarea&gt;
&lt;/li&gt;
&lt;li&gt;Listo terminamos con esto....&lt;/li&gt;
&lt;li&gt;Pasemos a instalar php y phpmyadmin con: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;dnf install -y php phpMyAdmin
&lt;/textarea&gt;&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;Pasamos a configurar php, para eso empecamos configurando las ip que van a poder tener acceso a phpmyadmin: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;nano /etc/httpd/conf.d/phpMyAdmin.conf&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Acá les pego como lo configure en mi server fedora: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 150px; width: 633px;&quot;&gt;Directory /usr/share/phpMyAdmin/&gt;
   AddDefaultCharset UTF-8

&lt;ifmodule mod_authz_core.c&gt;
     # Apache 2.4
     &lt;requireany&gt;
       Require ip 127.0.0.1 192.168.100.0/24
       Require ip ::1
     &lt;/RequireAny&gt;
   &lt;/IfModule&gt;
&lt;/textarea&gt;
&lt;/li&gt;
&lt;li&gt;Un poco más abajo también: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;nano /etc/httpd/conf.d/phpMyAdmin.conf&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Acá les pego como lo configure en mi server fedora: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 130px; width: 633px;&quot;&gt;&lt;directory /usr/share/phpMyAdmin/setup/&gt;
   &lt;ifmodule mod_authz_core.c&gt;
     # Apache 2.4
     &lt;requireany&gt;
       Require ip 127.0.0.1 192.168.100.0/24
       Require ip ::1
     &lt;/RequireAny&gt;
   &lt;/IfModule&gt;
&lt;/textarea&gt;
&lt;/li&gt;
&lt;li&gt;Les explico un poco lo que hice, como ven puse 192.168.100.0/24 osea tomo toda mi red interna, esto significa que voy a permitir que cualquier pc de mi red pueda acceder a phpmyadmin, obvio que lo mejor es dejar solo las ip que realmente lo van a ocupar o hacer un subneting para agrupar las pc que podrán acceder a php.&lt;/li&gt;
&lt;li&gt;Por último reiniciamos apache: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;systemctl restart httpd&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Desde algún host entramos y deberíamos de ver algo así:&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiE6KPvU_5Ji_6cknCPEwTXlLHzpK7XSkt8JCCVHQbutDihZ7-BzIODkndKOon5y562vzWqKzAtJBCjG7TjuvxVLIs4Olncnm3GNu3kV4OMCwAb5yqwTyz_ji_aqVCR11wQ48_9iifkld0/s1600/servidorweb18.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiE6KPvU_5Ji_6cknCPEwTXlLHzpK7XSkt8JCCVHQbutDihZ7-BzIODkndKOon5y562vzWqKzAtJBCjG7TjuvxVLIs4Olncnm3GNu3kV4OMCwAb5yqwTyz_ji_aqVCR11wQ48_9iifkld0/s320/servidorweb18.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;li&gt;Se logena y listo ya están dentro: &lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9PATHzG3f0xDgy3MlGjdkkMEaNNdsENLr_A8vWvC_-47Zx2s-3ljuU7m2G1ZTBiYOam0X6hmyjFUUC7wctNXA81tyHJjFUQsCpBdHrp8zzbZ0IOo8MTckXkTzl-AJJg5pEva2r6GcNgE/s1600/servidorweb16.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9PATHzG3f0xDgy3MlGjdkkMEaNNdsENLr_A8vWvC_-47Zx2s-3ljuU7m2G1ZTBiYOam0X6hmyjFUUC7wctNXA81tyHJjFUQsCpBdHrp8zzbZ0IOo8MTckXkTzl-AJJg5pEva2r6GcNgE/s320/servidorweb16.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjG5-CJHTiyZ1NksY_Ru_hMWNencSgf8RwoZjBbJOuvXm5c8yqBl7Lu1HuUT2b6_wVbx_-My6JY7uLb7U941Y7PFwofVHrMtPxiFGvwQi_lXoHEiE9ptZHUX7xTtgWM1GTPg1SREaTPYXc/s1600/servidorweb17.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjG5-CJHTiyZ1NksY_Ru_hMWNencSgf8RwoZjBbJOuvXm5c8yqBl7Lu1HuUT2b6_wVbx_-My6JY7uLb7U941Y7PFwofVHrMtPxiFGvwQi_lXoHEiE9ptZHUX7xTtgWM1GTPg1SREaTPYXc/s320/servidorweb17.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/ul&gt;
Bueno amigos con esto ya tenemos instalado nuestro server web o lamp para poder trabajar en nuestra red, espero que les sea de utilidad y cualquier cosa ya saben consulten...&lt;/ol&gt;
&lt;ol&gt;Adios... &lt;/ol&gt;
</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/3640951211237295151/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2015/06/como-instalar-y-configurar-fedora.html#comment-form' title='5 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/3640951211237295151'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/3640951211237295151'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2015/06/como-instalar-y-configurar-fedora.html' title='Como instalar y configurar fedora server 22 (PARTE 2) Web server- LAMP'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqWo3bFLrG2L8_kNVFEqp60KhYcxk8T8BuJzjMap2uSZXzvp15Uf3p135eAS_dYRAeE96VBuNw22Ranrax7i3yQDpSCnAUhT2EwO0H1v8WmfIjUiEfwSRooOunQgrr1BvvwmnV8yEN6Q0/s72-c/servidorweb1.png" height="72" width="72"/><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-4918540721880149758</id><published>2015-06-03T07:49:00.002-07:00</published><updated>2015-06-09T07:41:59.394-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Fedora Server 22"/><category scheme="http://www.blogger.com/atom/ns#" term="instalar"/><category scheme="http://www.blogger.com/atom/ns#" term="Servidor"/><title type='text'>Como instalar y configurar fedora server 22 (PARTE 1)</title><content type='html'>Voy a mostrar como instalar esta excelente alternativa para servidores, es muy sencillo ya a la ves muy parecido a la instalación de &lt;a href=&quot;http://hackendemoniado.blogspot.com/2015/05/como-instalar-fedora-22-2015-release.html&quot; target=&quot;_blank&quot;&gt;fedora 22&lt;/a&gt; en mi post anterior, asique vamos a los pasos directamente:&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Descargamos la iso desde &lt;a href=&quot;http://mirror.globo.com/fedora/linux/releases/22/Server/x86_64/iso/Fedora-Server-DVD-x86_64-22.iso&quot; target=&quot;_blank&quot;&gt;acá&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Ahora descargamos el archivo &lt;a href=&quot;https://getfedora.org/es/static/checksums/Fedora-Server-22-x86_64-CHECKSUM&quot; target=&quot;_blank&quot;&gt;CHECKSUM&lt;/a&gt; para verificar la iso.&lt;/li&gt;
&lt;li&gt;Nos dirigimos desde la terminal al directorio donde guardamos ambas cosas, lo más fácil es que estén en la misma carpeta.&lt;/li&gt;
&lt;li&gt;Importamos la llave GPG de fedora: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;curl https://getfedora.org/static/fedora.gpg | gpg --import&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Ahora verificamos que el archivo CHECKSUM sea valido con el siguiente comando:
&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;gpg --verify-files *-CHECKSUM&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Por último comprobamos que el checksum de la imagen concuerde:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;sha256sum -c *-CHECKSUM&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Debería de mostrar un cartel diciendo: Fedora-Server-DVD-x86_64-22.iso: La suma coincide&lt;/li&gt;
&lt;li&gt;También podrian directamente lanzar el comando $ sha256sum Fedora-Live-Workstation-x86_64-22-3.iso y con el hash resultante buscarlo o compararlo a mano en el archivo llamado checksu.&lt;/li&gt;
&lt;li&gt;Ahora el paso siguiente es quemar la iso en un DVD (Pesa 2.1 GB) o un pendrive para instalarlo en nuestro cacharro.&lt;/li&gt;
&lt;li&gt;Lo primer que saldrá es:&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiixQ6XMwNZdhRdvZFDTzJDk4Koa5rK0jgIJ2I46XA6ldXexH8_Kcvolh-RnnGA3rpVrGTylzt7deJwxWYLSg6AubgKCUdRKQq1YumDvq08K75cnG0YQ-0AtPX8pY2zm1Xfe3YFe87TL0w/s1600/fedora+server_1.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiixQ6XMwNZdhRdvZFDTzJDk4Koa5rK0jgIJ2I46XA6ldXexH8_Kcvolh-RnnGA3rpVrGTylzt7deJwxWYLSg6AubgKCUdRKQq1YumDvq08K75cnG0YQ-0AtPX8pY2zm1Xfe3YFe87TL0w/s320/fedora+server_1.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;li&gt;Seleccionamos como sale en la imagen anterior y ahora el paso siguiente seria configurar el idioma:&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhAlXVD1E1cBFFfuZfqamTrZMbSZyVvVxxl-T4TfvGJsi9UbzB4aSZ5Upk1weKwi4yN2VnhyGmqHIoeC2cOPPtczUSNSJdk3UHtdMWL8CGedEaVdmkgGsx6xkNVe0ybnSy5PujgrWcoYAY/s1600/fedora+server_3.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhAlXVD1E1cBFFfuZfqamTrZMbSZyVvVxxl-T4TfvGJsi9UbzB4aSZ5Upk1weKwi4yN2VnhyGmqHIoeC2cOPPtczUSNSJdk3UHtdMWL8CGedEaVdmkgGsx6xkNVe0ybnSy5PujgrWcoYAY/s320/fedora+server_3.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;li&gt;El paso siguiente es configurar red, lugar, disco rígido, y el software que instalaremos:&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh7AgkGDVddiU1MTB0h7GbzRN1ruSyON8NOJKDGICVpcVc9X9SOiQ-Z4akJn5YoyHPkYIc8LRGjFhemMPMpilOrXEXZyiI2QPJWtToUadZjBZ1r4QG_7ZonAcfg1X5T-2o-3INhms3OPkk/s1600/fedora+server_4.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh7AgkGDVddiU1MTB0h7GbzRN1ruSyON8NOJKDGICVpcVc9X9SOiQ-Z4akJn5YoyHPkYIc8LRGjFhemMPMpilOrXEXZyiI2QPJWtToUadZjBZ1r4QG_7ZonAcfg1X5T-2o-3INhms3OPkk/s320/fedora+server_4.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;li&gt;Primero el tema de la región: existen varias formas de configurar esto una es hacer clic con el mouse, otra forma es 
desplegar el menú y buscar su provicia o estado como aparece en la 
imagen y por último hacer clic en Listo:&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhCzlY3I5qOZRr_WtXtJWXtu28y6pVKS2Hp_VCJPD1-rA_YA20wUd_fGsadYUPfFDD4NuoReZuJ93PF28R55zdoi7Vpqk6NImKGANG43Ayj4IIqSYvOk2NOiMaWxWMthNlhtw9KXQLzQxE/s1600/fedora+server_5.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhCzlY3I5qOZRr_WtXtJWXtu28y6pVKS2Hp_VCJPD1-rA_YA20wUd_fGsadYUPfFDD4NuoReZuJ93PF28R55zdoi7Vpqk6NImKGANG43Ayj4IIqSYvOk2NOiMaWxWMthNlhtw9KXQLzQxE/s320/fedora+server_5.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;li&gt;Para configurar el software que voy a instalar al server lo voy a dejar en instalación básica, porque voy a configurar a mano todo lo que quiero que tenga el software, pero no es mala idea mirar las opciones y todo lo que hay acá porque tiene de todo como para configurar en un par de clics.&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijKkqLk7xZVPW-qJEa3k3cnfOQmaT50CZ9-HO7lb78yXshDL_30bUpdS79WELvfCa29gbZyobfIXPnr8zb2LRf94w12rOcmkKOs6t1nWnJDhOh9TN7v7nC4RrA6W8zxyDbh3XbaUjYI38/s1600/fedora+server_18.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijKkqLk7xZVPW-qJEa3k3cnfOQmaT50CZ9-HO7lb78yXshDL_30bUpdS79WELvfCa29gbZyobfIXPnr8zb2LRf94w12rOcmkKOs6t1nWnJDhOh9TN7v7nC4RrA6W8zxyDbh3XbaUjYI38/s320/fedora+server_18.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;li&gt;Para el tema del destino de la instalación lo voy a dejar por default, por ende entramos y hacemos clic en listo:&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhywXln2c4zSXYTntTyWdKn5FKxSv9L6Fb_16WeOmyvZG6G48t7yjpwxqVF2ujc9Y70AGujop5W_bacF7nzhXiV7qYghhoSh7cY8cQ_PLcqGDE25830lFz41bN6SHlnqfQ839XexW0ov98/s1600/fedora+server_8.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhywXln2c4zSXYTntTyWdKn5FKxSv9L6Fb_16WeOmyvZG6G48t7yjpwxqVF2ujc9Y70AGujop5W_bacF7nzhXiV7qYghhoSh7cY8cQ_PLcqGDE25830lFz41bN6SHlnqfQ839XexW0ov98/s320/fedora+server_8.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;li&gt;Empieza la instalación, pero debemos configurar el password tanto del usuario root como del usuario común:&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0CxKQH6p9XrBTWqpoDzgsMp_Z-TDlKk3HrdMbkg4soo4Y1-BvFWs6T7VM6EnypKdhXBArgNCYtAz3F_h3UfuZYmotHzJV11zyymgQpUYvaCae14L8zwTwTFunDFfT9NhgHf27Afg8ioI/s1600/fedora+server_9.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0CxKQH6p9XrBTWqpoDzgsMp_Z-TDlKk3HrdMbkg4soo4Y1-BvFWs6T7VM6EnypKdhXBArgNCYtAz3F_h3UfuZYmotHzJV11zyymgQpUYvaCae14L8zwTwTFunDFfT9NhgHf27Afg8ioI/s320/fedora+server_9.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;li&gt;Primero ponemos password al root obvio, hacemos clic en listo:&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjTQpjlYTEaTh1BScSF8_-hd-myWYiv21umq4JtR9ZCBZ5rTFttnuZSHY3gqHJG4eZyNu-z_N4F5I45rYVkDQuJtSoJ30JwW6qL82Xz3VxgxiDbWjR-2mGg8Pqd3qnc0lFjRDIiAt0xL8w/s1600/fedora+server_10.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjTQpjlYTEaTh1BScSF8_-hd-myWYiv21umq4JtR9ZCBZ5rTFttnuZSHY3gqHJG4eZyNu-z_N4F5I45rYVkDQuJtSoJ30JwW6qL82Xz3VxgxiDbWjR-2mGg8Pqd3qnc0lFjRDIiAt0xL8w/s320/fedora+server_10.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;li&gt;Ahora al usuario le damos un nombre + password y en mi caso particular lo incluyo en el grupo de administradores:&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhPIfeqciYq4HaGebhlOFpS9yB0lM00misNo9YdsxHmK-nGNXcyRRIkZiugawVHa8GVXhM4vvPIO4nP4nt0Tuvzl2G1hAC_lZvsK1aeSR7mbFQmON0H7liyCP1LHw7PjyUsAm58rekHauw/s1600/fedora+server_11.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhPIfeqciYq4HaGebhlOFpS9yB0lM00misNo9YdsxHmK-nGNXcyRRIkZiugawVHa8GVXhM4vvPIO4nP4nt0Tuvzl2G1hAC_lZvsK1aeSR7mbFQmON0H7liyCP1LHw7PjyUsAm58rekHauw/s320/fedora+server_11.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;li&gt;Vemos como instala paquetes:&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiNhnbieqpzrzfIrE5XnM-u5Q-M7MMNBeuEuVIK1FMLE6QmaahLHloMHmQB7gkb58a7gNe51-UJIZnt2wpYMa29hVqygHVQTgDVqY1BV95CwF9pD7rsO9vfYFHMs665cq01FUuwKDE2ZKQ/s1600/fedora+server_12.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiNhnbieqpzrzfIrE5XnM-u5Q-M7MMNBeuEuVIK1FMLE6QmaahLHloMHmQB7gkb58a7gNe51-UJIZnt2wpYMa29hVqygHVQTgDVqY1BV95CwF9pD7rsO9vfYFHMs665cq01FUuwKDE2ZKQ/s320/fedora+server_12.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;li&gt;Listo termino, hacemos clic en Reiniciar:&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLzgzGlDI2eGR9MkHuYtEEutYLoFPi9vaz04TPYCU94jVy4LS5_4nBiG_dkG1Q9efuCVaO4xIiOMUvG9Hqhylb8jbPHQIwrClV6SKht6l0YEmVOtYcE7qSigfzxW8bi3gDiAuoC_tl4_Q/s1600/fedora+server_13.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLzgzGlDI2eGR9MkHuYtEEutYLoFPi9vaz04TPYCU94jVy4LS5_4nBiG_dkG1Q9efuCVaO4xIiOMUvG9Hqhylb8jbPHQIwrClV6SKht6l0YEmVOtYcE7qSigfzxW8bi3gDiAuoC_tl4_Q/s320/fedora+server_13.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;li&gt;Vemos el GRUB:&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5-qMp_WLFtXSYIct_Hy2nSX1cItBB_ZnhHQ9iBnyCckJToK_gb0NOs3QuUPyh40Tpxi9LmBxFWBNTqIrPNmxD0JmpUJyI2uwU47xU_kqxYoemiZ3Qca8SEjrO10-n4cZrz-KPcivX4ko/s1600/fedora+server_14.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5-qMp_WLFtXSYIct_Hy2nSX1cItBB_ZnhHQ9iBnyCckJToK_gb0NOs3QuUPyh40Tpxi9LmBxFWBNTqIrPNmxD0JmpUJyI2uwU47xU_kqxYoemiZ3Qca8SEjrO10-n4cZrz-KPcivX4ko/s320/fedora+server_14.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhkQsR67UC3syWA-QQTZLQfQRKy7kGjfx9usrK_g9RkfNEQo4Sx863gPQLne5b8eFQWK05I7un1p01EURno7521U3Z0NK5dooKKU8nqX-e8t-8F2PQwBWEzvV8BD2-a9pmNny-aSVIxKFY/s1600/fedora+server_15.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhkQsR67UC3syWA-QQTZLQfQRKy7kGjfx9usrK_g9RkfNEQo4Sx863gPQLne5b8eFQWK05I7un1p01EURno7521U3Z0NK5dooKKU8nqX-e8t-8F2PQwBWEzvV8BD2-a9pmNny-aSVIxKFY/s320/fedora+server_15.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;li&gt;Como es un servidor solo tenemos la terminal y nada más osea no tenemos entorno gráfico, pero no se asusten porque no es tan difícil manejarla: &lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhJRZMQ2S2HTZz3uq7XOK-TtN0zBZVcFCoX32ZByNVAwKRcGvtNgl9kZXS-J8HCJK8IfEpYmUWQW5LcPxnsnx_7JzTua1mbd4L6_o8dygfDJR3WjRqQDsBIeXsWz4Km_faRTBLyfxo0v_o/s1600/fedora+server_16.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhJRZMQ2S2HTZz3uq7XOK-TtN0zBZVcFCoX32ZByNVAwKRcGvtNgl9kZXS-J8HCJK8IfEpYmUWQW5LcPxnsnx_7JzTua1mbd4L6_o8dygfDJR3WjRqQDsBIeXsWz4Km_faRTBLyfxo0v_o/s320/fedora+server_16.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;li&gt;Voy a logearme como root para que vean, solo pongo el root o el nombre del usuario con el que quieran entrar, le dan a enter y les va a pedir el password, cuando pongan su contraseñas nos les aparece nada es como si no escribieran nada pero es por seguridad, osea no muestra asteriscos:&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjFV1bVOpH1ADR3QYkEulco_SnKkazized62fGgAYueymQNAEiUzCjaoASaCfo9VTouXAMMVCTkGhMOEi86I-OesSDOjA-bzsuedMxvUcL_cbTYIw2tuXiwLOUIMGfNxGrDSDRGGhqFuCo/s1600/fedora+server_19.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjFV1bVOpH1ADR3QYkEulco_SnKkazized62fGgAYueymQNAEiUzCjaoASaCfo9VTouXAMMVCTkGhMOEi86I-OesSDOjA-bzsuedMxvUcL_cbTYIw2tuXiwLOUIMGfNxGrDSDRGGhqFuCo/s320/fedora+server_19.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;li&gt;Ahora lo primero que debemos hacer luego de acceder es hacer una actualización al server con el comando: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;dnf update -y&lt;/textarea&gt;&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg0kbYk1n7hOyE76yY9995AvfRUiwb_FWOHHV06PE6FcixEV_mlqe-RQiGXmVQ-23QEyVFlsF-FFLDHzqboIc0wXGMaW_zoSDYG5eDjmOm_P2tOcXzx-GHt8S-oddxPW2iVGQNTPJzlzNo/s1600/fedora+server_20.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg0kbYk1n7hOyE76yY9995AvfRUiwb_FWOHHV06PE6FcixEV_mlqe-RQiGXmVQ-23QEyVFlsF-FFLDHzqboIc0wXGMaW_zoSDYG5eDjmOm_P2tOcXzx-GHt8S-oddxPW2iVGQNTPJzlzNo/s320/fedora+server_20.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj3Rql5i8K_hyphenhyphenGxHn9f_vRok4nGrfF5tqQG0ruLyA7w3sSo88_cg_Nf44R18nrvGLvuKwLyAKT2DJZM38-v0AiRdKBseUOdY5JxqSMSXYegI4Efqqp6a_S-aihAVIjrsSoqRETNJDV1fH4/s1600/fedora+server_21.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj3Rql5i8K_hyphenhyphenGxHn9f_vRok4nGrfF5tqQG0ruLyA7w3sSo88_cg_Nf44R18nrvGLvuKwLyAKT2DJZM38-v0AiRdKBseUOdY5JxqSMSXYegI4Efqqp6a_S-aihAVIjrsSoqRETNJDV1fH4/s320/fedora+server_21.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;li&gt;Listo ahora si que terminamos la instalación del server.&lt;/li&gt;
&lt;/ol&gt;
Como se darán cuenta no es para nada complejo la instalación asique los invito a que se animen a probarlo....&lt;br /&gt;
&lt;br /&gt;
Esta es la parte 1, en las sucesivas partes voy a mostrarle como podemos agregarle funcionalidades a este server....&lt;br /&gt;
&lt;br /&gt;
Si desean me escriben si quieren que muestre como se instala algo en particular en este entorno....&lt;br /&gt;
&lt;br /&gt;
Bueno me despido y espero que este post sea útil....&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://hackendemoniado.blogspot.com/2015/06/como-instalar-fedora-server-22-parte-1.html&quot; target=&quot;_blank&quot;&gt;Como instalar fedora server 22 (PARTE 1)&amp;nbsp;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://hackendemoniado.blogspot.com/2015/06/como-instalar-y-configurar-fedora.html&quot; target=&quot;_blank&quot;&gt;Como instalar y configurar fedora server 22 (PARTE 2) Web server- LAMP&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://hackendemoniado.blogspot.com/2015/06/como-instalar-y-configurar-fedora_9.html&quot; target=&quot;_blank&quot;&gt;Como instalar y configurar fedora server (PARTE 3) Servidor de Archivos SAMBA&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/4918540721880149758/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2015/06/como-instalar-fedora-server-22-parte-1.html#comment-form' title='5 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/4918540721880149758'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/4918540721880149758'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2015/06/como-instalar-fedora-server-22-parte-1.html' title='Como instalar y configurar fedora server 22 (PARTE 1)'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiixQ6XMwNZdhRdvZFDTzJDk4Koa5rK0jgIJ2I46XA6ldXexH8_Kcvolh-RnnGA3rpVrGTylzt7deJwxWYLSg6AubgKCUdRKQq1YumDvq08K75cnG0YQ-0AtPX8pY2zm1Xfe3YFe87TL0w/s72-c/fedora+server_1.png" height="72" width="72"/><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-4462814074469300543</id><published>2015-06-02T16:19:00.002-07:00</published><updated>2015-06-03T06:29:18.326-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Bash"/><category scheme="http://www.blogger.com/atom/ns#" term="Chroot"/><category scheme="http://www.blogger.com/atom/ns#" term="Fedora 22"/><category scheme="http://www.blogger.com/atom/ns#" term="Jail"/><category scheme="http://www.blogger.com/atom/ns#" term="VeraCrypt"/><title type='text'>JAIL (JAULA) en fedora 22 &quot;chroot&quot;</title><content type='html'>Hola hoy toca explicar algo más específico de seguridad informática, y más particularmente el tema de jail o jaula en linux (en este caso fedora), primero que nada voy a explicarles un poco que es esto de jail, empecemos:&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Jail siempre funciona con la operación chroot que es la encargada de generar dicha jail.&lt;/li&gt;
&lt;li&gt;Chroot lo que hace es cambiar el directorio raíz para un proceso en particular o para todo lo que instalemos en dentro de ese directorio.&lt;/li&gt;
&lt;li&gt;Este directorio o jail permite que todo lo que esté dentro de el no pueda ver los demás directorios pues cree que ya está en la raíz del sistema y por ende no tendría acceso a las demás partes del sistema si alguna de estas aplicaciones fueran comprometidas.&lt;/li&gt;
&lt;li&gt;La jaula bloque para un ID o proceso determinado el acceso a otras áreas del sistema por lo que expliqué en el apartedo 3.&lt;/li&gt;
&lt;li&gt;El mecanismo chroot no puede defenderse de manipulaciones o acceso a este sistema como root pues en este caso si tendría acceso pues es el real root y podria ver el directorio raíz real de todo el sistema, por eso hay que tener mucho cuidado con esto....&lt;/li&gt;
&lt;li&gt;Para poder ejecutar una aplicación en esta jaula se debe de llenar la carpeta chroot con todos los archivos de dicha aplicación o dicho de otra manera más simple es instalar esta aplicación en el directorio chrooot.&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
Luego de explicar que es esto de jail o jaula o chroot vamos de lleno a explicar como implementarlo, para este ejemplo voy a meter a veracrypt dentro de la jaula:&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Hay que crear los directorios en nuestra distribución: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;mkdir -p /home/tuusuario/chroot/veracrypt/var/lib/rpm&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Inicializamos la base de datos: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;sudo rpm --root /home/tuusuario/chroot/veracrypt --initdb&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;El siguiente paso es descargar los archivos necesarios para poder ejecutar las aplicaciones desde chroot: 
&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;sudo dnf download --destdir=/var/tmp fedora-release&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Nos vamos al directorio: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;cd /var/tmp&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Nos vamos al directorio: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;rpm --root /home/tuusuario/chroot/veracrypt -ivh --nodeps fedora-release*rpm&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Acá llega el punto más crucial, pues debemos instalar la aplicación dentro de chroot, esto puede variar dependiendo de la aplicación, en mi caso es un poco más complejo de lo normal, primero descargamos veracrypt dentro de la carpeta /home/tuusuario/chroot/veracrypt desde &lt;a href=&quot;http://veracrypt.codeplex.com/downloads/get/1372347&quot; target=&quot;_blank&quot;&gt;acá&lt;/a&gt; luego lo descomprimimos en ese mismo lugar y entramos en la carpeta desde la terminal: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;cd /veracrypt-1.0f-2-setup
./veracrypt-1.0f-2-setup-console-x64
&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Para instalar es muy simple:&lt;/li&gt;
&lt;li&gt;Nos dira lo siguiente:&lt;/li&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiPyD9X6v4Skt4zzcxyUmaH8vfL7aIs-5dpvTil483gAUMNMA9Fje07N-0e_wBGzYemJOTUmnUkuFs9CFxMq86aXAgUN6WDt6f3hlIkbMneqrsHktXlDNSfMfxSyRZRhyphenhyphennxmu9O1yy_geA/s1600/fedora+22_16.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiPyD9X6v4Skt4zzcxyUmaH8vfL7aIs-5dpvTil483gAUMNMA9Fje07N-0e_wBGzYemJOTUmnUkuFs9CFxMq86aXAgUN6WDt6f3hlIkbMneqrsHktXlDNSfMfxSyRZRhyphenhyphennxmu9O1yy_geA/s320/fedora+22_16.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;li&gt;Seleccionamo la opción 1&lt;/li&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjbXQZBQq9iT6MBIrlMovPobzrHNLnkFCHqykxNEVotxIrTBL1Tz9o6LZiOoell2UchlGWNkV5gw1JTKgQJ6H3n-kv-4NatGVJjRtn9aCusDLjZyWijw1458C6qvoYUjH-BJZdVdADOUc4/s1600/fedora+22_17.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjbXQZBQq9iT6MBIrlMovPobzrHNLnkFCHqykxNEVotxIrTBL1Tz9o6LZiOoell2UchlGWNkV5gw1JTKgQJ6H3n-kv-4NatGVJjRtn9aCusDLjZyWijw1458C6qvoYUjH-BJZdVdADOUc4/s320/fedora+22_17.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;li&gt;Apretamos la letra &quot;q&quot; (sin comillas) para irnos al final de la liciencia y escribimos yes:&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBRyb5Klydllr8nKtmElUb6T3jOyPfvO6YV_Q82Uwme_a8j39XeUaXi0whZmWBTvAJbGEDJVwBxe_h1yFelnX5UkO-xNpJhQUQJAEVIRr9Enf9Y8sdsO3Z6hajjyeTp_8KjsbU8dRtzv8/s1600/fedora+22_18.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBRyb5Klydllr8nKtmElUb6T3jOyPfvO6YV_Q82Uwme_a8j39XeUaXi0whZmWBTvAJbGEDJVwBxe_h1yFelnX5UkO-xNpJhQUQJAEVIRr9Enf9Y8sdsO3Z6hajjyeTp_8KjsbU8dRtzv8/s320/fedora+22_18.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;li&gt;Luego se instala, al final apretamos enter y listo:&lt;/li&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUF5ilfrPdm2vS3-vXaB9RN2OnNaA0GaJFaShnFOc1wTvem8IV7pU_xJ7xhKpUbRRVmehwsOx2PccdTo1plTSqgcAChAYK6E-VelGQ73FOCs3Q9DXDtw3BqNfagnO64JvwXrRg6-BntNM/s1600/fedora+22_19.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUF5ilfrPdm2vS3-vXaB9RN2OnNaA0GaJFaShnFOc1wTvem8IV7pU_xJ7xhKpUbRRVmehwsOx2PccdTo1plTSqgcAChAYK6E-VelGQ73FOCs3Q9DXDtw3BqNfagnO64JvwXrRg6-BntNM/s320/fedora+22_19.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;li&gt;Como se habrán dado cuenta en la ultima pantalla muestra que se instalo en la raiz de root y no dentro de chroot, ahora el paso seria copiar cada uno de esos archivos que nos muestra esa pantalla dentro de chroot de la siguiente manera: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 220px; width: 633px;&quot;&gt;sudo cp /usr/bin/veracrypt-uninstall.sh /home/tuusuario/chroot/veracrypt/usr/bin/
sudo cp /usr/bin/veracrypt /home/tuusuario/chroot/veracrypt/usr/bin/
mkdir /home/tuusuario/chroot/veracrypt/usr/share/applications
sudo mkdir /home/tuusuario/chroot/veracrypt/usr/share/applications
sudo mkdir /home/tuusuario/chroot/veracrypt/usr/share/veracrypt
sudo mkdir /home/tuusuario/chroot/veracrypt/usr/share/veracrypt/doc
sudo mkdir /home/tuusuario/chroot/veracrypt/usr/share/pixmaps
sudo cp /usr/share/applications/veracrypt.desktop /home/tuusuario/chroot/veracrypt/usr/share/applications/
sudo cp /usr/share/veracrypt/doc/License.txt /home/tuusuario/chroot/veracrypt/usr/share/veracrypt/doc/
sudo cp /usr/share/veracrypt/doc/VeraCrypt\ User\ Guide.pdf /home/tuusuario/chroot/veracrypt/usr/share/veracrypt/doc/
sudo cp /usr/share/pixmaps/veracrypt.xpm /home/tuusuario/chroot/veracrypt/usr/share/pixmaps/
&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Ya casi ya casi... ahora lo que debemos hacer es modificar el archivo llamado &quot;veracrypt.desktop&quot; (sin comillas): &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;sudo nano /home/tuusuario/chroot/veracrypt/usr/share/applications/veracrypt.desktop&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Nos va a aparecer algo como esto: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 150px; width: 633px;&quot;&gt;Desktop Entry]
Encoding=UTF-8
Name=VeraCrypt
GenericName=VeraCrypt
Comment=VeraCrypt
Exec=/usr/bin/veracrypt
Icon=veracrypt
Terminal=false
Type=Application
Categories=Encryption;Encryption Tools;Utility;
&lt;/textarea&gt;
&lt;/li&gt;
&lt;li&gt;Y modificamos la linea que dice: &quot;Exec=/usr/bin/veracrypt&quot; por: &quot;Exec=/home/tuusuario/chroot/veracrypt/usr/bin/veracrypt&quot; quedando de la siguiente manera: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;sudo nano /usr/share/applications/veracrypt.desktop&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Nos va a aparecer algo como esto: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 150px; width: 633px;&quot;&gt;Desktop Entry]
Encoding=UTF-8
Name=VeraCrypt
GenericName=VeraCrypt
Comment=VeraCrypt
Exec=Exec=/home/tuusuario/chroot/veracrypt/usr/bin/veracrypt
Icon=veracrypt
Terminal=false
Type=Application
Categories=Encryption;Encryption Tools;Utility;
&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Modificamos el archivo veracrypt-uninstall.sh: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;sudo nano /home/tuusuario/chroot/veracrypt/usr/bin/veracrypt-uninstall.sh&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;El código que aparece es: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 200px; width: 633px;&quot;&gt;#!/bin/sh
V=&quot;$(mount | grep veracrypt_aux_mnt)&quot;
[ &quot;$V&quot; ] &amp;&amp; echo Error: All volumes must be dismounted first. &amp;&amp; exit 1

rm -f /usr/bin/veracrypt
rm -f /usr/share/veracrypt/doc/License.txt
rm -f &#39;/usr/share/veracrypt/doc/VeraCrypt User Guide.pdf&#39;
rm -f /usr/share/applications/veracrypt.desktop
rm -f /usr/share/pixmaps/veracrypt.xpm
rmdir /usr/share/veracrypt/doc /usr/share/veracrypt

echo VeraCrypt uninstalled.
rm -f /usr/bin/veracrypt-uninstall.sh
&lt;/textarea&gt;
&lt;/li&gt;
&lt;li&gt;Y lo modificamos dejándolo así: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 200px; width: 633px;&quot;&gt;#!/bin/sh
V=&quot;$(mount | grep veracrypt_aux_mnt)&quot;
[ &quot;$V&quot; ] &amp;&amp; echo Error: All volumes must be dismounted first. &amp;&amp; exit 1

rm -f /home/tuusuario/chroot/usr/bin/veracrypt
rm -f /home/tuusuario/chroot/usr/share/veracrypt/doc/License.txt
rm -f &#39;/home/tuusuario/chroot/usr/share/veracrypt/doc/VeraCrypt User Guide.pdf&#39;
rm -f /home/tuusuario/chroot/usr/share/applications/veracrypt.desktop
rm -f /home/tuusuario/chroot/usr/share/pixmaps/veracrypt.xpm
rmdir /home/tuusuario/chroot/usr/share/veracrypt/doc /usr/share/veracrypt

echo VeraCrypt uninstalled.
rm -f /home/tuusuario/chroot/usr/bin/veracrypt-uninstall.sh
&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Debemos desinstalar veracrypt pues no esta dentro de chroot, buuee si esta y ejecuta pero no desde chroot, asique ejecutamos: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;sudo veracrypt-uninstall.sh&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Copiamos el archivo que modificamos osea &quot;veracrypt.desktop&quot; a (esto es opcional por si queremos ejecutar la aplicación desde el verdadero raíz): &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;sudo cp /home/tuusuario/chroot/veracrypt/usr/share/applications/veracrypt.desktop /usr/share/applications/&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Listo jejeje:&lt;/li&gt;
&lt;/ol&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhmVosaTVvGfyzjXIUbymPKBm3XHnutextzvItuTCVG-XSajPhMPQoHcPWq65dUWyShvf6KmGZ_DLmtYY0yj3eYxJNR7fADsvngcKCLa0RewHDLsepV_ZfU3GKzkHJFqm0Nk4JFNNApiQE/s1600/jail3.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhmVosaTVvGfyzjXIUbymPKBm3XHnutextzvItuTCVG-XSajPhMPQoHcPWq65dUWyShvf6KmGZ_DLmtYY0yj3eYxJNR7fADsvngcKCLa0RewHDLsepV_ZfU3GKzkHJFqm0Nk4JFNNApiQE/s320/jail3.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg-A-HOu8HIbsLIpKDBuyInbFgQ9L_vnLy8ahpMzQ_GX8HhB2NNWRbUldWyIlq-SE5LQYrXkNTZn_GSAVEhJWFnZ8-VfpbarMH9zBU1i8l7M9_wBfslbPzrml1kcLni_13bmkIrI3IkoAU/s1600/jail4.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg-A-HOu8HIbsLIpKDBuyInbFgQ9L_vnLy8ahpMzQ_GX8HhB2NNWRbUldWyIlq-SE5LQYrXkNTZn_GSAVEhJWFnZ8-VfpbarMH9zBU1i8l7M9_wBfslbPzrml1kcLni_13bmkIrI3IkoAU/s320/jail4.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgBsbjC83xjCQaJXiITR84qDGAhCnTMaLIcEe-tGim-6HFq3EykdYmPPO_wdz7IOV77h-5sIwN8ZuogcY_a4_j9Oxuu0t440OSfIxjv2wIpK3UiiYJXYKsgpoKa135vaidX9Dr1n-fkPSI/s1600/jail5.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgBsbjC83xjCQaJXiITR84qDGAhCnTMaLIcEe-tGim-6HFq3EykdYmPPO_wdz7IOV77h-5sIwN8ZuogcY_a4_j9Oxuu0t440OSfIxjv2wIpK3UiiYJXYKsgpoKa135vaidX9Dr1n-fkPSI/s320/jail5.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
Datos importantes, si listan dentro de /home/tuusiario/chroot/veracrypt veran un listado de archivos similar al del raiz &quot;/&quot;, esto lo hice solo como prueba pero si quicieran instalar alguna aplicacion diferente deben hacer:&lt;br /&gt;
dnf --installroot=/chroot/nombre_paquete -y install [nombre_paquete]&lt;br /&gt;
&lt;br /&gt;
Ahora toca explicar que existe el comando chroot.... como en las imágenes anteriores&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;sudo chroot /home/tuusuario/chroot/veracrypt&lt;/textarea&gt;
&lt;br /&gt;
&lt;br /&gt;
Con esto entrariamos en un bash muy básico pues es como un fedora dentro de otro, y por ende no tiene casi ningun comando ni nada, pero si tiran el comando &quot;pwd&quot; les va a salir &quot;/&quot; y era eso lo que queriamos...,&lt;br /&gt;
Ahora tiren los siguientes comandos para darle funcionalidad a ese bash:
&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 290px; width: 633px;&quot;&gt;cp /bin/bash /home/tuusuario/chroot/veracrypt/bin/
cp /lib64/{libtinfo.so.5,libdl.so.2,libc.so.6,ld-linux-x86-64.so.2} /home/tuusuario/chroot/veracrypt/lib64/
sudo dnf --installroot=/home/tuusuario/chroot/veracrypt/ groupinstall &quot;minimal install&quot;
sudo dnf --installroot=/home/tuusuario/chroot/veracrypt/ install dnf
sudo dnf --installroot=/home/tuusuario/chroot/veracrypt/ groupinstall &quot;Development Libraries&quot;
sudo dnf --installroot=/home/tuusuario/chroot/veracrypt/ groupinstall &quot;Development Tools&quot;
sudo dnf --installroot=/home/tuusuario/chroot/veracrypt/ install -y build-essential
sudo dnf --installroot=/home/tuusuario/chroot/veracrypt/ groupinstall -y &quot;C Development Tools and Libraries&quot;
sudo dnf --installroot=/home/tuusuario/chroot/veracrypt/ install -y fuse nasm fuse-devel.x86_64

sudo dnf --installroot=/home/tuusuario/chroot/veracrypt/ install --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm

sudo dnf --installroot=/home/tuusuario/chroot/veracrypt/ install -y wxWidgets-devel

&lt;/textarea&gt;
&lt;br /&gt;
&lt;br /&gt;
Recuerden una cosa importante acá se pueden incluso crear usuarios y demás cosas, osea se puede jugar mucho con todo esto, aunque no niego que hay que tener cierta base de linux como para hacer este tipo de cosas, por ejemplo si instalan otra aplicacion como por ejemplo apache podrian ejecutarlo con el comando chroot y ese apache no tendira acceso al raíz del root real y asi pasa con cualquier aplicación....&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Espero que les sea de su agrado el post, bueno sin más me despido...&lt;br /&gt;
&lt;ol&gt;
&lt;/ol&gt;
</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/4462814074469300543/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2015/06/jail-jaula-en-fedora-22-chroot.html#comment-form' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/4462814074469300543'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/4462814074469300543'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2015/06/jail-jaula-en-fedora-22-chroot.html' title='JAIL (JAULA) en fedora 22 &quot;chroot&quot;'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiPyD9X6v4Skt4zzcxyUmaH8vfL7aIs-5dpvTil483gAUMNMA9Fje07N-0e_wBGzYemJOTUmnUkuFs9CFxMq86aXAgUN6WDt6f3hlIkbMneqrsHktXlDNSfMfxSyRZRhyphenhyphennxmu9O1yy_geA/s72-c/fedora+22_16.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-4260153291004557539</id><published>2015-05-30T17:06:00.000-07:00</published><updated>2015-06-15T10:30:07.964-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="distros"/><category scheme="http://www.blogger.com/atom/ns#" term="Fedora"/><category scheme="http://www.blogger.com/atom/ns#" term="Fedora 22"/><category scheme="http://www.blogger.com/atom/ns#" term="VeraCrypt"/><title type='text'>Que hacer despues de instalar fedora 22 final release</title><content type='html'>Hola amigos hoy toca explicar que podemos hacer después de instalar fedora 22, ya sean programas que nos pueden llegar a ser útiles y algunas configuraciones necesarias para optimizar nuestra distro, bueno empecemos:&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Vamos a la terminal y actualizamos todo&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiGADlQWCQjls4YpTbJ2OY_G4IAr9hmqkDsgzRJW9cAS7Y8ZEHxyDvPzhNA4IMUkcp-1w1BcTvbKkea_c3grZJ4-DgKYfhrWUv9ovR1JaZE2TJ9-pZYGa57ytOFUOq_01aIkAr5YKXm26A/s1600/fedora+22_1.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiGADlQWCQjls4YpTbJ2OY_G4IAr9hmqkDsgzRJW9cAS7Y8ZEHxyDvPzhNA4IMUkcp-1w1BcTvbKkea_c3grZJ4-DgKYfhrWUv9ovR1JaZE2TJ9-pZYGa57ytOFUOq_01aIkAr5YKXm26A/s320/fedora+22_1.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjL10TBBDarPvu13RzTYb7HDwpq_3M25zHBnP81NWfGq72E5EMXyXV31f6oyO5uO7ew_on_BBlQK9Pfy6Ie3zOl4UGSOJ2H6vwfMX_wJXCSGLQxXxAOCfGuJnZT43aa81Cpa6t7pk6eX1o/s1600/fedora+22_2.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjL10TBBDarPvu13RzTYb7HDwpq_3M25zHBnP81NWfGq72E5EMXyXV31f6oyO5uO7ew_on_BBlQK9Pfy6Ie3zOl4UGSOJ2H6vwfMX_wJXCSGLQxXxAOCfGuJnZT43aa81Cpa6t7pk6eX1o/s320/fedora+22_2.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Empieza a cargar y....&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg42QKF8rzSTNlEc79mpC1z8iq4NWHF1CUoAXntVcSS8EGBNV5ODM3j541XaVh8jYBEnh549tOo10fMsUdvKf2MOnzObpFMrsTLkl0JXt0sWVdPAsHUoTeD9L_T_BYwV5nvYh_HX2En2Hw/s1600/fedora+22_3.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg42QKF8rzSTNlEc79mpC1z8iq4NWHF1CUoAXntVcSS8EGBNV5ODM3j541XaVh8jYBEnh549tOo10fMsUdvKf2MOnzObpFMrsTLkl0JXt0sWVdPAsHUoTeD9L_T_BYwV5nvYh_HX2En2Hw/s320/fedora+22_3.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Aquí ya aparecen los cambios con release anteriores, pues yum pasó a la historia y ahora debemos de ocupar dnf, como ven al final de la advertencia les dice &quot;dnf install python-dnf-plugins-extras-migrate &amp;amp;&amp;amp; dnf-2 migrate&quot; pues esto no hace falta por el simple hecho que ya viene por default todo esto configurado en fedora 22, yo en mi caso descarto o corto este comando.&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioC3nL15WPfJKfErqyQ7NYlqKgceJ6n8PMHrtyT-RTy8c3KXKdioCG4GINdS1v3HgtCyf_4UIK2ps0nUQ-JmbrOHYn6EU05h5InT3Irzh_AyHpqtY1LQ9MYPEAPBAK6eB0pMtXwphzfT8/s1600/fedora+22_4.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioC3nL15WPfJKfErqyQ7NYlqKgceJ6n8PMHrtyT-RTy8c3KXKdioCG4GINdS1v3HgtCyf_4UIK2ps0nUQ-JmbrOHYn6EU05h5InT3Irzh_AyHpqtY1LQ9MYPEAPBAK6eB0pMtXwphzfT8/s320/fedora+22_4.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;man dnf&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjWaUC4hB8KS261uUuEkx7eK-eZkwXgy6aM1PgTVNPvjUSOCMdkw8mmB0OmCFZrAalgzNvDxDhOZBqW8yFPzI9ZAPFndbNIEHQBt5rl0mqrk5KjKILdoy-Pb5aWt6kCWUNyTT1Q8oqM75c/s1600/fedora+22_5.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjWaUC4hB8KS261uUuEkx7eK-eZkwXgy6aM1PgTVNPvjUSOCMdkw8mmB0OmCFZrAalgzNvDxDhOZBqW8yFPzI9ZAPFndbNIEHQBt5rl0mqrk5KjKILdoy-Pb5aWt6kCWUNyTT1Q8oqM75c/s320/fedora+22_5.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Ese es el manual de dnf, primero me gustaría contarles un poco sobre dnf, pues como punto importante ya lleva varios años en desarrollo, y tiene muchas ventajas respecto del antiguo YUM, es mucho más rápido, más versátil, pues está construido con dependencia actuales, menos consumo de memoria, una API muy bien documentada, ademas no utiliza metadata que contribuye a la diferencia de velocidad, aparte ya no tendríamos porque tener problemas de paquetes al querer actualizar por esto último.&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_Ho_Vx081htBkJBzGnGIeR69-0-5nEroIdeoUl1guXtezia1lk8gIhn8TGRktSTxbMuPMB9S22t3mLM-qYD24JM720WMrC_PYkdYAyzS0pGhW8Bd2zoFCDOB5DQBuSIsQxoysPT7iUsw/s1600/fedora+22_6.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_Ho_Vx081htBkJBzGnGIeR69-0-5nEroIdeoUl1guXtezia1lk8gIhn8TGRktSTxbMuPMB9S22t3mLM-qYD24JM720WMrC_PYkdYAyzS0pGhW8Bd2zoFCDOB5DQBuSIsQxoysPT7iUsw/s320/fedora+22_6.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Ponemos el password....&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiRRv3AKdEe-DuepBmhIgx74ybaXMQnWUxEhJ9N3TA_469Sgw8lIsDi2sg1og8q99iuPJzdF0t5wAQTyOVu3xclVJmjtgarf-dTSmprCtEDLTAi54kA-kZ4tGSN8hbyQaMeZ9qeYMu8CCE/s1600/fedora+22_7.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiRRv3AKdEe-DuepBmhIgx74ybaXMQnWUxEhJ9N3TA_469Sgw8lIsDi2sg1og8q99iuPJzdF0t5wAQTyOVu3xclVJmjtgarf-dTSmprCtEDLTAi54kA-kZ4tGSN8hbyQaMeZ9qeYMu8CCE/s320/fedora+22_7.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Empieza a actualizar...&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjK-kJVXRVbtK6hVNVjWdmzJTRzoTVWxB3CHydC4d8mBfi7FWIXJZ7KEaoUIn3V2upPMahDADTytTdDrdkRqfwgabk92RxeqHw_y8HLw3MqYQsQ-Aba8BcDvBAJ3NaoAU5Dh8XmHdhK488/s1600/fedora+22_8.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjK-kJVXRVbtK6hVNVjWdmzJTRzoTVWxB3CHydC4d8mBfi7FWIXJZ7KEaoUIn3V2upPMahDADTytTdDrdkRqfwgabk92RxeqHw_y8HLw3MqYQsQ-Aba8BcDvBAJ3NaoAU5Dh8XmHdhK488/s320/fedora+22_8.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Acá vemos una lista de los paquetes que va a actualizar....&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg5XPO5sJGy5c7sOS10GKU-eBIWhEkJUKpRT0TVbEDWPj6QME3JCG69pxpWwirPuCIiaYgK91m2AG7Gx5XQAc-3YxRDxUq-qrkK9sHsv76QFZ82mCidjsi3GIpePFhM7wiCYsFZJhnX4nE/s1600/fedora+22_9.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg5XPO5sJGy5c7sOS10GKU-eBIWhEkJUKpRT0TVbEDWPj6QME3JCG69pxpWwirPuCIiaYgK91m2AG7Gx5XQAc-3YxRDxUq-qrkK9sHsv76QFZ82mCidjsi3GIpePFhM7wiCYsFZJhnX4nE/s320/fedora+22_9.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;A mi me gusta tener la terminal en favorito para eso hacemos:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjHbiQ9P_6qU5eMeQSAN_bIMbqil99-cVanP_QRNyx6_CwD3BNDr466YLOx2Qp6exHHCo4QyxLsUhHsDFUL8AhUEzR0-A60gdGumsIBAu2I494bwGprwW3uAcM5Gfo94lGkUhvB_4UPyjs/s1600/fedora+22_10.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjHbiQ9P_6qU5eMeQSAN_bIMbqil99-cVanP_QRNyx6_CwD3BNDr466YLOx2Qp6exHHCo4QyxLsUhHsDFUL8AhUEzR0-A60gdGumsIBAu2I494bwGprwW3uAcM5Gfo94lGkUhvB_4UPyjs/s320/fedora+22_10.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Simplemente hacemos clic en Añadir a los Favoritos y listo:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhypsXjhEVg4hivV6jgBXL6fvRVj4ygALSrUFiuzA_hpJu4kL7tjBP95fCKO5LBLA7S7S-Iie5kH71uXxc-KCiNzaKu_e15XQ1VrLlXl3_aZpBnxYSJJ0ZDZZkTOYE1_ukeMWqCMGy_xJo/s1600/fedora+22_11.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhypsXjhEVg4hivV6jgBXL6fvRVj4ygALSrUFiuzA_hpJu4kL7tjBP95fCKO5LBLA7S7S-Iie5kH71uXxc-KCiNzaKu_e15XQ1VrLlXl3_aZpBnxYSJJ0ZDZZkTOYE1_ukeMWqCMGy_xJo/s320/fedora+22_11.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Ya finalizamos la actualización del sistema en general&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgmUzAdMvIwm6Q2-vBODKjWlIZbTDCv0VY_wu-iiVugeOT1XhM-5-SkqEYdP67VpjWz59CNvvqlRvnWMcGNpI5Jew_2w8kz5emisWBfhlFG_doUJR0IkH_ShWuy-lRt3Vv9GvHJ7MAnlZg/s1600/fedora+22_12.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgmUzAdMvIwm6Q2-vBODKjWlIZbTDCv0VY_wu-iiVugeOT1XhM-5-SkqEYdP67VpjWz59CNvvqlRvnWMcGNpI5Jew_2w8kz5emisWBfhlFG_doUJR0IkH_ShWuy-lRt3Vv9GvHJ7MAnlZg/s320/fedora+22_12.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Instalamos nano:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;sudo dnf install nano -y&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Ahora es el turno de instalar RPM fusion y Community repsitories, donde el primero son paquetes rpm que no estan incluidos en el proyecto fedora o red hat, y el segundo son repositorios alternativos, vamos al comando: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 50px; width: 633px;&quot;&gt;dnf -y install --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Repositorios extras: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 81px; width: 633px;&quot;&gt;dnf -y install http://mirror.yandex.ru/fedora/russianfedora/russianfedora/free/fedora/russianfedora-free-release-stable.noarch.rpm

dnf -y install http://mirror.yandex.ru/fedora/russianfedora/russianfedora/nonfree/fedora/russianfedora-nonfree-release-stable.noarch.rpm
&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Vamos a instalar herramientas básicas de compilación: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 100px; width: 633px;&quot;&gt;dnf -y install kernel-headers

dnf -y install kernel-devel

dnf -y install kernel-PAE-devel (Sólo Si tenes un Kernel PAE) OJO

dnf -y groupinstall &quot;Development Tools&quot;

dnf -y groupinstall &quot;Development Libraries&quot;&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Códecs: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 50px; width: 633px;&quot;&gt;dnf -y install gstreamer-plugins-bad gstreamer-plugins-bad-free-extras gstreamer-plugins-bad-nonfree gstreamer-plugins-ugly gstreamer-ffmpeg gstreamer1-libav gstreamer1-plugins-bad-free-extras gstreamer1-plugins-bad-freeworld gstreamer1-plugins-base-tools gstreamer1-plugins-good-extras gstreamer1-plugins-ugly gstreamer1-plugins-bad-free gstreamer1-plugins-good gstreamer1-plugins-base gstreamer1 ffmpeg mencoder ffmpeg2theora mplayer&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Reproducir dvd cifrados: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;dnf -y install libdvdread libdvdnav lsdvd libdvdcss&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Adobe + Flash 32 bits: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 75px; width: 633px;&quot;&gt;dnf -y install http://linuxdownload.adobe.com/adobe-release/adobe-release-i386-1.0-1.noarch.rpm

dnf -y install flash-plugin
&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Adobe + Flash 64 bits: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 75px; width: 633px;&quot;&gt;dnf -y install http://linuxdownload.adobe.com/adobe-release/adobe-release-x86_64-1.0-1.noarch.rpm

dnf -y install flash-plugin
&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Compresores: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;dnf -y install unrar 
p7zip p7zip-plugins&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;JAVA para este caso hay que instalar tanto el privativo como el libre porque cuando uno falla siempre funciona el otro,asique vamos...:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;dnf -y install java
dnf -y install icedtea-web
&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;El propietario seria para 32 bits:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 95px; width: 633px;&quot;&gt;wget -c -O jre-oraclejava.rpm http://javadl.sun.com/webapps/download/AutoDL?BundleId=106237
dnf -y install jre-oraclejava.rpm
cd /usr/lib/mozilla/plugins/
ln -s /usr/java/latest/lib/i386/libnpjp2.so
echo &#39;PATH=/usr/java/latest/bin:$PATH&#39; &gt;&gt; /etc/profile.d/java.sh&lt;/textarea&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;El propietario de 64 bits:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 95px; width: 633px;&quot;&gt;wget -c -O jre-oraclejava.rpm http://javadl.sun.com/webapps/download/AutoDL?BundleId=106239
dnf -y install jre-oraclejava.rpm
cd /usr/lib64/mozilla/plugins/
ln -s /usr/java/latest/lib/amd64/libnpjp2.so
echo &#39;PATH=/usr/java/latest/bin:$PATH&#39; &gt;&gt; /etc/profile.d/java.sh&lt;/textarea&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Edición de Fotos y Videos: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;dnf -y install gimp mypaint pinta fotoxx digikam
&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Conversor de imagenes: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;dnf -y install converseen
&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;VirtualBox: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 115px; width: 633px;&quot;&gt;su
dnf -y install kernel-headers kernel-devel dkms gcc
wget -c -P/etc/yum.repos.d/ http://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo
echo &#39;skip_if_unavailable=1&#39; /etc/yum.repos.d/virtualbox.repo
dnf -y install VirtualBox
/etc/init.d/vboxdrv setup 
&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Wine + Winetricks: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;dnf -y install wine cabextract winetricks
&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Convertidores de videos: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;dnf -y install mvc mmc transmageddon
&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Creación de videos: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;dnf -y install avidemux kdenlive openshot blender inkscape lives
&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Reproductores de audio y videos: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;dnf -y install vlc qtwebkit clementine 
&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Convertidores y editores de audio: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;dnf -y install soundconverter audacity muse lmms
&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Skype....: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;dnf -y install skype 
&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Mantenimiento: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;dnf -y install bleachbit 
&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Personalización de fedora: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;dnf -y install gnome-tweak-tool dconf-editor gconf-editor 
&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Instalamos Veracrypt para cifrar nuestros disco, memorias, carpetas o lo que sea, primero lo descargamos desde &lt;a href=&quot;https://veracrypt.codeplex.com/downloads/get/1372347&quot; target=&quot;_blank&quot;&gt;acá&lt;/a&gt; luego de descomprimirla hacemos lo siguiente dependiendo de nuestra arquitectura instalamos el de 64 o el de 32 que vienen en la misma carpeta descompimida: &lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 35px; width: 633px;&quot;&gt;chmod 777 veracrypt-1.0f-2-setup-*
./veracrypt-1.0f-2-setup-gui-x64 
&lt;/textarea&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Nos dira lo siguiente:&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiPyD9X6v4Skt4zzcxyUmaH8vfL7aIs-5dpvTil483gAUMNMA9Fje07N-0e_wBGzYemJOTUmnUkuFs9CFxMq86aXAgUN6WDt6f3hlIkbMneqrsHktXlDNSfMfxSyRZRhyphenhyphennxmu9O1yy_geA/s1600/fedora+22_16.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiPyD9X6v4Skt4zzcxyUmaH8vfL7aIs-5dpvTil483gAUMNMA9Fje07N-0e_wBGzYemJOTUmnUkuFs9CFxMq86aXAgUN6WDt6f3hlIkbMneqrsHktXlDNSfMfxSyRZRhyphenhyphennxmu9O1yy_geA/s320/fedora+22_16.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Seleccionamo la opción 1&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjbXQZBQq9iT6MBIrlMovPobzrHNLnkFCHqykxNEVotxIrTBL1Tz9o6LZiOoell2UchlGWNkV5gw1JTKgQJ6H3n-kv-4NatGVJjRtn9aCusDLjZyWijw1458C6qvoYUjH-BJZdVdADOUc4/s1600/fedora+22_17.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjbXQZBQq9iT6MBIrlMovPobzrHNLnkFCHqykxNEVotxIrTBL1Tz9o6LZiOoell2UchlGWNkV5gw1JTKgQJ6H3n-kv-4NatGVJjRtn9aCusDLjZyWijw1458C6qvoYUjH-BJZdVdADOUc4/s320/fedora+22_17.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Apretamos la letra &quot;q&quot; (sin comillas) para irnos al final de la liciencia y escribimos yes:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBRyb5Klydllr8nKtmElUb6T3jOyPfvO6YV_Q82Uwme_a8j39XeUaXi0whZmWBTvAJbGEDJVwBxe_h1yFelnX5UkO-xNpJhQUQJAEVIRr9Enf9Y8sdsO3Z6hajjyeTp_8KjsbU8dRtzv8/s1600/fedora+22_18.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBRyb5Klydllr8nKtmElUb6T3jOyPfvO6YV_Q82Uwme_a8j39XeUaXi0whZmWBTvAJbGEDJVwBxe_h1yFelnX5UkO-xNpJhQUQJAEVIRr9Enf9Y8sdsO3Z6hajjyeTp_8KjsbU8dRtzv8/s320/fedora+22_18.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Luego se instala, al final apretamos enter y listo:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUF5ilfrPdm2vS3-vXaB9RN2OnNaA0GaJFaShnFOc1wTvem8IV7pU_xJ7xhKpUbRRVmehwsOx2PccdTo1plTSqgcAChAYK6E-VelGQ73FOCs3Q9DXDtw3BqNfagnO64JvwXrRg6-BntNM/s1600/fedora+22_19.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUF5ilfrPdm2vS3-vXaB9RN2OnNaA0GaJFaShnFOc1wTvem8IV7pU_xJ7xhKpUbRRVmehwsOx2PccdTo1plTSqgcAChAYK6E-VelGQ73FOCs3Q9DXDtw3BqNfagnO64JvwXrRg6-BntNM/s320/fedora+22_19.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;Algo interesante de fedora es que tiene un pequeño bug en nautilus que no deja configurar la tecla backspace, pues en ~/.config/nautilus/ esta vacio y no existe el archivo accels por ende no podemos configurar dicha tecla como en versiones anteriores, el bug ya fue reportado &lt;a href=&quot;https://bugzilla.gnome.org/show_bug.cgi?id=746378&quot; target=&quot;_blank&quot;&gt;acá&lt;/a&gt; pero bueno es ya es cuestion de tiempo a que lo solucionen, de igual forma no deja de ser una distro muy veloz que demuestra de release en release que cada ves es más madura, más versatil, y muy adaptable a cualquier ámbito, bueno espero que les guste este post, y cualquier cosa consulten.... by&lt;/ul&gt;
</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/4260153291004557539/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2015/05/que-hacer-despues-de-instalar-fedora-22.html#comment-form' title='3 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/4260153291004557539'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/4260153291004557539'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2015/05/que-hacer-despues-de-instalar-fedora-22.html' title='Que hacer despues de instalar fedora 22 final release'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiGADlQWCQjls4YpTbJ2OY_G4IAr9hmqkDsgzRJW9cAS7Y8ZEHxyDvPzhNA4IMUkcp-1w1BcTvbKkea_c3grZJ4-DgKYfhrWUv9ovR1JaZE2TJ9-pZYGa57ytOFUOq_01aIkAr5YKXm26A/s72-c/fedora+22_1.png" height="72" width="72"/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-6355110702729480971</id><published>2015-05-27T06:27:00.001-07:00</published><updated>2015-06-03T07:34:17.077-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Fedora"/><category scheme="http://www.blogger.com/atom/ns#" term="Fedora 22"/><category scheme="http://www.blogger.com/atom/ns#" term="instalar"/><category scheme="http://www.blogger.com/atom/ns#" term="Linux"/><title type='text'>Como instalar Fedora 22 2015 (Release Final)</title><content type='html'>Hola amigos hoy es un día muy especial pues ayer se lanzo el release final de Fedora 22, asique como es una distro que me fascina demasiado voy a mostrarles como descargar e instalarla.&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;El primer paso es dirigirse a descargar la iso desde &lt;a href=&quot;http://download.fedoraproject.org/pub/fedora/linux/releases/22/Workstation/x86_64/iso/Fedora-Live-Workstation-x86_64-22-3.iso&quot; target=&quot;_blank&quot;&gt;acá&lt;/a&gt; es la iso para workstation o si no entienden es para las pc de escritorio.&lt;/li&gt;
&lt;li&gt;Una ves descargada debemos de comprobar que ningún intruso modifico o que no se produzco ningún cambio en la iso mientras se descargaba, para esté paso vamos a esta &lt;a href=&quot;https://getfedora.org/en/static/checksums/Fedora-Workstation-22-x86_64-CHECKSUM&quot; target=&quot;_blank&quot;&gt;URL&lt;/a&gt; y guardamos esa dirección en el mismo directorio donde descargamos la iso y desde nuestra terminal (Fedora en mi caso particular) hacemos lo siguiente:&lt;/li&gt;
&lt;/ul&gt;
&lt;ol&gt;&lt;ol&gt;
&lt;li&gt;Nos vamos a la carpeta donde descargamos la iso e importamos la llave GPG de fedora:&lt;/li&gt;
&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;curl https://getfedora.org/static/fedora.gpg | gpg --import&lt;/textarea&gt;
&lt;li&gt;Ahora verificamos que el archivo CHECKSUM sea valido con el siguiente comando:
&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;gpg --verify-files *-CHECKSUM&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Por último comprobamos que el checksum de la imagen concuerde:&lt;textarea cols=&quot;35&quot; readonly=&quot;readonly&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot;&gt;sha256sum -c *-CHECKSUM&lt;/textarea&gt;&lt;/li&gt;
&lt;li&gt;Debería de mostrar un cartel diciendo: Fedora-Live-Workstation-x86_64-22-3.iso: La suma coincide&lt;/li&gt;
&lt;li&gt;También podrian directamente lanzar el comando $ sha256sum Fedora-Live-Workstation-x86_64-22-3.iso y con el hash resultante buscarlo o compararlo a mano en el archivo llamado checksum &lt;/li&gt;
&lt;/ol&gt;
&lt;/ol&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Ahora el paso siguiente es quemar la iso en un DVD (Pesa 1.3 GB) o un pendrive para instalarlo en nuestro cacharro.&lt;/li&gt;
&lt;li&gt;Lo primer que saldrá es:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7RM2n78Gvr-fGNzGA-LkGGPGc6DoEDrAwf56lLYeljvS796AL8qdUDiFGLswZoyzC6NyV_zAKGjNQ2zUlo-kzQJeMSrk_aTfX6q7PC6L88KlsBedITA4eYG0i9NiFRq7TtNKK-0PI7qk/s1600/fedora22_1.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7RM2n78Gvr-fGNzGA-LkGGPGc6DoEDrAwf56lLYeljvS796AL8qdUDiFGLswZoyzC6NyV_zAKGjNQ2zUlo-kzQJeMSrk_aTfX6q7PC6L88KlsBedITA4eYG0i9NiFRq7TtNKK-0PI7qk/s320/fedora22_1.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Empieza a cargar el live de fedora para luego empezar a instalar:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhH_H81ggf92taeWBv7BYElIl2lwSYLluUjp5DwLdrJ2SxGwjU54sL4sXzROQGfIdPidUiK_jdG8e2cP0Snpbyi7iu6YFRGRst3gOSl-85OaUq9o6uEmkB1YZkKN5scqO5a2jshyhiYmGw/s1600/fedora22_2.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;177&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhH_H81ggf92taeWBv7BYElIl2lwSYLluUjp5DwLdrJ2SxGwjU54sL4sXzROQGfIdPidUiK_jdG8e2cP0Snpbyi7iu6YFRGRst3gOSl-85OaUq9o6uEmkB1YZkKN5scqO5a2jshyhiYmGw/s320/fedora22_2.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Y empezamos seleccionando: &lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhz-wMhI1TOwrubnLO2w-Rkqw6mNQD8WvEEF3sZiwbG98KYfzvkCHeKpDunV24dg1ZTsrkSjpNB_MAolteBRp3oTE4bm4Q3xrGt_I4YIDapRHv2rtyiEXxCUGzcU59q-b-y4rhK4hToSfs/s1600/fedora22_3.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhz-wMhI1TOwrubnLO2w-Rkqw6mNQD8WvEEF3sZiwbG98KYfzvkCHeKpDunV24dg1ZTsrkSjpNB_MAolteBRp3oTE4bm4Q3xrGt_I4YIDapRHv2rtyiEXxCUGzcU59q-b-y4rhK4hToSfs/s320/fedora22_3.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Elegimos nuestro idioma y le damos a Continuar: &lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiSQ2BICJmU-neVHMlUtLCtJOfhDCA-lZmVoWH91IqbIEJFoSsP1-xNrxtIxavAZ9gV1h86B8qMQuvhYWkPFMAaDxn1qE4a-TnKKVnpGAocaX4jxmHVrb0Q9buguFQX4P8qqla-RMDRS9Y/s1600/fedora22_4.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiSQ2BICJmU-neVHMlUtLCtJOfhDCA-lZmVoWH91IqbIEJFoSsP1-xNrxtIxavAZ9gV1h86B8qMQuvhYWkPFMAaDxn1qE4a-TnKKVnpGAocaX4jxmHVrb0Q9buguFQX4P8qqla-RMDRS9Y/s320/fedora22_4.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Ahora debemos de configurar la hora y el destino de la instalación, primero voy a configurar la hora: &lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi1zebu18nri_bk1q5WxVv6ZlejFOVbG9pYj26nKyYzoyw5aqaFevPgaynAJoeGvDcUJgJ64KRwBUf7jUXVrmeXivRbm74AydzFdl84A37xUd7T0MX8vAY6VX-pVyBe2iBtkH65GSJnxZU/s1600/fedora22_5.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi1zebu18nri_bk1q5WxVv6ZlejFOVbG9pYj26nKyYzoyw5aqaFevPgaynAJoeGvDcUJgJ64KRwBUf7jUXVrmeXivRbm74AydzFdl84A37xUd7T0MX8vAY6VX-pVyBe2iBtkH65GSJnxZU/s320/fedora22_5.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Acá existen varias formas una es hacer clic con el mouse, otra forma es desplegar el menú y buscar su provicia o estado como aparece en la imagen y por último clicear en Listo:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjumWgWtggIMpOfGwyxl5W8OQZzb7ocwytTjpLx9RMUd-JhxnVqQ8ajlnzWrGhvrCBO_1UD1Qs5_lmUIj4osYgdR5SleZZL6X1XroQgkp3P9GKIQusL-rcPokqg3jGSIDnKTn_k5vMiiRI/s1600/fedora22_6.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjumWgWtggIMpOfGwyxl5W8OQZzb7ocwytTjpLx9RMUd-JhxnVqQ8ajlnzWrGhvrCBO_1UD1Qs5_lmUIj4osYgdR5SleZZL6X1XroQgkp3P9GKIQusL-rcPokqg3jGSIDnKTn_k5vMiiRI/s320/fedora22_6.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Una forma para configurar el tema del destino de instalación es dejarlo por defecto y darle a Listo directamente, osea solo entramos y cliceamos en listo...:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19_g5KZrBpF46dpjqStf-biTya_7LOji3mczprHDbfpS1s7Ka_mK7W7SLA9gnhbkaaMuDmplxxp5HxcMO3isNiQhFm4lpeiMBtrTeQ5iKkEu9OFCcJaYKSOnW-ksbVrzGzIgJB3F-TGU/s1600/fedora22_7.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh19_g5KZrBpF46dpjqStf-biTya_7LOji3mczprHDbfpS1s7Ka_mK7W7SLA9gnhbkaaMuDmplxxp5HxcMO3isNiQhFm4lpeiMBtrTeQ5iKkEu9OFCcJaYKSOnW-ksbVrzGzIgJB3F-TGU/s320/fedora22_7.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;A mi me gusta editar siempre el particionado porque me gusta separar la carpeta home en una partición específica por si pasa algo y tengo que reinstalar no perder nada (obvio por las dudas siempre hacer backups :), entonces seleccionamos como sale en la imagen y darle a Listo para que aparezca la edición personalizada de la partición:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgueZyrqrCptlXreyZYgtOqeXj7MdVOKRE6cKKP3nQ5NmAe_yGRKsTQFCZSSiC2v_4OJzM46RSMIT8IfWlFwZNvnArwlQj3HkyRHKfHRo3fLJTnj99U9O-u1r3tjBhlldocwm0QxhndQhc/s1600/fedora22_8.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgueZyrqrCptlXreyZYgtOqeXj7MdVOKRE6cKKP3nQ5NmAe_yGRKsTQFCZSSiC2v_4OJzM46RSMIT8IfWlFwZNvnArwlQj3HkyRHKfHRo3fLJTnj99U9O-u1r3tjBhlldocwm0QxhndQhc/s320/fedora22_8.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Para empezar a crear partiziones directamente hacemos clic en el simbolo &quot;+&quot;:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgcrvI_-aBv7W26F-bG0NLQW7r-cfhxQCq1mCGcPGep87ZkF9exYPUGBMWhjLIpp7-975nzdg_nIXF0JoZAIsglNHzMWexLb9fHt2YPADQgrIbPIsLVGTecLiy3kjdTjEWAO2XUTeUYfHA/s1600/fedora22_9.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgcrvI_-aBv7W26F-bG0NLQW7r-cfhxQCq1mCGcPGep87ZkF9exYPUGBMWhjLIpp7-975nzdg_nIXF0JoZAIsglNHzMWexLb9fHt2YPADQgrIbPIsLVGTecLiy3kjdTjEWAO2XUTeUYfHA/s320/fedora22_9.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Ahora creamos la partición del swap:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyfCOtJ8ktpJZ1gzyuzevmxu4AAdhuihuHTk6WCzhzIb3wfq3ZutPuJ12k4hZEbXQKXYfh-ZAFTvW2eQ-xQIf5XkWYhl679Y345qrTjZRj-uAjA4OVcHDWd8KtHY5JLUX-tmXGa1xIOt4/s1600/fedora22_10.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyfCOtJ8ktpJZ1gzyuzevmxu4AAdhuihuHTk6WCzhzIb3wfq3ZutPuJ12k4hZEbXQKXYfh-ZAFTvW2eQ-xQIf5XkWYhl679Y345qrTjZRj-uAjA4OVcHDWd8KtHY5JLUX-tmXGa1xIOt4/s320/fedora22_10.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Ahora le llega el turno al raiz osea &quot;/&quot;, quiero aclarar que estoy instalando fedora en virtualbox, por ende lo que sale en la image es solo un tamaño para este post, lo recomendable es dejar 20 GB en mi caso siempre dejo 25 GB en un disco real pues no ocupan casi nada las aplicaciones que en esa carpeta se instalarán, aclarado esto muestro la imagen:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhzaVgTZY0xTkS68WXqReXzlSyZ5DfeFVtABOBdYffL-JuEK40EYC6dKJegVssNEedoYQt26eL8DXkPxzgwzG7lEJBzWvW8mN0_QHaPPlT75LWItlYOyeBabd2fIiBvaC9EaX9zY2RAxGQ/s1600/fedora22_11.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhzaVgTZY0xTkS68WXqReXzlSyZ5DfeFVtABOBdYffL-JuEK40EYC6dKJegVssNEedoYQt26eL8DXkPxzgwzG7lEJBzWvW8mN0_QHaPPlT75LWItlYOyeBabd2fIiBvaC9EaX9zY2RAxGQ/s320/fedora22_11.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Ahora par el home en el caso real de un disco es dejarle el espacio suficiente como para tener todas nuestras cosas personales, tengan en cuenta que aquí van a estar las carpetas Descargas, Documentos, Imágenes, Videos, etc y todas las carpetas ocultas de aplicaciones y carpetas como de por ejemplo virtualbox, entonces por ejemplo si tienes un disco de 500 yo le dejaria unos 200 gb para datos y el resto como secundario, obvio si quieren dejan todo el resto como home pues si deben de reinstalar fedora no perderan nada porque es una carpeta o destino diferente (&quot;OJO&quot; esto solo sucede si le dan a particionado personalizado, lean bien.... ):&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&amp;nbsp;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgf8oNSBnG5LuZIeHcuysrbipdxVUhpTNUvTtsygVsQzey0629oX5kiWSpbvdcOFflFx-e_eM7PVTuG-dQShSva8m9P-zRS8cUMqgYl0S71WffhUvCQdFgcnbMU0ZvSXM1xpKb9aKjcbLQ/s1600/fedora22_12.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgf8oNSBnG5LuZIeHcuysrbipdxVUhpTNUvTtsygVsQzey0629oX5kiWSpbvdcOFflFx-e_eM7PVTuG-dQShSva8m9P-zRS8cUMqgYl0S71WffhUvCQdFgcnbMU0ZvSXM1xpKb9aKjcbLQ/s320/fedora22_12.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Esto quedaria finalizado y damos clic en Listo:&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhytRt-Wk4Y1gB49ON4z-fSF6shvgbhEzX-EK4rrM8XLntvTfvfuEV80jMKFY6U1aFvCYvOzmjrK2eghkcEHmtafG0-YdojuWL7tM0M0zY_6-M0lNmUBkoFQxynmCUJz3AgdY77YCbtjOw/s1600/fedora22_13.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhytRt-Wk4Y1gB49ON4z-fSF6shvgbhEzX-EK4rrM8XLntvTfvfuEV80jMKFY6U1aFvCYvOzmjrK2eghkcEHmtafG0-YdojuWL7tM0M0zY_6-M0lNmUBkoFQxynmCUJz3AgdY77YCbtjOw/s320/fedora22_13.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Nos aclara lo que va a ser y lista las particiones que va a crear con sus puntos de montaje, como ven al ser un disco virtual (recuadro de adentro) se nota que es una maquina virtual, por último aceptamos los cambios:&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiRmzs01UGiOkGSLDwEy7Bv2gWvg_hAQ6otb1ScLahSex3DiyhLiIEzrJv2Ru3QyITeBGloi1owhYJQD4LJCUzRFZJbg5rUZdauxyUAZpv1D5WmJ1ErxJGFc0evkQafrhK5o7dYVzY9qKs/s1600/fedora22_14.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiRmzs01UGiOkGSLDwEy7Bv2gWvg_hAQ6otb1ScLahSex3DiyhLiIEzrJv2Ru3QyITeBGloi1owhYJQD4LJCUzRFZJbg5rUZdauxyUAZpv1D5WmJ1ErxJGFc0evkQafrhK5o7dYVzY9qKs/s320/fedora22_14.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Para configurar la red en caso que tengamos wifi acá nos aparecerian las redes disponibles y solo configuramos como es de costumbre una simple red wifi, en mi caso es un como un cable conectado y no me hace falta configurar nada, damos en listo:&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEifI0zaKXwxN-Ri5OnVlg9X7yE0C05eDrm8QyLPMCq63_VEte3-GBzCNc5LnBa2r_HCR3isjT-zxDjc0F8aMTNRga145X2Kmdny9IqlOSiPU12DRGkQNV0HZAAg-JWsCjPDSJwhB2wCS14/s1600/fedora22_15.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEifI0zaKXwxN-Ri5OnVlg9X7yE0C05eDrm8QyLPMCq63_VEte3-GBzCNc5LnBa2r_HCR3isjT-zxDjc0F8aMTNRga145X2Kmdny9IqlOSiPU12DRGkQNV0HZAAg-JWsCjPDSJwhB2wCS14/s320/fedora22_15.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Empieza la escritura en el disco, el paso siguiente es configurar el password de root y el nombre + password del usuario con el que iniciaremos la pc o notebook siempre:&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjmabemDxG3DPrnC9lA7qSvh8STFuDNBjRbEDA5CBj3tAl8a5nHYt-y1uXrKkHa4oOp_glVzcCNxkuYS_DAwTm1ztfHXTDGcKLziZ7LuHTxnFdEVprRYpzh-ZSg1edJPF0G_ASlFjcVEk8/s1600/fedora22_16.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjmabemDxG3DPrnC9lA7qSvh8STFuDNBjRbEDA5CBj3tAl8a5nHYt-y1uXrKkHa4oOp_glVzcCNxkuYS_DAwTm1ztfHXTDGcKLziZ7LuHTxnFdEVprRYpzh-ZSg1edJPF0G_ASlFjcVEk8/s320/fedora22_16.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Primero el root:&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhma8ShXoxJXSgTb7Ig-EnNQvuAT1YCNtoeYuMpxAgrISLFwGZ40BC7PlkCG5T_veG2AMnl1a_cdl4eJIDbTft5IssKKt3rbTAYpB1IDiJV-jCYib9hfBRqLxdYeeidyhZLK8XwbNaKktU/s1600/fedora22_17.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhma8ShXoxJXSgTb7Ig-EnNQvuAT1YCNtoeYuMpxAgrISLFwGZ40BC7PlkCG5T_veG2AMnl1a_cdl4eJIDbTft5IssKKt3rbTAYpB1IDiJV-jCYib9hfBRqLxdYeeidyhZLK8XwbNaKktU/s320/fedora22_17.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Ponemos un password bien robusto: &lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjGHhcQKOuEZs6hkTbb7l4wZ0HqGCVKTdVA67gQ5Uh2JEE1Q1bJag2V8qqljCk_PLXH0Bs8qY3eiY7n7iT6iY2ZftatL22TB-bFnuLckwBVIDu4HBA9dQRVusxWPAAPwiFE1oKyIBAuHvE/s1600/fedora22_18.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjGHhcQKOuEZs6hkTbb7l4wZ0HqGCVKTdVA67gQ5Uh2JEE1Q1bJag2V8qqljCk_PLXH0Bs8qY3eiY7n7iT6iY2ZftatL22TB-bFnuLckwBVIDu4HBA9dQRVusxWPAAPwiFE1oKyIBAuHvE/s320/fedora22_18.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp; Ahora para nuestro usuario elegimos algun nombre, le damos algun password, y en mi caso lo incluyo en los usuario administradores:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi-xZMS_kVTcnCR18JTaAWnjkVLAaloJhhDYuptuw1H8FkGG2pF2bJi8a1mV623rP2d3QwRlGI2kPMCa0gheieVyhy7syuzSt_SFzQkdF92wf6kjjF7I85EK4pK44pGQigLiatbFat-Y_o/s1600/fedora22_20.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi-xZMS_kVTcnCR18JTaAWnjkVLAaloJhhDYuptuw1H8FkGG2pF2bJi8a1mV623rP2d3QwRlGI2kPMCa0gheieVyhy7syuzSt_SFzQkdF92wf6kjjF7I85EK4pK44pGQigLiatbFat-Y_o/s320/fedora22_20.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Despues del paso anterior nos resta esperar que termina la instalación, para luego darle a Salir:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhbcio9kyWKgvuGSYwuWygCJBcPXPDK4YLZjwIAEPxlO6cqw7aLwGmDAxWQlWV-InkFpYcOjcb2L2NWF4hjQNI7eiC0Kl8eYWph4XrkFcFZ4mgGvNwtEhip2JNeJOCYgiEQAbZfsPdVV3s/s1600/fedora22_21.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhbcio9kyWKgvuGSYwuWygCJBcPXPDK4YLZjwIAEPxlO6cqw7aLwGmDAxWQlWV-InkFpYcOjcb2L2NWF4hjQNI7eiC0Kl8eYWph4XrkFcFZ4mgGvNwtEhip2JNeJOCYgiEQAbZfsPdVV3s/s320/fedora22_21.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Como es un live queda un fedora como para que uno pruebe si quiere antes de reiniciar o de instalar, en mi caso lo voy a reiniciar haciendo clic en:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjG2LUt_BOEprEQT76zrnFMTPnRDAiCvP0J_LsQvi6W619GpL9NgPuMAm6DXG_TKdMHWD7ogGsCVgt-S7C8VQXt8pStODr9WzxNj1wqDVJiBP_vcUKr1g82sa5JvL_t4P_u3tejkdJEAps/s1600/fedora22_22.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjG2LUt_BOEprEQT76zrnFMTPnRDAiCvP0J_LsQvi6W619GpL9NgPuMAm6DXG_TKdMHWD7ogGsCVgt-S7C8VQXt8pStODr9WzxNj1wqDVJiBP_vcUKr1g82sa5JvL_t4P_u3tejkdJEAps/s320/fedora22_22.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Le damos a PowerOff o Restart:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhU1t_fK6oJcmSHzfqe2SUyHVfdbqYlqus2bEsbd1F2FnJb4Tw3I15pyfFkvan1PK_47gytz91LAFNY84Dqtb2qDcpJw31JaUoVnpFHaE9kB8uGNSo5QcWhn3KPoSJc_nKGhjeRadUpwv8/s1600/fedora22_23.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhU1t_fK6oJcmSHzfqe2SUyHVfdbqYlqus2bEsbd1F2FnJb4Tw3I15pyfFkvan1PK_47gytz91LAFNY84Dqtb2qDcpJw31JaUoVnpFHaE9kB8uGNSo5QcWhn3KPoSJc_nKGhjeRadUpwv8/s320/fedora22_23.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Empieza la carga de fedora:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhlHTDzTPIXiHrg4SkmNQl4JrnwLFpDDV-kY-efMckTtMLOOtD8U5udseuHVl6ZEX8Vpb0ef0EuhK2LEA_UZlFgX_-xTuV8UxG2U6UIB9O_dn095-gOr4uThbXg7tQLQpmtIek4G5NTjlE/s1600/fedora22_24.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;177&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhlHTDzTPIXiHrg4SkmNQl4JrnwLFpDDV-kY-efMckTtMLOOtD8U5udseuHVl6ZEX8Vpb0ef0EuhK2LEA_UZlFgX_-xTuV8UxG2U6UIB9O_dn095-gOr4uThbXg7tQLQpmtIek4G5NTjlE/s320/fedora22_24.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Acá aparece el usuario que creamos durante la instalación:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi-a3oUvso_VROKCuHv1mh48O3XSi-F4Udj3cnLhszxOLpvKw1xO3WWcie1kAKIrZ1M9O4dKCXtHjLmY5Ax5Vzqd1DKEdjynrGuwPbx7HeN3gwV4v_V9mn3LSfqHbTuj4wYzqH3puXpQzU/s1600/fedora22_26.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi-a3oUvso_VROKCuHv1mh48O3XSi-F4Udj3cnLhszxOLpvKw1xO3WWcie1kAKIrZ1M9O4dKCXtHjLmY5Ax5Vzqd1DKEdjynrGuwPbx7HeN3gwV4v_V9mn3LSfqHbTuj4wYzqH3puXpQzU/s320/fedora22_26.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Ponemos nuestro password, y la damos enter o clic en Iniciar sesión:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_w0b9-M7XPsKQZRDHs44mUNFI0yaKyFwcK0yrQZ3nHarIVAI4t1CiC897rRR09jNYazyAUSdsMTesFaKVJD7WouMmPfGkhhkUS1Lzmc1QF8zu6lkKu-1WA_18rIQX4iF9tanvauzBgsk/s1600/fedora22_27.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_w0b9-M7XPsKQZRDHs44mUNFI0yaKyFwcK0yrQZ3nHarIVAI4t1CiC897rRR09jNYazyAUSdsMTesFaKVJD7WouMmPfGkhhkUS1Lzmc1QF8zu6lkKu-1WA_18rIQX4iF9tanvauzBgsk/s320/fedora22_27.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Ya casi terminado lo primero que aparece despues de cargar el escritorio es una pequeña configuración final, lo primero es definir el idioma de la distro, y hacemos clic en Siguiente:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh0uCEahXCmTPP0yU8YrnU7m7XtW__W9rzaU90gdC2EXyAS7spntRXIkYU4azb-ij1q2s1MUCDFiyKLzYBLEJf930ulrk3GqGAPqeD2DHwPLraBhFbD7KPW9zjkJ5U0r479xDXK4qHDPVk/s1600/fedora22_28.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh0uCEahXCmTPP0yU8YrnU7m7XtW__W9rzaU90gdC2EXyAS7spntRXIkYU4azb-ij1q2s1MUCDFiyKLzYBLEJf930ulrk3GqGAPqeD2DHwPLraBhFbD7KPW9zjkJ5U0r479xDXK4qHDPVk/s320/fedora22_28.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;El turno del tipo de teclado, elegimos o dejamos por default y damos a siguiente:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgltnmoz3nFg11ifu6idkSwi90TJBnybLTf6yRVlnnOnaIxdTaTYa4syTvAMCZYRMl64ryBlqz4pf1RgZMQcMH7NhIX4k5Q9GAVoHkqmj5wlmYYNUCWyGDlo3AjtTOUSnghBR4DPJ9A8jY/s1600/fedora22_29.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgltnmoz3nFg11ifu6idkSwi90TJBnybLTf6yRVlnnOnaIxdTaTYa4syTvAMCZYRMl64ryBlqz4pf1RgZMQcMH7NhIX4k5Q9GAVoHkqmj5wlmYYNUCWyGDlo3AjtTOUSnghBR4DPJ9A8jY/s320/fedora22_29.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;En este apartado a mi no me gusta dar nunca mi ubicación y simpre lo deshabilito, luego le damos de nuevo a Siguiente:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgm3tXLoObj7GoZZ1LyeCMFld1yTbrkN6Y-Vs-P_3XujfxRDpn9PohPipcLazaprQ0fol8S_b__hCiT46N4O7ehIwocGaF7Ku4kc0wFoXLvAeNGPJWOTOd52ejMiESN82mzvw7wgjIo_1w/s1600/fedora22_30.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgm3tXLoObj7GoZZ1LyeCMFld1yTbrkN6Y-Vs-P_3XujfxRDpn9PohPipcLazaprQ0fol8S_b__hCiT46N4O7ehIwocGaF7Ku4kc0wFoXLvAeNGPJWOTOd52ejMiESN82mzvw7wgjIo_1w/s320/fedora22_30.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Si queremos iniciamos sesión en alguna de estas cuenta, yo le doy a omitir: &lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQR8lLRGKf9dW-VJgYy8-ND57_xg3dW08HA45f9k3bEsoOe68JDQ927eEQtnuCM2Q8tmjuCXoHAKW0sMppPx1SmbEulUlNs5fzmRhSQ0EJq2g-8eQmIf6e6-uvQrdLCLwyC_RJZ0lQM5E/s1600/fedora22_31.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQR8lLRGKf9dW-VJgYy8-ND57_xg3dW08HA45f9k3bEsoOe68JDQ927eEQtnuCM2Q8tmjuCXoHAKW0sMppPx1SmbEulUlNs5fzmRhSQ0EJq2g-8eQmIf6e6-uvQrdLCLwyC_RJZ0lQM5E/s320/fedora22_31.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Clic en Empezar a usar Fedora&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBF2lAks4WlfkZZ6dr9Z8dnhzE1CBBPBj9RIxhSwnNFvDuJrnzjxX7TPH60CYCu_WdNk2bMJuMJ2YpkEIxOWF7QdMJZFMRkbTg5g8KdHVxOn0b24UhEsWCgU3DKazD32cWhTgQoxSDsEE/s1600/fedora22_32.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBF2lAks4WlfkZZ6dr9Z8dnhzE1CBBPBj9RIxhSwnNFvDuJrnzjxX7TPH60CYCu_WdNk2bMJuMJ2YpkEIxOWF7QdMJZFMRkbTg5g8KdHVxOn0b24UhEsWCgU3DKazD32cWhTgQoxSDsEE/s320/fedora22_32.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Acá nos muestra una ayuda o guía de como usar Fedora:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5jeirXnYCIiYW1jqO8tgIJDL45MGoBStt_bxICt9j-VJGE4HsIhVJck8UU8CLA8-7l-xOUHs7FzIqWKxJIpL9_F2JT0OTuNnl0TvMsIbMrUuNB5ijt-39PfYD8OK84KYJQ5XjXuBmq2A/s1600/fedora22_33.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5jeirXnYCIiYW1jqO8tgIJDL45MGoBStt_bxICt9j-VJGE4HsIhVJck8UU8CLA8-7l-xOUHs7FzIqWKxJIpL9_F2JT0OTuNnl0TvMsIbMrUuNB5ijt-39PfYD8OK84KYJQ5XjXuBmq2A/s320/fedora22_33.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Y listo acá esta el escritorio:&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEis9yk3WWzWtHrlfGSMnYZUiufxEL9w5Y3rxrVtnxI3DtiWB8Gsp7N86aOMsAF0Btfz7564LzkkAcs855W-Od-bOhyWxmYk_2UGgMr9TceweBQYiKWumIHrAA7xi3nDcFBMYKlZzJqgLQg/s1600/fedora22_34.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEis9yk3WWzWtHrlfGSMnYZUiufxEL9w5Y3rxrVtnxI3DtiWB8Gsp7N86aOMsAF0Btfz7564LzkkAcs855W-Od-bOhyWxmYk_2UGgMr9TceweBQYiKWumIHrAA7xi3nDcFBMYKlZzJqgLQg/s320/fedora22_34.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Para finalizar quiero repetir que lo instale en virtualbox y por ende el particionado personalizado dista de la realidad de un disco físico completo, por eso lean bien como aclaro en ese punto, otra cosa tengan cuidado con la carpeta home osea si siguen estos pasos y en un futuro por alguna razon deben reinstalar fedora o cualquier distro deberian de hacerlo nuevamente con el particionado personalizado para dejar intacto la carpeta home..., aclarado esto solo me despido y espero que les resulte facil la instalación, saludos amigos </content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/6355110702729480971/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2015/05/como-instalar-fedora-22-2015-release.html#comment-form' title='1 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/6355110702729480971'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/6355110702729480971'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2015/05/como-instalar-fedora-22-2015-release.html' title='Como instalar Fedora 22 2015 (Release Final)'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7RM2n78Gvr-fGNzGA-LkGGPGc6DoEDrAwf56lLYeljvS796AL8qdUDiFGLswZoyzC6NyV_zAKGjNQ2zUlo-kzQJeMSrk_aTfX6q7PC6L88KlsBedITA4eYG0i9NiFRq7TtNKK-0PI7qk/s72-c/fedora22_1.png" height="72" width="72"/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-3694007946841638702</id><published>2015-05-24T16:07:00.002-07:00</published><updated>2015-05-24T16:07:51.722-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="distros"/><category scheme="http://www.blogger.com/atom/ns#" term="Linux"/><title type='text'>Que distribución de Linux utilizar</title><content type='html'>Hola again... ahora intentare guiar un poco a aquellas personas que están empezando o no a utilizar linux en general, más que nada para poder ayudarlos a elegir que ditro utilizar en el día a día, por eso quiero empezar a nombrar un par de puntos o preguntas importantes que debemos hacernos antes:&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Para que lo utilizaremos?: Esta es la pregunta principal pues no es lo miso que seamos expertos en seguridad que diseñadores gráfico o seamos arquitectos, pues para cada cual hay distro muy espécificas, entonces como primera medida debemos caducar esa pregunta y sincerarnos un poco.&lt;/li&gt;
&lt;li&gt;Como nos llevamos con la informática?: Otra pregunta con un interés medio o alto dependiendo del punto de vista de cada uno de ustedes, pues es cierto que cada ves es más sencillo instalar prácticamente cualquier distro pero también es cierto que hay algunas más complejas o que exigen cierto manejo informático, por ende debemos por ejemplo tener dvd o cd vírgenes o en mi opinión personal utilizar virtual box, o pendrives, saber montar imagenes iso a pendrive para que sean booteables y seguimos sumando conocimientos previos que debemos de tener, por eso debemos ya tener estas habilidades aunque sea mínimas.&lt;/li&gt;
&lt;li&gt;Tiempo?: Ustedes diran tiempo?? estoy loco... jeje no aunque un poco si, pero me refiero a que al principio como todo lo que tocamos por primera ves solemos cometer errores que conlleva un cierto tiempo entender porque fallo por ejemplo fallo la instalación o porque no detecta el wifi, o porque no funciona el volumen y un sin número de situaciones que se podrían presentar en distintos contextos de los más variados, solo hay que tener paciencia y saber que con el tiempo y a medida que tengamos más práctica se nos será más fácil solucionar estos inconvenientes.&lt;/li&gt;
&lt;li&gt;Soy nuevo o no?: Otra pregunta clave, pues si no sos nuevo lo normal sería que no tengas inconvenientes en instalar y manejarte dentro de cada distro pero ten en cuenta que la gran mayoria de las distro hacen lo mismo de manera distinta más que nada en el tema de la terminal por ejemplo: en debian para actualizar solo debemos poner:&quot;sudo apt-get update&quot; en cambio en fedora: &quot;sudo yum update&quot; osea hacen lo mismo pero tienen sintaxis diferentes que es necesario aprenderlas con el paso del tiempo. En cambio si sos nuevo nuevo pues es lógico que te parezca un poco diferente porque obvio estás acostumbrado a utilizar windows, donde la estética, permisos por defectos, accesos a carpetas y un infinito etc. son totalmente diferentes en linux y a eso sumado las sintaxis o escritorios diferentes y la cantidad brutal de distros existentes hacen un poco compleja la utilización, la migración o la elección de que distro utilizar, pues este es el objetivo de esta publicación ayudarte a decidir mejor.&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
Ahora quiero poner un ejemplo que me pasa bastante seguido, y es que conozco gente en la facu, o informáticos amigos, o que los conozco por internet y se que uzan alguna distro de linux y les pregunto:&lt;br /&gt;
hey man porque usas ubuntu (solo como ejemplo).? a esta simple pregunta e revivido de las más variadas respuestas como por ejemplo:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Porque si, fue lo primero que descargue y lo deje.&lt;/li&gt;
&lt;li&gt;Un amigo me dijo que era el mejor.&lt;/li&gt;
&lt;li&gt;Lo tienen en la facu.&lt;/li&gt;
&lt;li&gt;Ni idea jeje....&lt;/li&gt;
&lt;li&gt;Porque me preguntas eso??....&lt;/li&gt;
&lt;li&gt;Es lo primero que apareció en google.&lt;/li&gt;
&lt;li&gt;Me lo instalaron en una juntada de software libre y lo deje así&lt;/li&gt;
&lt;/ul&gt;
Aunque también tuve respuestas más correctas o acertadas:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Pasa que necesitaba una distro libiana porque mi pc es vieja.&lt;/li&gt;
&lt;li&gt;Me dedico al diseño gráfico y fue la que mejor encontré para mi trabajo.&lt;/li&gt;
&lt;li&gt;Porque soy programador&lt;/li&gt;
&lt;/ul&gt;
Y bueno como verán hay de todo y para todos los gustos yo personalmente utilizo fedora y el porque lo utilizo es por el simple hecho que me gustan los servidores y tengo clientes a los cuales les doy mantenimiento y tienen redhat o centos, y como fedora es un derivado de redhat los comandos en la terminal es lo mismo y así no me olvido de los comandos para trabajar, y aparte porque es desde mi punto de vista muy maduro y estable.&lt;br /&gt;
&lt;br /&gt;
Esa es mi opinión personal ahora vamos más al grano... para mi están obligados a entrar en&amp;nbsp;&lt;a href=&quot;http://distrowatch.com/index.php?distribution=centos&amp;amp;release=all&amp;amp;month=all&amp;amp;year=all&quot; target=&quot;_blank&quot;&gt;distrowatch&lt;/a&gt; es un sitio que contiene todas las distros ordenadas alfabéticamente con sus respectivas descripciones en la cual aclaran para que sirven cada una, también tienen enlaces directos para descargar las iso, es un sitio exelente, aunque si quieren saber más específicamente de alguna distro en especial deberían de entrar en sus sitios oficiales.&lt;br /&gt;
&lt;br /&gt;
Ahora un poco de links importantes:&lt;br /&gt;
&lt;br /&gt;
Distros en General:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://distrowatch.com/index.php?distribution=centos&amp;amp;release=all&amp;amp;month=all&amp;amp;year=all&quot; target=&quot;_blank&quot;&gt;distrowatch&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
Distros para Diseñadores Gráficos:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://ubuntustudio.org/&quot; target=&quot;_blank&quot;&gt;ubuntustudio&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://spins.fedoraproject.org/design/&quot; target=&quot;_blank&quot;&gt;fedoradesign&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://artistx.org/&quot; target=&quot;_blank&quot;&gt;artistx&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
Arquitectos e Ingenieros:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://caelinux.com/&quot; target=&quot;_blank&quot;&gt;caelinux&lt;/a&gt;&amp;nbsp;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.scientificlinux.org/&quot; target=&quot;_blank&quot;&gt;scientificlinux&lt;/a&gt;&amp;nbsp;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://ceeld.weebly.com/&quot; target=&quot;_blank&quot;&gt;ceeld.weebly&lt;/a&gt;&amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;
Médicos:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.debian.org/devel/debian-med/&quot; target=&quot;_blank&quot;&gt;debian-med&lt;/a&gt;&amp;nbsp;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://sourceforge.net/projects/care2002/&quot; target=&quot;_blank&quot;&gt;care2002&lt;/a&gt;&amp;nbsp;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://openclinic.sourceforge.net/openclinic/index.html&quot; target=&quot;_blank&quot;&gt;openclinic&lt;/a&gt;&amp;nbsp;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://sourceforge.net/projects/odontolinux/&quot; target=&quot;_blank&quot;&gt;odontolinux&lt;/a&gt;&amp;nbsp;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.opensuse.org/Portal:Medical&quot; target=&quot;_blank&quot;&gt;opensuseMedical&lt;/a&gt;&amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;
&amp;nbsp;Seguridad, Hacking:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.parrotsec.org/&quot; target=&quot;_blank&quot;&gt;parrotsec&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.blackarch.org/&quot; target=&quot;_blank&quot;&gt;blackarch&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.matriux.com/index.php?page=home&quot; target=&quot;_blank&quot;&gt;matriux&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.kali.org/&quot; target=&quot;_blank&quot;&gt;kali&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.backbox.org/&quot; target=&quot;_blank&quot;&gt;backbox&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.wifislax.com/&quot; target=&quot;_blank&quot;&gt;wifislax&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://bugtraq-team.com/&quot; target=&quot;_blank&quot;&gt;bugtraq&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.wifiway.org/&quot; target=&quot;_blank&quot;&gt;wifiway&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
Pc con pocos recursos:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://sourceforge.net/projects/mulinux/&quot; target=&quot;_blank&quot;&gt;mulinux&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.damnsmalllinux.org/&quot; target=&quot;_blank&quot;&gt;damnsmalllinux&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://lamppix.tinowagner.com/&quot; target=&quot;_blank&quot;&gt;lamppix&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.xfld.org/&quot; target=&quot;_blank&quot;&gt;xfld&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://xubuntu.org/&quot; target=&quot;_blank&quot;&gt;xubuntu&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://vectorlinux.com/&quot; target=&quot;_blank&quot;&gt;vectorlinux&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.slax.org/&quot; target=&quot;_blank&quot;&gt;slax&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://puppylinux.org/main/Overview%20and%20Getting%20Started.htm&quot; target=&quot;_blank&quot;&gt;puppylinux&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://daxos.org/&quot; target=&quot;_blank&quot;&gt;daxos&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.bodhilinux.com/&quot; target=&quot;_blank&quot;&gt;bodhilinux&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://crunchbang.org/&quot; target=&quot;_blank&quot;&gt;crunchbang&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://minino.galpon.org/es&quot; target=&quot;_blank&quot;&gt;minino.galpon&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.whonix.org/wiki/Main_Page&quot; target=&quot;_blank&quot;&gt;whonix&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
Anonimato en Internet o muy seguras: &lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://tails.boum.org/&quot; target=&quot;_blank&quot;&gt;tails&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.mandalka.name/privatix/&quot; target=&quot;_blank&quot;&gt;privatix&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.ipredia.org/&quot; target=&quot;_blank&quot;&gt;ipredia&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://dee.su/liberte&quot; target=&quot;_blank&quot;&gt;liberte&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
Obviamente son tantas que no terminaría nunca de listar pero bueno es cuestión de preguntarle a google para encontrar alguna otra, pues estas que les e listados algunas no son tan conocidas como, debian, ubuntu, fedora, opensuse, etc. Obvio que esto es solo como para que sepan elegir y que puedan instalar, después otro tema es aprender en profundidad como funciona cada distro en particular, pues eso depende de la que elijan, eso ya seria buscar en internet videostutoriales o blogs que expliquen como funciona linux y aprendan a usar la terminal que es un factor primordial, o tal ves escriba yo en un futuro un poco sobra las bases en general.&lt;br /&gt;
&lt;br /&gt;
Bueno hasta aquí llego espero que les sirva y cualquier cosa no duden en consultarme, saludos</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/3694007946841638702/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2015/05/que-distribucion-de-linux-utilizar.html#comment-form' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/3694007946841638702'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/3694007946841638702'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2015/05/que-distribucion-de-linux-utilizar.html' title='Que distribución de Linux utilizar'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-4224481044729062233</id><published>2015-05-24T14:26:00.001-07:00</published><updated>2015-05-24T14:30:54.937-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="llamadas anónimas"/><category scheme="http://www.blogger.com/atom/ns#" term="RedPhone"/><category scheme="http://www.blogger.com/atom/ns#" term="SMS cifrado"/><category scheme="http://www.blogger.com/atom/ns#" term="Textsecure"/><title type='text'>Mensajes y llamadas vosIP de celulares cifradas</title><content type='html'>Hola de nuevo como andan??&lt;br /&gt;
&lt;br /&gt;
Bueno les quiero contar o más que nada recomendar 2 aplicaciones para celulares que utilizo desde hace un poco más de un año...&lt;br /&gt;
&lt;br /&gt;
bueno son de la empresa &lt;a href=&quot;https://whispersystems.org/&quot; target=&quot;_blank&quot;&gt;open whisper systems&lt;/a&gt;, voy a explicar en que consisten,&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://play.google.com/store/apps/details?id=org.thoughtcrime.securesms&quot; target=&quot;_blank&quot;&gt;TextSecure&lt;/a&gt;: Es una aplicación que permite cifrar los mensajes sms de nuestro celular o sea que podemos poner un password para ver nuestros mensajes y darle mayor privacidad a nuestras cosas, es muy simple de utilizar y lo más llamativo es que si conoces a alguna otra persona que lo tenga instalado el envío del mensaje se hace cifrado extremo a extremo y se puede enviar incluso si no tenemos crédito a través del wifi, se daran cuenta porque aparece un candado azul..., lo que no securiza es el envio de mensajes a través de la conexión de datos de nuestra propia compañía. Permite también hacer backups en texto claro o cifrado de los mensajes y restaurarlo cuando queramos, obvio que por ende tiene la opción de importar...&lt;br /&gt;
&lt;br /&gt;
Cabe aclarar que cada ves que cerremos la aplicación deberemos de ingresar el password que seleccionamos durante la instalación.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://play.google.com/store/apps/details?id=org.thoughtcrime.redphone&quot; target=&quot;_blank&quot;&gt;RedPhone&lt;/a&gt;: Esta permite hacer llamadas sobre vosIP casi igual que whatsapp o cualquier otra app para realizar llamadas pues tiene la características de cifrar dichas comunicaciones utilizando TLS y no con PGP como muchos dicen por allí...&amp;nbsp; y funciona así.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjncIR78GIUyeTWEHV82PMQDnoF4Jw64n4Bd1_njuZsPf3QEF3LGYPB7jSAJDMVcZjDM3IJNe5OWgjtoTQpF0_k1R-stpIsnQjnyL9YSgoncvnD4IOdsz2-ay1AVvBF4ZWJdk0RrSORNAI/s1600/redphone_arquitectura.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;181&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjncIR78GIUyeTWEHV82PMQDnoF4Jw64n4Bd1_njuZsPf3QEF3LGYPB7jSAJDMVcZjDM3IJNe5OWgjtoTQpF0_k1R-stpIsnQjnyL9YSgoncvnD4IOdsz2-ay1AVvBF4ZWJdk0RrSORNAI/s320/redphone_arquitectura.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
1. El &lt;b&gt;inicializador&lt;/b&gt;, que es el teléfono nuestro con el RedPhone instalado, conecta con el &lt;b&gt;servidor master &lt;/b&gt;y señaliza que quiere establecer una llamada con el responder/receptor. El &lt;b&gt;servidor master&lt;/b&gt; será el encargado del proceso de señalización y cifrado de la llamada.&lt;br /&gt;
2. El &lt;b&gt;responder/receptor&lt;/b&gt; recibe una llamada cifrada y conecta con el &lt;b&gt;servidor master&lt;/b&gt; que indica que ha recibido la señal de la llamada correctamente.&lt;br /&gt;
3.Si el &lt;b&gt;responder/receptor &lt;/b&gt;elige contestar la llamada, se reenvía la comunicación al &lt;b&gt;servidor relay&lt;/b&gt; más cercano (NAT traversal).&lt;br /&gt;
&lt;br /&gt;
Un poco más de info es que la llamada se cifra usando &lt;a href=&quot;http://tools.ietf.org/html/rfc3711&quot; target=&quot;_blank&quot;&gt;SRTP&lt;/a&gt;. La negociación de la clave usa &lt;a href=&quot;http://tools.ietf.org/html/rfc6189&quot; target=&quot;_blank&quot;&gt;ZRTP&lt;/a&gt;.
Osea que más no se puede pedir...&lt;br /&gt;
&lt;br /&gt;
Por último cabe aclarar que estas app están disponibles solo en google play y appstor...., bueno espero que las utilicen y si tienen dudas o lo que sea solo escriban e intentare caducar sus dudas o inconvenientes, saludos...</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/4224481044729062233/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2015/05/mensajes-y-llamadas-vosip-de-celulares.html#comment-form' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/4224481044729062233'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/4224481044729062233'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2015/05/mensajes-y-llamadas-vosip-de-celulares.html' title='Mensajes y llamadas vosIP de celulares cifradas'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjncIR78GIUyeTWEHV82PMQDnoF4Jw64n4Bd1_njuZsPf3QEF3LGYPB7jSAJDMVcZjDM3IJNe5OWgjtoTQpF0_k1R-stpIsnQjnyL9YSgoncvnD4IOdsz2-ay1AVvBF4ZWJdk0RrSORNAI/s72-c/redphone_arquitectura.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-4057327813076077005</id><published>2015-05-24T13:11:00.003-07:00</published><updated>2015-05-24T13:12:26.082-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="remoto"/><category scheme="http://www.blogger.com/atom/ns#" term="teamviewer"/><title type='text'>Password en ordenadores de en nuestra cuenta de TeamViewer</title><content type='html'>&lt;br /&gt;
Bueno siempre hay situaciones en la que es necesario proteger o agregar una capa más de seguridad a algún ordenador remoto de nuestro teamviewer porque es nuestro o porque es de algún cliente importante o porque no queremos pedir siempre el password del ID porque es complejo o para evitar que otro chismoso se conecte en remoto y nos robe al cliente jeje crean o no suele pasar...&lt;br /&gt;
&lt;br /&gt;
Pero bueno vamos al grano...&lt;br /&gt;
&lt;br /&gt;
Primero que nada tenemos que tener una cuenta en TeamViewer que es algo que queda fuera de esta publicación, asique iniciamos la sesión para seguir&lt;br /&gt;
&lt;br /&gt;
Segundo en la pc que queremos poner un password y hacemos clic en:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi3jurwpeSt51lytY_I0PlN5iXUJiUByngOSfslJB_ORow_kbB-bjnhuOwz2VgYZr9iIVmP1wExrVHT1F_Fs7kxqjouOIKZe0vXVw8H0lqmuJ4qaXU6p6tCXkGWCepGc1z7ish1e9olR2k/s1600/passwor_teamviewer1.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;182&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi3jurwpeSt51lytY_I0PlN5iXUJiUByngOSfslJB_ORow_kbB-bjnhuOwz2VgYZr9iIVmP1wExrVHT1F_Fs7kxqjouOIKZe0vXVw8H0lqmuJ4qaXU6p6tCXkGWCepGc1z7ish1e9olR2k/s320/passwor_teamviewer1.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Luego hacemos clic en siguiente &lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBPYbX_t9-7SShK8HCbxTtQkzfpvXLZrI9izxnrjL-iaVS61NwKPSEkM8ID7nSS-A79NO_kfVZYV20e9g4O_qjq12oSg5ISY9_-x8g6ajLigLFJeVI-oVyv6tHY6ghQgr2BN8tDYk_xRU/s1600/passwor_teamviewer2.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;256&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBPYbX_t9-7SShK8HCbxTtQkzfpvXLZrI9izxnrjL-iaVS61NwKPSEkM8ID7nSS-A79NO_kfVZYV20e9g4O_qjq12oSg5ISY9_-x8g6ajLigLFJeVI-oVyv6tHY6ghQgr2BN8tDYk_xRU/s320/passwor_teamviewer2.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Ponemos el password y lo debemos repetir como es normal y hacemos clic en finalizar &lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhOzseSha5YmnEjUAydSIzdRErUMRmFEVIGl5vL7nLBsSsvFX_kLQM1Vloyhb5ytXaiojlK_vLWBC-xIMzLOhOg8ZtTHJ98HsBo58-BD3wEv8Q4DYno47R-8jUpBtqMY-aw0aLZMvx7uxA/s1600/passwor_teamviewer3.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;256&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhOzseSha5YmnEjUAydSIzdRErUMRmFEVIGl5vL7nLBsSsvFX_kLQM1Vloyhb5ytXaiojlK_vLWBC-xIMzLOhOg8ZtTHJ98HsBo58-BD3wEv8Q4DYno47R-8jUpBtqMY-aw0aLZMvx7uxA/s320/passwor_teamviewer3.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
Y listo, espero que le sea útil, yo lo utilizo siempre en mis pc y en los clientes más importantes por cuestiones obvias.... sin más los dejo cualquier cosa consulten &lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/4057327813076077005/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2015/05/password-en-ordenadores-de-en-nuestra.html#comment-form' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/4057327813076077005'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/4057327813076077005'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2015/05/password-en-ordenadores-de-en-nuestra.html' title='Password en ordenadores de en nuestra cuenta de TeamViewer'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi3jurwpeSt51lytY_I0PlN5iXUJiUByngOSfslJB_ORow_kbB-bjnhuOwz2VgYZr9iIVmP1wExrVHT1F_Fs7kxqjouOIKZe0vXVw8H0lqmuJ4qaXU6p6tCXkGWCepGc1z7ish1e9olR2k/s72-c/passwor_teamviewer1.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-673439428261740931</id><published>2014-07-18T18:34:00.000-07:00</published><updated>2014-07-18T18:34:11.753-07:00</updated><title type='text'>Encuesta sobre lo que buscamos en un soporte informático en argentina 2014</title><content type='html'>&lt;br /&gt;
&lt;br /&gt;
Bueno amigos acá les dejo un link con una encuesta para saber que buscan las personas o que necesitan en el momento de buscar a alguien para realizar un soporte informático por favor contesten¡¡ saludos&lt;br /&gt;
&lt;a href=&quot;https://es.surveymonkey.com/s/9Y6BJGC&quot; target=&quot;_blank&quot;&gt;https://es.surveymonkey.com/s/9Y6BJGC&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/673439428261740931/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2014/07/encuesta-sobre-lo-que-buscamos-en-un.html#comment-form' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/673439428261740931'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/673439428261740931'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2014/07/encuesta-sobre-lo-que-buscamos-en-un.html' title='Encuesta sobre lo que buscamos en un soporte informático en argentina 2014'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-2873605721574771773</id><published>2014-06-17T09:38:00.000-07:00</published><updated>2014-06-17T09:38:40.684-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="teamviewer"/><category scheme="http://www.blogger.com/atom/ns#" term="VPN"/><title type='text'>Como instalar TeamViewer Para acceso con VPN 2014</title><content type='html'>Hola amigos hoy vengo a mostrarles los pasos para poder instalar nuestro famoso TeamViewer pero con la opción de acceso remoto con VPN, para los que no sepan que es VPN:&lt;br /&gt;
&lt;br /&gt;
VPN= Virtual Private Network, en criollo seria permitir conectarse a una red LAN a través de un canal inseguro, pero con la conexión a dicha red de modo cifrada para evitar que intrusos puedan mirar, replicar, modificar, toda nuestra información que viaja en la red.&lt;br /&gt;
&lt;br /&gt;
Definición Técnica: Una VPN consiste en 2 o más computadoras y un Túnel que se crea haciendo uso de una red pública o privada, para proteger la privacidad de todo lo que se transmite en este túnel va cifrado con distintos métodos de criptografía que varían dependiendo del software utilizado e incluso del hardware adquirido para este tipo de conexión.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;Obviamente son definiciones bastantes básicas¡¡ Ahora entramos en la Página Oficial de TeamViewer &lt;a href=&quot;http://www.teamviewer.com/es/index.aspx&quot; target=&quot;_blank&quot;&gt;acá&lt;/a&gt;&lt;br /&gt;
Lo Descargamos y si instalamos todo por defecto veremos lo siguiente:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjyKfhyphenhyphenalDH6svu9zK7ldTobrVJyncDOk5jc8RHUjtn8-3ye87arc-PJZ0HqUBKvj7rSY5_qyWQEw1VRY6o0FRWPi6y0tpgiNAU8WnKDGaDDk86-FXul-3uKUQtqYWAiijxq1rdUQVNviM/s1600/teamviewer-1.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjyKfhyphenhyphenalDH6svu9zK7ldTobrVJyncDOk5jc8RHUjtn8-3ye87arc-PJZ0HqUBKvj7rSY5_qyWQEw1VRY6o0FRWPi6y0tpgiNAU8WnKDGaDDk86-FXul-3uKUQtqYWAiijxq1rdUQVNviM/s1600/teamviewer-1.png&quot; height=&quot;197&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;Como vemos no aparece nada de VPN, lo que debemos hacer es instalarlo de la siguiente manera:&lt;br /&gt;
&lt;br /&gt;
Primero vamos en donde lo descargamos y lo ejecutamos como administrador:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj1WyyZvVaHiT-CB74TbXnp6uYpTszyi6JprKuwBQguzKKIU0-ZeXgJ_t0sNpAZerpAnUqXT3yrzFCQl-fwsxjAsrKneecgCRz1_dAiRPsHz3afhfxKTKOswJreit2Az8IUpBtQIqKDTsY/s1600/teamviewer-2.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj1WyyZvVaHiT-CB74TbXnp6uYpTszyi6JprKuwBQguzKKIU0-ZeXgJ_t0sNpAZerpAnUqXT3yrzFCQl-fwsxjAsrKneecgCRz1_dAiRPsHz3afhfxKTKOswJreit2Az8IUpBtQIqKDTsY/s1600/teamviewer-2.png&quot; height=&quot;164&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;Luego&amp;nbsp; tildamos las mismas opciones que salen en la imagen:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiNAdaRkMPbHsAyOMh6BHVHIBEjXYfOltGTbP03oVI5XD2im3JX7tcULf_A5tJ7qZTWlAcPBW5p51OdCR3a5GFjHw9fy5aWfN60bkfAzUJDLsIhOpCdjFhooakkrP9_7DNcLqbcHuAZarE/s1600/teamviewer-3.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiNAdaRkMPbHsAyOMh6BHVHIBEjXYfOltGTbP03oVI5XD2im3JX7tcULf_A5tJ7qZTWlAcPBW5p51OdCR3a5GFjHw9fy5aWfN60bkfAzUJDLsIhOpCdjFhooakkrP9_7DNcLqbcHuAZarE/s1600/teamviewer-3.png&quot; height=&quot;164&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Después le damos en Aceptar - Siguiente y veremos...&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjnFh4af4QGD_Izd9tXt71TWTntlyZ0jzGD1xugN4xiJi03xkTnYptVyBY4oPSco6jl-0RfZxWDwDy_sy0LZoSnct9m6G4UVI6w95S0kmZsHpocgE71Ff57t9Z2XyK0gfL-u6IsAeFzNaQ/s1600/teamviewer-4.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjnFh4af4QGD_Izd9tXt71TWTntlyZ0jzGD1xugN4xiJi03xkTnYptVyBY4oPSco6jl-0RfZxWDwDy_sy0LZoSnct9m6G4UVI6w95S0kmZsHpocgE71Ff57t9Z2XyK0gfL-u6IsAeFzNaQ/s1600/teamviewer-4.png&quot; height=&quot;164&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Aparece Utilizar TeamViewer VPN¡¡¡¡.Yo personalmente tildo todo porque en ocasiones son también necesarios las otras opciones, damos en Terminar...&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj2DH5nIpy1F1ZC0Q6DdbuY_8JHteY0qgC8XN8Q2xeH9DZ_d5LfmX7NZDhi-fAoxl8Cwb9-fTBlr1RAs434K549I_uTdAb6Vn6dlUn8HtCqm1Z7MaTltKUBz940GuQALxyEVjqsK1KPYWE/s1600/teamviewer-5.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj2DH5nIpy1F1ZC0Q6DdbuY_8JHteY0qgC8XN8Q2xeH9DZ_d5LfmX7NZDhi-fAoxl8Cwb9-fTBlr1RAs434K549I_uTdAb6Vn6dlUn8HtCqm1Z7MaTltKUBz940GuQALxyEVjqsK1KPYWE/s1600/teamviewer-5.png&quot; height=&quot;164&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Empieza la instalación, una ves terminada veremos lo siguiente:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFO2uji9kSHNGUpzhY9mr-Cv6FqFfl2z3UowL1IWHJpEsr0tpXzKUc_G9WHmAEp3A7kf7Y_bA-tjgw6nmTXRWfl-_s_t7-GPLw8Mwqb0sd5DYGmLE1np8z8Am9CFmMCArTEThQnAwuUvo/s1600/teamviewer-6.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFO2uji9kSHNGUpzhY9mr-Cv6FqFfl2z3UowL1IWHJpEsr0tpXzKUc_G9WHmAEp3A7kf7Y_bA-tjgw6nmTXRWfl-_s_t7-GPLw8Mwqb0sd5DYGmLE1np8z8Am9CFmMCArTEThQnAwuUvo/s1600/teamviewer-6.png&quot; height=&quot;164&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Acá podemos visualizar que nos muestra la opción de utilizar VPN :)&lt;br /&gt;
&lt;br /&gt;
Luego vamos a configurar para poner una contraseña más fuerte, como ven la imagen es muy sencillo obtener ese password...&lt;br /&gt;
&lt;br /&gt;
Vamos a Extras luego a Opciones...&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitcT-zKgSpYSwQOy53SXmr0rpvwxDn7vnKOIxQrXHZnbKeLLYSXdgOphME3qogTu-PY5Y5iFN5Ale311fGVNXmOTZlmMwX7IvQ8ggwLlqhBEfTR3J1KWt-f9OcjIrxRSEg3q-cvgrKQho/s1600/teamviewer-7.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitcT-zKgSpYSwQOy53SXmr0rpvwxDn7vnKOIxQrXHZnbKeLLYSXdgOphME3qogTu-PY5Y5iFN5Ale311fGVNXmOTZlmMwX7IvQ8ggwLlqhBEfTR3J1KWt-f9OcjIrxRSEg3q-cvgrKQho/s1600/teamviewer-7.png&quot; height=&quot;164&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Seleccionamos la pestaña de Seguridad, luego nos vamos al apartado Contraseña aleatoria y en Seguridad de la contraseña elegimos Muy Segura (10 caracteres)&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7DW70F7MKgroIM6Pd2LuXMVgW9S87-8nCZnVm2-n8ZKaV5CIbEo2D8bPRPMUhJZH3OkaS3Z1PkfJ-Mew0lxYv-6gcf9oBTfugDllEkGACX4mXOf6SeriFKcjhrfeW72MeW3hZSoTZ9Fg/s1600/teamviewer-8.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7DW70F7MKgroIM6Pd2LuXMVgW9S87-8nCZnVm2-n8ZKaV5CIbEo2D8bPRPMUhJZH3OkaS3Z1PkfJ-Mew0lxYv-6gcf9oBTfugDllEkGACX4mXOf6SeriFKcjhrfeW72MeW3hZSoTZ9Fg/s1600/teamviewer-8.png&quot; height=&quot;164&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Luego damos en Aceptar...&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhL47m76wDOXlf36hQBHRQTqQ-UH5v9T3NxQDZiQc5pCJBqagWiiZBAgXguvPuAehakNh4unavkpF8U31xplhlD4O4AhpaSk01_97UpIYJ7htozkHsOGb-zLlpeCq8PF6ejSPbZEjNP_yg/s1600/teamviewer-9.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhL47m76wDOXlf36hQBHRQTqQ-UH5v9T3NxQDZiQc5pCJBqagWiiZBAgXguvPuAehakNh4unavkpF8U31xplhlD4O4AhpaSk01_97UpIYJ7htozkHsOGb-zLlpeCq8PF6ejSPbZEjNP_yg/s1600/teamviewer-9.png&quot; height=&quot;164&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Y como podemos observar aparece una contraseña de 10 caracteres bastante más segura :)&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgy4SSUcVRuhVIfJgdh1JvsDLLAxUA4PrfwLEqCsJNvjzfKhBpvJbfLkraWPrX8TPkEh8-c1YR3zvihK_a2B11BEpBvZiYaP1ZkiLAjpGihvDVlcBlSUpDvIhGYVvA_l5GglQfc9-xJI4E/s1600/teamviewer-10.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgy4SSUcVRuhVIfJgdh1JvsDLLAxUA4PrfwLEqCsJNvjzfKhBpvJbfLkraWPrX8TPkEh8-c1YR3zvihK_a2B11BEpBvZiYaP1ZkiLAjpGihvDVlcBlSUpDvIhGYVvA_l5GglQfc9-xJI4E/s1600/teamviewer-10.png&quot; height=&quot;164&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
Un poco de Teoría sobre como utiliza o implementa TeamViewer la VPN:&lt;br /&gt;
&lt;br /&gt;&lt;u&gt;&lt;b&gt;Codificado &lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;TeamViewer funciona con codificado completo basándose en RSA Public-/Private Key Exchange y AES (256 Bit) Session Encoding. Esta técnica se aplica también en https/SSL y ofrece una seguridad integral según los estándares actuales. Puesto que la Private Key se queda en todo momento en el ordenador del cliente, este procedimiento garantiza técnicamente que el ordenador interconectado a Internet no pueda descifrar el flujo de datos; lo mismo también es válido para los propios servidores de TeamViewer.  &lt;br /&gt; &lt;br /&gt;&lt;u&gt;&lt;b&gt;Seguridad de acceso &lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;Aparte del número ID del asociado generado automáticamente, TeamViewer crea una contraseña dinámica que se cambia sola en las opciones estándares con cada reinicio del programa y garantiza de tal manera una seguridad adicional para el acceso no autorizado a éste sistema.&lt;br /&gt; Otras funciones importantes, como la transferencia de archivos, exigen una confirmación manual por parte del usuario.&lt;br /&gt; Por lo general no es posible controlar un ordenador de forma inadvertida, puesto que el usuario del ordenador remoto debe estar informado del acceso por motivos de la protección de datos. &lt;br /&gt; &lt;br /&gt; &lt;u&gt;&lt;b&gt;Firma de código &lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;Para ofrecer aún más seguridad: Todos nuestros programas se codifican adicionalmente a través de VeriSign Code Signing. Así la TeamViewer GmbH siempre es absolutamente fiable e identificable.&lt;br /&gt; ¡Incluso las herramientas de creación propia &lt;a href=&quot;http://teamviewer.com/es/download/customdesign.aspx&quot;&gt; QuickSupport Custom Design&lt;/a&gt; se codifican dinámicamente en el momento de su creación! &lt;br /&gt; &lt;br /&gt; &lt;u&gt;&lt;b&gt;Autenticación de dos factores&lt;/b&gt;&lt;/u&gt; &lt;br /&gt;&lt;br /&gt;TeamViewer ayuda a las empresas a cumplir con los requisitos de las normas de HIPAA y PCI. La autenticación de dos factores proporciona una capa adicional de seguridad para evitar el acceso no autorizado a las cuentas de TeamViewer. Junto con el control de acceso, TeamViewer le permite preparar las normas de HIPAA y PCI a través de una lista blanca. Con la autenticación de dos factores, aparte del nombre de usuario y de la contraseña se necesita también un código generado en un dispositivo móvil para poder iniciar sesión en una cuenta de TeamViewer. Este código se genera mediante un algoritmo para contraseñas de un solo uso basadas en la hora actual (TOTP). El código TOTP está protegido por SRP y, por tanto, está a salvo de los ataques de intermediario.&lt;br /&gt;
&lt;br /&gt;
Esta explicación la saque del mismo sitio oficial: &lt;a href=&quot;http://www.teamviewer.com/es/products/security.aspx&quot; target=&quot;_blank&quot;&gt;acá&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
En definitiva nada es perfecto y existen parámetros de la criptografía que se podrían mejorar pero para ser utilizado gratuitamente está bastante bien, bueno hasta aquí llego este tutorial y espero les sea de utilidad para realizar soporte en remoto y con mayor protección, nos leemos...</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/2873605721574771773/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2014/06/como-instalar-teamviewer-para-acceso.html#comment-form' title='3 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/2873605721574771773'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/2873605721574771773'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2014/06/como-instalar-teamviewer-para-acceso.html' title='Como instalar TeamViewer Para acceso con VPN 2014'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjyKfhyphenhyphenalDH6svu9zK7ldTobrVJyncDOk5jc8RHUjtn8-3ye87arc-PJZ0HqUBKvj7rSY5_qyWQEw1VRY6o0FRWPi6y0tpgiNAU8WnKDGaDDk86-FXul-3uKUQtqYWAiijxq1rdUQVNviM/s72-c/teamviewer-1.png" height="72" width="72"/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-6297709021974210622</id><published>2014-06-13T12:19:00.000-07:00</published><updated>2014-06-16T10:46:35.627-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="actualizar"/><category scheme="http://www.blogger.com/atom/ns#" term="kali"/><title type='text'>que hacer despues de instalar kali linux 1.0.7 2014</title><content type='html'>&lt;div style=&quot;text-align: justify;&quot;&gt;
Hola amigos acá de nuevo con los que les prometí en mi post anterior, para no perder tiempo pasamos derecho a la explicación de lo que principalmente debemos instalar en kali.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Como siempre lo primero abrir nuestra terminal&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjjV_FdNfYvco8CT1VlF_Dhdkqci5nU-L1DUxDpq3tABgm8a34H7duPn-P6_XKpxxaI-Cjo-BYEjJ-mcyG5V-imL3OvOQI6BK0PjzWx8S59VkvzPubmNoNGkWhlXGmEvNR426Gx4DFRHdY/s1600/kali+2014-a.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjjV_FdNfYvco8CT1VlF_Dhdkqci5nU-L1DUxDpq3tABgm8a34H7duPn-P6_XKpxxaI-Cjo-BYEjJ-mcyG5V-imL3OvOQI6BK0PjzWx8S59VkvzPubmNoNGkWhlXGmEvNR426Gx4DFRHdY/s1600/kali+2014-a.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&amp;nbsp;Para luego poder mirar los repositorios&lt;/div&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 633px;&quot; readonly=&quot;readonly&quot;&gt;nano /etc/apt/sources.list&lt;/textarea&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;
Luego vemos algo así:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi9GxA1olk8C8O1hRyLq9r096cIiaIvdOE2AAywAubYGC__xoysV9mrjiIbc3xo2804vxS8SOnVPysVpqeLblzZ0vJnYM5Y_ne8xwRU6UU_mtccAjHLAEuqdvdcC7wasaOQfW6mp19CVP8/s1600/kali+2014-b.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi9GxA1olk8C8O1hRyLq9r096cIiaIvdOE2AAywAubYGC__xoysV9mrjiIbc3xo2804vxS8SOnVPysVpqeLblzZ0vJnYM5Y_ne8xwRU6UU_mtccAjHLAEuqdvdcC7wasaOQfW6mp19CVP8/s1600/kali+2014-b.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;
Cabe aclarar que no hace falta modificar los repositorios de esta versión pues ya está configurado como debería de ser pero por las dudas (Obviamente es una configuración que seguramente al pasar el tiempo y necesitar más software posiblemente debamos modificar u agregar más repositorios)¡¡¡&lt;br /&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; rows=&quot;3&quot; style=&quot;height: 48px; width: 649px;&quot; readonly=&quot;readonly&quot;&gt;deb http://http.kali.org/kali kali main contrib non-freedeb deb http://security.kali.org/kali-security kali/updates main contrib non-free &lt;/textarea&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;
Guardamos los cambios y continuamos...&lt;br /&gt;
&lt;br /&gt;
Ahora el paso siguiente sería actualizar todo con los cambios producidos en el repositorio&lt;br /&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 655px;&quot; readonly=&quot;readonly&quot;&gt;apt-get update &amp;&amp; apt-get upgrade &amp;&amp; msfupdate&lt;/textarea&gt;
&lt;br /&gt;
&lt;br /&gt;
Este paso anterior se demorará más o menos tiempo dependiendo de nuestra conexión a internet, en mi caso llevó una hora y media, por ende hay que llenarse de paciencia, (msfupdate es para que actualice también METASPLOIT) :)&lt;br /&gt;
&lt;br /&gt;
Si estamos en VirtualBox es importante instalar el Guest additions:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgEOVYIgPkmgJZ4_8ApgomlP2tKnPKVU8utp8Z0dmkd9dvVz0YqdQclQosZ1JBwj-wmV4G6wOyntXvGxzPmWnGm6cuvZ-8tM1wnRzCX92oM3nuDeMJazcNxn1fiVRrGkKRxdqZEZwL1ZKM/s1600/kali+2014-g.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgEOVYIgPkmgJZ4_8ApgomlP2tKnPKVU8utp8Z0dmkd9dvVz0YqdQclQosZ1JBwj-wmV4G6wOyntXvGxzPmWnGm6cuvZ-8tM1wnRzCX92oM3nuDeMJazcNxn1fiVRrGkKRxdqZEZwL1ZKM/s1600/kali+2014-g.png&quot; height=&quot;179&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Luego cancelamos la ejecución automática:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjp7Y3pUFkqBij4fAX7q59g9mqciyVxtx10kEf6NoHTenPiJik-Gx2rdbZL5riDWZ1jAFBc2SSU7vtY18mam96kPzyx6UZSOdly9D4rlKvOeUhU7VBxDkKFiLiJKQ8VYa-7n_801qQbF5g/s1600/kali+2014-h.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjp7Y3pUFkqBij4fAX7q59g9mqciyVxtx10kEf6NoHTenPiJik-Gx2rdbZL5riDWZ1jAFBc2SSU7vtY18mam96kPzyx6UZSOdly9D4rlKvOeUhU7VBxDkKFiLiJKQ8VYa-7n_801qQbF5g/s1600/kali+2014-h.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Seguimos abrimos la terminal y:&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; rows=&quot;3&quot; style=&quot;height: 80px; width: 661px;&quot; readonly=&quot;readonly&quot;&gt;cp /media/cdrom0/VBoxLinuxAdditions.run /root/Desktop
chmod 755 /root/Desktop/VBoxLinuxAdditions.run
cd /root/Desktop/
./VBoxLinuxAdditions.run&lt;/textarea&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;
Después del último comando debemos de reiniciar nuestro sistema para que tome efecto los cambios.&lt;br /&gt;
&lt;br /&gt;
Sigamos....&lt;br /&gt;
Ahora actualizaremos java, para ver la versión que actualmente tenemos en nuestro sistema tipiamos en la termina:&lt;br /&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 655px;&quot; readonly=&quot;readonly&quot;&gt;java -version&lt;/textarea&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjcKPq_07xDUlsJa9oa7RDSoQAsIQB6evjrE0zmono8bMv-mu5KGqY2FER1W7kQBky2fL_p1T4MuUCRU3C2sn8Tc06lYpwkZsIVKr40kfmNIWIaEGGW2xw94FY83YPKQ3_fZwY00zbTFUE/s1600/kali+2014-d.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjcKPq_07xDUlsJa9oa7RDSoQAsIQB6evjrE0zmono8bMv-mu5KGqY2FER1W7kQBky2fL_p1T4MuUCRU3C2sn8Tc06lYpwkZsIVKr40kfmNIWIaEGGW2xw94FY83YPKQ3_fZwY00zbTFUE/s1600/kali+2014-d.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;
Nos indica que tenemos la versión 1.6.0_31, para actualizar descargamos desde el sitio oficial de java en el cual podemos elegir la versión 32 o 64 dependiendo de nuestra arquitectura.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html&quot;&gt;http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Luego nos dirigimos a la carpeta en donde descargamos el archivo correspondiente para luego seguir con el proceso de la instalación:
&lt;br /&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; rows=&quot;3&quot; style=&quot;height: 66px; width: 654px;&quot; readonly=&quot;readonly&quot;&gt;tar -xvzf /root/jdk-8u05-linux-i586.tar.gz
mv jdk1.8.0_05 /opt
cd /opt/jdk1.8.0_05
&lt;/textarea&gt;
&lt;br /&gt;
&lt;br /&gt;
Luego pasaremos a registrar dicha versión para luego utilizarla por defecto:&lt;br /&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; rows=&quot;3&quot; style=&quot;height: 129px; width: 678px;&quot; readonly=&quot;readonly&quot;&gt;update-alternatives --install /usr/bin/java java /opt/jdk1.8.0_05/bin/java 1
 update-alternatives --install /usr/bin/javac javac /opt/jdk1.8.0_05/bin/javac 1
 update-alternatives --install /usr/lib/mozilla/plugins/libjavaplugin.so mozilla-javaplugin.so /opt/jdk1.8.0_05/jre/lib/i386/libnpjp2.so 1
 update-alternatives --set java /opt/jdk1.8.0_05/bin/java
 update-alternatives --set javac /opt/jdk1.8.0_05/bin/javac
 update-alternatives --set mozilla-javaplugin.so /opt/jdk1.8.0_05/jre/lib/i386/libnpjp&lt;/textarea&gt;
&lt;br /&gt;
&lt;br /&gt;
Si tu sistema es 64:&lt;br /&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; rows=&quot;3&quot; style=&quot;height: 238px; width: 681px;&quot; readonly=&quot;readonly&quot;&gt; tar -xzvf /root/jdk-8u05-linux-x64.tar.gz

mv jdk1.8.0_05 /opt
cd /opt/jdk1.8.0_05


 update-alternatives --install /usr/bin/java java /opt/jdk1.8.0_05/bin/java 1
 update-alternatives --install /usr/bin/javac javac /opt/jdk1.8.0_05/bin/javac 1
 update-alternatives --install /usr/lib/mozilla/plugins/libjavaplugin.so mozilla-javaplugin.so /opt/jdk1.8.0_05/jre/lib/amd64/libnpjp2.so 1
 update-alternatives --set java /opt/jdk1.8.0_05/bin/java
 update-alternatives --set javac /opt/jdk1.8.0_05/bin/javac
 update-alternatives --set mozilla-javaplugin.so /opt/jdk1.8.0_05/jre/lib/amd64/libnpjp2.so
 &lt;/textarea&gt;&lt;br /&gt;
&lt;br /&gt;
Ahora controlamos que nuestra versión esté actualizada:&lt;br /&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 655px;&quot; readonly=&quot;readonly&quot;&gt;java -version &lt;/textarea&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjyiAO3gUjvcsrJduPscHXt-8wkTnm3i6QijAl9KWfacId8f8Fp9hpeRhaIXMbtap07mKQs5a50ATvvT6nVzzmtGMB11RltA616mawlLBtAbHQVgsMJFy2YZDrUBiu-5JzL-_1SGA__TWA/s1600/kali+2014-e.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjyiAO3gUjvcsrJduPscHXt-8wkTnm3i6QijAl9KWfacId8f8Fp9hpeRhaIXMbtap07mKQs5a50ATvvT6nVzzmtGMB11RltA616mawlLBtAbHQVgsMJFy2YZDrUBiu-5JzL-_1SGA__TWA/s1600/kali+2014-e.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;
Como vemos ya esta actualizada a la versión &quot;1.8.0_05&quot;&lt;br /&gt;
&lt;br /&gt;
Instalar Flash Player:&lt;br /&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 655px;&quot; readonly=&quot;readonly&quot;&gt;sudo apt-get install flashplugin-nonfree &lt;/textarea&gt;
&lt;br /&gt;
&lt;br /&gt;
Seguimos con el Audio:&lt;br /&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 655px;&quot; readonly=&quot;readonly&quot;&gt;apt-get install alsa-base linux-headers-`uname -r`&lt;/textarea&gt;
&lt;br /&gt;
&lt;br /&gt;
Ahora reparamos el audio para que no aparezca el Warning durante el arranque &quot;&lt;span itemprop=&quot;text&quot;&gt;Pulseaudio configured for per-user sessions… (Warning).&quot;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 655px;&quot; readonly=&quot;readonly&quot;&gt;nano /etc/default/pulseaudio&lt;/textarea&gt;
&lt;br /&gt;
&lt;br /&gt;
Buscamos la línea donde dice: &quot;PULSEAUDIO_SYSTEM_START=0&quot; y le cambiamos el 0 por&amp;nbsp; 1 quedando así:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQxzni-KugSwFNtFekM5z9hjLuaqeCaY3Un1FECPJmiUneAPRCHF-T3TxxhIiyJkB_fuR7dTnYgin1ZUtuUSOGYhI7-mIi98d_ydJ_qzaN7iA8mUaSPrU9XuXrSYA0EobndzJan_BYoDc/s1600/kali+2014-f.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQxzni-KugSwFNtFekM5z9hjLuaqeCaY3Un1FECPJmiUneAPRCHF-T3TxxhIiyJkB_fuR7dTnYgin1ZUtuUSOGYhI7-mIi98d_ydJ_qzaN7iA8mUaSPrU9XuXrSYA0EobndzJan_BYoDc/s1600/kali+2014-f.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
Para descomprimir archivos:&lt;br /&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 655px;&quot; readonly=&quot;readonly&quot;&gt;apt-get install file-roller&lt;/textarea&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenOffice:&lt;br /&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; rows=&quot;3&quot; style=&quot;height: 39px; width: 655px;&quot; readonly=&quot;readonly&quot;&gt;apt-get install openoffice.org-writer openoffice.org-calc 
openoffice.org-impress&lt;/textarea&gt;
&lt;br /&gt;
&lt;br /&gt;
Instalar BitTornado para descargar Torrent:&lt;br /&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 655px;&quot; readonly=&quot;readonly&quot;&gt;apt-get install bittornado bittornado-gui&lt;/textarea&gt;
&lt;br /&gt;
&lt;br /&gt;
Deshabilitar el cursor parpadeante:&lt;br /&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 655px;&quot; readonly=&quot;readonly&quot;&gt;gsettings set org.gnome.desktop.interface cursor-blink false&lt;/textarea&gt;
&lt;br /&gt;
&lt;br /&gt;
Deshabilitar el auto montado para que cuando insertemos una memoria o lo que sea no se abra el nautilus:&lt;br /&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 655px;&quot; readonly=&quot;readonly&quot;&gt;gsettings set org.gnome.desktop.media-handling automount-open false&lt;/textarea&gt;
&lt;br /&gt;
&lt;br /&gt;
Poner IceWeasel en español:&lt;br /&gt;
&lt;br /&gt;
&lt;textarea cols=&quot;35&quot; rows=&quot;3&quot; style=&quot;height: 31px; width: 655px;&quot; readonly=&quot;readonly&quot;&gt;aptitude install iceweasel-l10n-es-ar&lt;/textarea&gt;
&lt;br /&gt;
&lt;br /&gt;
Yo soy de argentina por eso le puse &quot;-es-ar&quot; también puede ser -es-es (España) -es-mx (México)&lt;br /&gt;
&lt;br /&gt;
Bueno hasta aquí llega este tutorial, no agregué más cosas porque no me parecieron tan importantes como las que indico en este tutorial, bueno me despido y cualquier duda me consultan. (Ya voy a ir agregando post sobre como utilizar todas las herramientas ::::)))))&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/6297709021974210622/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2014/06/que-hacer-despues-de-instalar-kali.html#comment-form' title='15 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/6297709021974210622'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/6297709021974210622'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2014/06/que-hacer-despues-de-instalar-kali.html' title='que hacer despues de instalar kali linux 1.0.7 2014'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjjV_FdNfYvco8CT1VlF_Dhdkqci5nU-L1DUxDpq3tABgm8a34H7duPn-P6_XKpxxaI-Cjo-BYEjJ-mcyG5V-imL3OvOQI6BK0PjzWx8S59VkvzPubmNoNGkWhlXGmEvNR426Gx4DFRHdY/s72-c/kali+2014-a.png" height="72" width="72"/><thr:total>15</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-4753219780317802526</id><published>2014-06-13T07:07:00.000-07:00</published><updated>2014-06-13T07:07:39.048-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="kali"/><title type='text'>como instalar kali linux 1.0.7 2014</title><content type='html'>&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Hola amigos voy a intentar explicar los pasos para poder tener instalado kali linux en nuestra pc-notebook o en una máquina virtual &lt;br /&gt;&lt;br /&gt;Primer paso por supuesto es ir a la página oficial y &lt;a href=&quot;http://www.kali.org/downloads/&quot; target=&quot;_blank&quot;&gt;descargar&lt;/a&gt; la imagen, luego de la descarga pasaremos a la instalación, antes que nada en mi caso particular lo voy a instalar en virtualbox pero no voy a explicar cómo crear una máquina virtual, eso lo dejare para otro post¡¡¡&lt;br /&gt;&lt;br /&gt;Empecemos...&lt;br /&gt;&lt;br /&gt;Como siempre booteamos desde el DVD o montamos la iso para empezar la instalación, lo primero que aparece es lo siguiente:&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgOS28IpzQulzzPhkRVe54AhrZcGrkNsrlW_3G4SvbTLjdrLaO1jWOeVUY7vMnE1fR3z571nfEHPzjFJ7bRjOudTSHaEuN7tVv0Au-9W0z73sjPFSteqyp5RZ0B5WuHpe6PhjLGUvEuL9w/s1600/kali+2014-1.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgOS28IpzQulzzPhkRVe54AhrZcGrkNsrlW_3G4SvbTLjdrLaO1jWOeVUY7vMnE1fR3z571nfEHPzjFJ7bRjOudTSHaEuN7tVv0Au-9W0z73sjPFSteqyp5RZ0B5WuHpe6PhjLGUvEuL9w/s1600/kali+2014-1.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Esas son todas las opciones del booteo de kali, esta iso viene con varios modos de ejecución como un sistema live, pero para nuestro caso seleccionaremos directamente Install&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhg7lpwdWNR1V1R0rEQdNYBBZ3Q8MI4CBtITUOEm22ENKZvb_lBQDxzJOCccAXqtG66fHwghjujmpUTJQfRlhH43oqYb1BrYtQUmp_wR_Z0_LisN2K-I9QKOQHjYDi8k6N8zl5H2b8TxYU/s1600/kali+2014-2.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhg7lpwdWNR1V1R0rEQdNYBBZ3Q8MI4CBtITUOEm22ENKZvb_lBQDxzJOCccAXqtG66fHwghjujmpUTJQfRlhH43oqYb1BrYtQUmp_wR_Z0_LisN2K-I9QKOQHjYDi8k6N8zl5H2b8TxYU/s1600/kali+2014-2.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Ahora empezaremos con la instalación propiamente dicha, y lo que inmediatamente aparece es la opción de seleccionar el idioma para nuestro sistema&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEizRzFeZen96diPNcnXu2QOGvfn0m0YyQc-GrwKckqbxNge3Z-Mnii6A9rTZaw1pHA2awSIOcFn26n29B4Yct1Ugh-1XkIAfYSUQtwO8Diz1IIAfbldMNxoAwlTqdViJr_5VM4ExV1H1mU/s1600/kali+2014-3.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEizRzFeZen96diPNcnXu2QOGvfn0m0YyQc-GrwKckqbxNge3Z-Mnii6A9rTZaw1pHA2awSIOcFn26n29B4Yct1Ugh-1XkIAfYSUQtwO8Diz1IIAfbldMNxoAwlTqdViJr_5VM4ExV1H1mU/s1600/kali+2014-3.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Podemos dejarlo en English o buscar nuestro querido Español¡¡¡ (es una buena práctica instalar todo en inglés para familiarizarnos más con este idioma)&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgPMM6eeq702eUmBbNTwCgwrTa-vZb2zfYOduRWO_Xszg-xKoSuFM-pH8ssLtYRshKUnAOW5_uAKYmh8XX_vWlZWaZHq2lndtZFgKynP0jYIY777z5IGct8QRO3lK5jsU2CQpcSreKqilo/s1600/kali+2014-4.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgPMM6eeq702eUmBbNTwCgwrTa-vZb2zfYOduRWO_Xszg-xKoSuFM-pH8ssLtYRshKUnAOW5_uAKYmh8XX_vWlZWaZHq2lndtZFgKynP0jYIY777z5IGct8QRO3lK5jsU2CQpcSreKqilo/s1600/kali+2014-4.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Apretamos enter y seguimos, lo que aparece en esta pantalla es una advertencia de que tal vez no esté totalmente completa la traducción en el idioma que acabamos de seleccionar y nos da la opción de retroceder para seleccionar otro si nosotros lo deseamos.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi4PNOI32V_1TptcCao-QZ6qei9S-e3W8FPijRGqF2RMtqtMb472auIhyphenhyphenrixPGosOENQk4m3IyNJvvbYef_2mrhqLo7oyrtPrqpEt0gG7mDYeqgv2Krs1YXyC8nzcgB_yYmlP7xm0D_0aM/s1600/kali+2014-5.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi4PNOI32V_1TptcCao-QZ6qei9S-e3W8FPijRGqF2RMtqtMb472auIhyphenhyphenrixPGosOENQk4m3IyNJvvbYef_2mrhqLo7oyrtPrqpEt0gG7mDYeqgv2Krs1YXyC8nzcgB_yYmlP7xm0D_0aM/s1600/kali+2014-5.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Y elegimos que deseamos continuar con el idioma seleccionado...&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEidsL-mT1DQ8ltdeJuzjKoBirXj8aLfJcc4jxE9ALGOPObkOxUPvk5H_50LVX8zopbWML24vdEJ5f_NSVSiZij8j8kOCCeUIeKWZHhzbj13oYZljs-BPQGH_nB3RCr3rlOETVphh7x4fXc/s1600/kali+2014-6.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEidsL-mT1DQ8ltdeJuzjKoBirXj8aLfJcc4jxE9ALGOPObkOxUPvk5H_50LVX8zopbWML24vdEJ5f_NSVSiZij8j8kOCCeUIeKWZHhzbj13oYZljs-BPQGH_nB3RCr3rlOETVphh7x4fXc/s1600/kali+2014-6.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Buscamos nuestro país para ajustar la fecha horaria&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhjnJVfO-Y8XEX34sMaamnkEXfFJb7llGlpLtRvuWFmSWg9cAwirK27smdLA9OO5CdsPFuzyUPheDHvB5WprWkPLt3suTF3715KxSIzsz13HWfE4X_2MLATPq_C30qA-PmRm0-2Yyu9QCw/s1600/kali+2014-7.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhjnJVfO-Y8XEX34sMaamnkEXfFJb7llGlpLtRvuWFmSWg9cAwirK27smdLA9OO5CdsPFuzyUPheDHvB5WprWkPLt3suTF3715KxSIzsz13HWfE4X_2MLATPq_C30qA-PmRm0-2Yyu9QCw/s1600/kali+2014-7.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Toca configurar el modo de nuestro teclado, seleccionamos Latinoamericano&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhgeM8nOxj6V3aynPZURX89BXwf-472jCV9Uioa9cNKtGuWJleseny5c7zV7pbRIty5T1vLCMG3FxVGd1nCTl_abMgHFt9KcDp7kuqu-OMYwyHEgh5xjyRJ2nhCJWYOHCdit1VYGPRDC-E/s1600/kali+2014-8.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhgeM8nOxj6V3aynPZURX89BXwf-472jCV9Uioa9cNKtGuWJleseny5c7zV7pbRIty5T1vLCMG3FxVGd1nCTl_abMgHFt9KcDp7kuqu-OMYwyHEgh5xjyRJ2nhCJWYOHCdit1VYGPRDC-E/s1600/kali+2014-8.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Damos enter y empezara a cargar los componentes previos a la instalación del sistema&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiaQUwxRxJu1SsI1qg2TpKvmHu6yT_N9xqi5nMpMHnuDvSrNUDAROVklN-Byi4qWLfDGezsJzz2Uul84gSEReUcxgw5P1z8UCMbr5YmN3PLe66WJIEzZjil7_30PS77yTBYgGSUBcvjXJo/s1600/kali+2014-9.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiaQUwxRxJu1SsI1qg2TpKvmHu6yT_N9xqi5nMpMHnuDvSrNUDAROVklN-Byi4qWLfDGezsJzz2Uul84gSEReUcxgw5P1z8UCMbr5YmN3PLe66WJIEzZjil7_30PS77yTBYgGSUBcvjXJo/s1600/kali+2014-9.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Luego introducimos el nombre que tendrá nuestra maquina... yo lo deje como viene por defecto :)&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEht0Pq-TSJn8QSbLFVtqETz1EPQT-xmdOJCcJ8CXTsvNtxVaZSOMbijYDv6oaj9_ZChmiTlhcvflFTORdVtyKY497H0iGUKVp0c5On1Uf_WV46QlK6f57GgThqxcj3b37lo0OWnPNa7yYs/s1600/kali+2014-10.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEht0Pq-TSJn8QSbLFVtqETz1EPQT-xmdOJCcJ8CXTsvNtxVaZSOMbijYDv6oaj9_ZChmiTlhcvflFTORdVtyKY497H0iGUKVp0c5On1Uf_WV46QlK6f57GgThqxcj3b37lo0OWnPNa7yYs/s1600/kali+2014-10.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Si estamos dentro de un Dominio pues este es el lugar donde hay que indicarle el nombre, yo no tengo ningún dominio por tal motivo lo dejare en blanco&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjRiWRfWrMpqAEeCC24qGdvV6LqaUEMwDD39zOgy7nWmEDn0ONvXnzYiSdlO3ZH-cmAgtFOndoTVPFCC4GNj5l6tNX-eBJzyE1UhUrz1ar1qwIWXZHA9JTTVOKO2lwi4hzW-I-p8HiFQto/s1600/kali+2014-12.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjRiWRfWrMpqAEeCC24qGdvV6LqaUEMwDD39zOgy7nWmEDn0ONvXnzYiSdlO3ZH-cmAgtFOndoTVPFCC4GNj5l6tNX-eBJzyE1UhUrz1ar1qwIWXZHA9JTTVOKO2lwi4hzW-I-p8HiFQto/s1600/kali+2014-12.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
En el próximo paso tendremos que crear el password del usuario root, si leen lo que aparece en esta pantalla les da recomendaciones para crear password fuertes....&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjdHShDQbz522Knr5yn8XeYgIliT-SYhWCScy8HpvynitUr4ZHZMCcgxvRE9Y5F9PBhQoJphwcnvZk29cO63j8qPGVwIZ1g3LgRORL0wR6Kwgu9oGnZ7lFQtwWtDuobRGLtR7sjrmuP78k/s1600/kali+2014-14.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjdHShDQbz522Knr5yn8XeYgIliT-SYhWCScy8HpvynitUr4ZHZMCcgxvRE9Y5F9PBhQoJphwcnvZk29cO63j8qPGVwIZ1g3LgRORL0wR6Kwgu9oGnZ7lFQtwWtDuobRGLtR7sjrmuP78k/s1600/kali+2014-14.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
La repetimos...&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjWAyaXH5kBxiheRVixuSQbSgzujoAOkI0RucS4Cu1UPFTGyNZHShEVzqOCmzhcZA1fy65j2evUNXzSf_w6483c2xR5oUcEfbNbj8bAmvZdsAnwkRsfDq58NfiezLiWQNiM-dKQTGdG-Zk/s1600/kali+2014-15.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjWAyaXH5kBxiheRVixuSQbSgzujoAOkI0RucS4Cu1UPFTGyNZHShEVzqOCmzhcZA1fy65j2evUNXzSf_w6483c2xR5oUcEfbNbj8bAmvZdsAnwkRsfDq58NfiezLiWQNiM-dKQTGdG-Zk/s1600/kali+2014-15.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Empieza a examinar nuestros discos para luego aplicar o decidir que particionado utilizar&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhiW0EgiulFtVdPk9fW57PhNNlC5QJUIJGt8VIs0xYdR5be4SMknqx6ckQKzXjtxzhABt-lrqGO7itNSufYIZUl-mjQEgrbM2xcMklfjgDkCT_TuP7itGNbekZPts9HqSHQq37EyTDCjhM/s1600/kali+2014-16.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhiW0EgiulFtVdPk9fW57PhNNlC5QJUIJGt8VIs0xYdR5be4SMknqx6ckQKzXjtxzhABt-lrqGO7itNSufYIZUl-mjQEgrbM2xcMklfjgDkCT_TuP7itGNbekZPts9HqSHQq37EyTDCjhM/s1600/kali+2014-16.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Ahora nos da 4 opciones, para los que tengan mayores conocimientos de linux podrían elegir el avanzado para desmenuzar y configurar en mayor profundidad el particionado, sino da 3 opciones guiadas, yo elegire la primera porque tengo un solo disco virtual y quiero que tome todo el disco...&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiMndNUI1eyLb4wQS7ydzgcl5wHRjClYHWtFJLdqOD5wiW5yrnl-hCryYDcFTlrLkcO-96JZEBKPFwzf8WBCaUL3gsZd318AWHgAemVo_K7D0ZVnKQrlxp45jrReOQdlCSfrLMJNCzHJ2c/s1600/kali+2014-17.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiMndNUI1eyLb4wQS7ydzgcl5wHRjClYHWtFJLdqOD5wiW5yrnl-hCryYDcFTlrLkcO-96JZEBKPFwzf8WBCaUL3gsZd318AWHgAemVo_K7D0ZVnKQrlxp45jrReOQdlCSfrLMJNCzHJ2c/s1600/kali+2014-17.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Nos muestra el disco seleccionado&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjjCPyRA1EkLLojfBSZjlPZq8w3zB7q3FGJ96eWMbcwjDw0Gkg1S_Bybft2UJUmG5Se61M8VOUUDH8Jep1ClRmIKVgd5wkgBk4czWYp-KBeqFdR-RiOIywrgDpeO5ZhJ9U13J8D1N54438/s1600/kali+2014-18.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjjCPyRA1EkLLojfBSZjlPZq8w3zB7q3FGJ96eWMbcwjDw0Gkg1S_Bybft2UJUmG5Se61M8VOUUDH8Jep1ClRmIKVgd5wkgBk4czWYp-KBeqFdR-RiOIywrgDpeO5ZhJ9U13J8D1N54438/s1600/kali+2014-18.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Debemos elegir el esquema de particionado, es recomendable elegir el primero si no tienes mucha experiencia...&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLPhoGZMzi-MIyNM83DFQYjEaN9WiQZSpSeUE1tAHcLWhT6IUhDe0DzFexplPVvPtayafdqe3ibSJIZ2MHoX3Kchk-zCcEcUFqnUW39WmVIPLC51Wexw6ZC5l8_NUW3REmCZr7P1R0gnw/s1600/kali+2014-19.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLPhoGZMzi-MIyNM83DFQYjEaN9WiQZSpSeUE1tAHcLWhT6IUhDe0DzFexplPVvPtayafdqe3ibSJIZ2MHoX3Kchk-zCcEcUFqnUW39WmVIPLC51Wexw6ZC5l8_NUW3REmCZr7P1R0gnw/s1600/kali+2014-19.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Nos muestra un resumen de las particiones seleccionadas y los puntos de montajes previamente elegidos, si va todo bien seleccionamos la segunda opción para empezar a instalar todo....&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEixuDRmlMMXhvyr0_RNXdXBUDY1DuOnz2VZUKSj50EdzFpWh1LFSO6fq4u32JXlgaRHUp_h45Mo7Ow-FfgIaJNYtD558-50MVZGpcY8w8uhodkopDIBG9C4n_D5hjmzsJOEmDtyjqWAA6A/s1600/kali+2014-20.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEixuDRmlMMXhvyr0_RNXdXBUDY1DuOnz2VZUKSj50EdzFpWh1LFSO6fq4u32JXlgaRHUp_h45Mo7Ow-FfgIaJNYtD558-50MVZGpcY8w8uhodkopDIBG9C4n_D5hjmzsJOEmDtyjqWAA6A/s1600/kali+2014-20.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Ahora nos advierte de que estamos a punto de formatear nuestro disco y nos da la opción de retroceder por si nos equivocamos....&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiGTulLTkYfhmadt9UDs_DXnrltSH5401f4sLfwxAOB5BS0N25bhyphenhyphenHwgQy6vnmwpPa3u471_Er6GkqvgJpPsRnO4yz0nGDej_JF8RDnDEVOmTp2HaEadRWVfz-wbsifnEx8VteZOuRtEjg/s1600/kali+2014-21.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiGTulLTkYfhmadt9UDs_DXnrltSH5401f4sLfwxAOB5BS0N25bhyphenhyphenHwgQy6vnmwpPa3u471_Er6GkqvgJpPsRnO4yz0nGDej_JF8RDnDEVOmTp2HaEadRWVfz-wbsifnEx8VteZOuRtEjg/s1600/kali+2014-21.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Como está todo bien selecciono que si continúe&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgz6oA1VTEZE_aGLaKF6YJeP1G191KimzyZhelM5PFz85tVX8TZZkiyim1qYLJ8S6m5mz9t9nRvKa234LAJeZEZ4XUlwjEclwZjoLWrFd8cFuz5cSDZc9hDsnDJy5R92p68e4oBPqQUZU4/s1600/kali+2014-22.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgz6oA1VTEZE_aGLaKF6YJeP1G191KimzyZhelM5PFz85tVX8TZZkiyim1qYLJ8S6m5mz9t9nRvKa234LAJeZEZ4XUlwjEclwZjoLWrFd8cFuz5cSDZc9hDsnDJy5R92p68e4oBPqQUZU4/s1600/kali+2014-22.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Acá empieza la verdadera carga de Kali, debemos esperar entre 10 a 25 minutos dependiendo de las características de nuestro equipo y de la conexión a internet&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUYEKdQSn1KlGugHqB-BImqVCp2whbntaEYgpPfsT5byd4b02COdUB-qElfALEosSvOgatqAIOEU_pbsRz-nEcZPnQBI0BrXZHHQQGbitNpkngdJ9YARFvMaviz303_S0aIj57PSpBpdI/s1600/kali+2014-23.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUYEKdQSn1KlGugHqB-BImqVCp2whbntaEYgpPfsT5byd4b02COdUB-qElfALEosSvOgatqAIOEU_pbsRz-nEcZPnQBI0BrXZHHQQGbitNpkngdJ9YARFvMaviz303_S0aIj57PSpBpdI/s1600/kali+2014-23.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjb-iasPj7zja-I69QBUOUkcsnone9_Rwf7ae8VDdPcwxG_U_seYg_zL4F9SkR1FGj0XbfXGSNcN0h7YW0lQU4VgzygcajClg3GFgq0kduwB17GtK_M0TFygdNJ7Fome-qSwx4scAGntF4/s1600/kali+2014-24.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjb-iasPj7zja-I69QBUOUkcsnone9_Rwf7ae8VDdPcwxG_U_seYg_zL4F9SkR1FGj0XbfXGSNcN0h7YW0lQU4VgzygcajClg3GFgq0kduwB17GtK_M0TFygdNJ7Fome-qSwx4scAGntF4/s1600/kali+2014-24.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Nos consulta si deseamos utilizar internet para obtener actualizaciones del sistema a lo cual respondemos obviamente que sí...&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhws7fKZghulOlupu0jEi7K_ayAycuVA9YzfKW6LtBKSm83-4uEBD25bOj1vGDJMemrKAlt38ZitZS6g1MCJLQ3VsFYWO_oG_nyoWCUuOs6IdbM-M8bJjhGX2cKxdSdeqiXnOrohAkWZQI/s1600/kali+2014-25.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhws7fKZghulOlupu0jEi7K_ayAycuVA9YzfKW6LtBKSm83-4uEBD25bOj1vGDJMemrKAlt38ZitZS6g1MCJLQ3VsFYWO_oG_nyoWCUuOs6IdbM-M8bJjhGX2cKxdSdeqiXnOrohAkWZQI/s1600/kali+2014-25.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Si tenemos un proxy acá lo configuramos sino lo dejamos limpio, y damos enter en continuar...&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiyWZo1vJc_OPQ8IP66XQamvk4XX8ow9qDeiYN18Tg7G_q4zb6Km9Kf8CXRA_1vP_9JM0FaapeuVhMM_qvoFu4yTdLAN3z-09bm7pbaNLEZd-uojqoNUzrjX2YcxGsC0fYb5O9Cl27abJU/s1600/kali+2014-28.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiyWZo1vJc_OPQ8IP66XQamvk4XX8ow9qDeiYN18Tg7G_q4zb6Km9Kf8CXRA_1vP_9JM0FaapeuVhMM_qvoFu4yTdLAN3z-09bm7pbaNLEZd-uojqoNUzrjX2YcxGsC0fYb5O9Cl27abJU/s1600/kali+2014-28.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Ahora esperamos unos minutos hasta que termine de descargar las actualizaciones...&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg49YRkZgNH5Q_qcp9MH9ZSeWy7vb4R2kXgZLPQMAT6zFeJrrBtXNx5IP8Lf5LrTPNA6xKTD2y8L4oNoEqI1ArG0VQutv6bUpIvtjfwX5TLP_p0ePhYDVliZ0G9TrLQI3wNY7ELP8RpVgg/s1600/kali+2014-29.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg49YRkZgNH5Q_qcp9MH9ZSeWy7vb4R2kXgZLPQMAT6zFeJrrBtXNx5IP8Lf5LrTPNA6xKTD2y8L4oNoEqI1ArG0VQutv6bUpIvtjfwX5TLP_p0ePhYDVliZ0G9TrLQI3wNY7ELP8RpVgg/s1600/kali+2014-29.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiAt01rWjFqpxYMoHFr9cYvpfU2NOfLbl_sK2-qmPCCVLN6YvVXwP3HvKAwQMxyfLlBapJhA-pLkYk_DM6nXqTxf-s-ZO4tyg-iXQ821UWvGG9pg6EmunWf1PCsTDsF88Lpdo0z9z7844U/s1600/kali+2014-30.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiAt01rWjFqpxYMoHFr9cYvpfU2NOfLbl_sK2-qmPCCVLN6YvVXwP3HvKAwQMxyfLlBapJhA-pLkYk_DM6nXqTxf-s-ZO4tyg-iXQ821UWvGG9pg6EmunWf1PCsTDsF88Lpdo0z9z7844U/s1600/kali+2014-30.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Empieza a instalar el cargador de arranque o GRUB&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjjS_hHThqYSPdkPhrio8ixFAaEn45reGKhk1LwmXgXNl9SRGIHS-JBWqj1suwLK04_WNB1MicbBMefVrbNdovNHlMVPupEN5Y3YZvn2OldKWtMQdCoWVucyulIfQ05u0es_awRHKhCMEc/s1600/kali+2014-31.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjjS_hHThqYSPdkPhrio8ixFAaEn45reGKhk1LwmXgXNl9SRGIHS-JBWqj1suwLK04_WNB1MicbBMefVrbNdovNHlMVPupEN5Y3YZvn2OldKWtMQdCoWVucyulIfQ05u0es_awRHKhCMEc/s1600/kali+2014-31.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Nos advierte que el cargador de arranque encontró sólo nuestro Kali por lo cual nos consulta si deseamos cargar este grub como principal, acá hay que tener sumo cuidado si nosotros sabemos que ya tenemos otro sistema operativo pues si ocurre esto lo más posible que solo podamos entrar en kali y en el otro sistema operativo no... se complica un poco pero es cuestión de editar el grub para solucionar este tipo de inconvenientes.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Le damos que si queremos continuar.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitSfIdc6m34-_3OakMWE0SfOtwSXj7t3KuGkJzKuBdGZBypk74GHj9mzdk3Au4FR_AW-CS6zxhzampu0Kku5Qzo0ML93wWoRGKVKQxWwYslTAZmuWWrOqdomf9TN8ZdNOQEfFXSY61zGs/s1600/kali+2014-32.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitSfIdc6m34-_3OakMWE0SfOtwSXj7t3KuGkJzKuBdGZBypk74GHj9mzdk3Au4FR_AW-CS6zxhzampu0Kku5Qzo0ML93wWoRGKVKQxWwYslTAZmuWWrOqdomf9TN8ZdNOQEfFXSY61zGs/s1600/kali+2014-32.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Continúa con la instalación del GRUB y luego empieza ya a terminar la instalación de Kali&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiB1abFN5b2_1MWsXC7hq2fOHrl_rC3RJ8KyV9ShqGKo9KFj5Q_q8fEzXOYe1GiLGiZM58GfaytCxlgACOJRMEkfI6L_IgyqDZ2ST6fQ7sjgixM3tLr4GckFxQ5xftQ8WUA1eVpOVcBaHs/s1600/kali+2014-33.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiB1abFN5b2_1MWsXC7hq2fOHrl_rC3RJ8KyV9ShqGKo9KFj5Q_q8fEzXOYe1GiLGiZM58GfaytCxlgACOJRMEkfI6L_IgyqDZ2ST6fQ7sjgixM3tLr4GckFxQ5xftQ8WUA1eVpOVcBaHs/s1600/kali+2014-33.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjA5qFD3Y3lAfRfmb2I3M3DpdOMOpoT-GKyCFNo3fyaa0s5zTVi2J_ezBcAX9FnJ9Ozwfm7bspl5SDw5PuK6ZEvfygBheVoe8oaLS64nPTUWuFsW3GsE4Y71kSzMb65iyPGgA0xL0twD6U/s1600/kali+2014-34.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjA5qFD3Y3lAfRfmb2I3M3DpdOMOpoT-GKyCFNo3fyaa0s5zTVi2J_ezBcAX9FnJ9Ozwfm7bspl5SDw5PuK6ZEvfygBheVoe8oaLS64nPTUWuFsW3GsE4Y71kSzMb65iyPGgA0xL0twD6U/s1600/kali+2014-34.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Nos avisa que ya termino la instalación....&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0CWqJ8yGlbF_Sf0_9A_6aepEAzc4PpeqWyZNu2QCf4bLHiqx81CQNtWx7Y9XU96sf8jRQIq0Hh3utBlMcnJGttRTwOU6aYn6hzJluCItr3taHaqSnfQlRVX0wZhKKXpbbU2jpAChZY-s/s1600/kali+2014-35.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0CWqJ8yGlbF_Sf0_9A_6aepEAzc4PpeqWyZNu2QCf4bLHiqx81CQNtWx7Y9XU96sf8jRQIq0Hh3utBlMcnJGttRTwOU6aYn6hzJluCItr3taHaqSnfQlRVX0wZhKKXpbbU2jpAChZY-s/s1600/kali+2014-35.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Realiza una limpieza de los paquetes instalados...&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhr28xNVk8ez6OrEdhc4hE1auEge7A6CIJJ0hc_lwL-QrUuh-Ir3okd0eJqLhUhG-8HwctLWCs9GAZuINQjfyTxN4tzlJH8qf0hHu61uHEWYd-FqYkSkcsEcsbW8NrhlQ9pAQQjgApNnR8/s1600/kali+2014-36.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhr28xNVk8ez6OrEdhc4hE1auEge7A6CIJJ0hc_lwL-QrUuh-Ir3okd0eJqLhUhG-8HwctLWCs9GAZuINQjfyTxN4tzlJH8qf0hHu61uHEWYd-FqYkSkcsEcsbW8NrhlQ9pAQQjgApNnR8/s1600/kali+2014-36.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Se reinicia el equipo y aparece lo siguiente :)&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiAeJicM-rXLHgKOQIY1XxM7c4K0KEjWJmsQfvXG_kxjo1s-j6J1jx-vOT27IFZDU8WfCpfUp-MwJg8IVYPmhHk4ER48z9sT4FKVFCqI3cBr7MrXY9zlnmdlQ5iN0YE4PDaHM3kjAJkvIo/s1600/kali+2014-37.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiAeJicM-rXLHgKOQIY1XxM7c4K0KEjWJmsQfvXG_kxjo1s-j6J1jx-vOT27IFZDU8WfCpfUp-MwJg8IVYPmhHk4ER48z9sT4FKVFCqI3cBr7MrXY9zlnmdlQ5iN0YE4PDaHM3kjAJkvIo/s1600/kali+2014-37.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Si no apretamos nada en un par de segundo se ejecuta la primera line del grub, una vez que carga los archivos correspondientes nos pide nuestro nombre de usuario que era &quot;kali&quot;&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg1-4BzJtpet9uzUJeU5QTYvbCD3Q6PYyLt-WpiHtp_usBvSClpKlh1wbAkMH_tHhHdE1yIpHM14bOlkNVDt4uefZCvDcFUbrg03GL8r-JwXngXSnUbJvShPQg9D-bN6payp-tiv4pq0qc/s1600/kali+2014-38.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg1-4BzJtpet9uzUJeU5QTYvbCD3Q6PYyLt-WpiHtp_usBvSClpKlh1wbAkMH_tHhHdE1yIpHM14bOlkNVDt4uefZCvDcFUbrg03GL8r-JwXngXSnUbJvShPQg9D-bN6payp-tiv4pq0qc/s1600/kali+2014-38.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Ingresamos el password....&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjebOxOCzRg5s2lDlj0S6e_dW28Rl0ZwgHCTBRv1gPeRvbP1pem-MzPTyGRg5KISGs8RETn0SOy6UUb-En6ESLfmq4WcdTAt4v1zcpvF3A9MXf9FYD01gF_Xja-kldD1goAuM8c4A4-l8A/s1600/kali+2014-39.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjebOxOCzRg5s2lDlj0S6e_dW28Rl0ZwgHCTBRv1gPeRvbP1pem-MzPTyGRg5KISGs8RETn0SOy6UUb-En6ESLfmq4WcdTAt4v1zcpvF3A9MXf9FYD01gF_Xja-kldD1goAuM8c4A4-l8A/s1600/kali+2014-39.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Esperamos unos segundos y ....&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFs3BN9B3RTNmIZ6NTkCtkPA49de-mgcrPQqPRI5Sopwt9a24hSgh32Vq_vf5Bd7n3-qIi2iV69yUODAQrkPa9ieu8Zo_ioOL5hlYOgREuf_1VwTSBNPwtif_Yuef1FEM9qWjuS3enhbs/s1600/kali+2014-40.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFs3BN9B3RTNmIZ6NTkCtkPA49de-mgcrPQqPRI5Sopwt9a24hSgh32Vq_vf5Bd7n3-qIi2iV69yUODAQrkPa9ieu8Zo_ioOL5hlYOgREuf_1VwTSBNPwtif_Yuef1FEM9qWjuS3enhbs/s1600/kali+2014-40.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Listo.... ya tenemos nuestro apreciado kali instalado en nuestro equipo con la última versión estable del sistema, espero que les sirva este post y cualquier duda consulten....&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Ya voy a realizar un post sobre cómo poner a punto nuestro Kali con todas las dependencias, codecs, etc.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Me despido y nos leemos la próxima &lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/4753219780317802526/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2014/06/como-instalar-kali-linux-107-2014.html#comment-form' title='6 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/4753219780317802526'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/4753219780317802526'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2014/06/como-instalar-kali-linux-107-2014.html' title='como instalar kali linux 1.0.7 2014'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgOS28IpzQulzzPhkRVe54AhrZcGrkNsrlW_3G4SvbTLjdrLaO1jWOeVUY7vMnE1fR3z571nfEHPzjFJ7bRjOudTSHaEuN7tVv0Au-9W0z73sjPFSteqyp5RZ0B5WuHpe6PhjLGUvEuL9w/s72-c/kali+2014-1.png" height="72" width="72"/><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-3680423227795434981</id><published>2014-06-12T17:59:00.000-07:00</published><updated>2014-06-12T18:28:54.778-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="malware"/><category scheme="http://www.blogger.com/atom/ns#" term="ransomware"/><title type='text'>Malware Ransomware-AntiRansom</title><content type='html'>Bueno hoy vengo a comentar un poco que es esto del malware ransomware, de que trata, como funciona y qué medidas tomar para evitarlo o poder detectarlo a tiempo sin que produzca su objetivo, pasamos a la teoría&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;u&gt;Definición:&lt;/u&gt;&lt;/b&gt; Ransomware es un malware que tiene como objetivo cifrar nuestra información o parte de ella o solo la información a la cual él tenga tiempo para acceder antes de que nosotros o nuestro sistema se dé cuenta, más allá de esto y de que cifre todo o parte de nuestra info luego de hacer este proceso nos pediría un pago por el rescate, osea si nosotros pagamos los cibercriminales nos darían un password y un software para decifrar el contenido que fue afectado por dicha infección.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjIx2iN7BixVNT45lV-htwmjxDa8ikKehPhcHe_RsXQfzQr0uhyr1SkN-4749e-Nk7jH1pBz2uBWUxVr0fLzpf1ivo917KYPC4yDYDR61SieeHmfUdZB_nrJWq-1GCEQ0cgaQc0Ac7WXo4/s1600/ramsonware1.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjIx2iN7BixVNT45lV-htwmjxDa8ikKehPhcHe_RsXQfzQr0uhyr1SkN-4749e-Nk7jH1pBz2uBWUxVr0fLzpf1ivo917KYPC4yDYDR61SieeHmfUdZB_nrJWq-1GCEQ0cgaQc0Ac7WXo4/s1600/ramsonware1.jpg&quot; height=&quot;134&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;u&gt;&lt;b&gt;Entendiendo un poco más:&lt;/b&gt;&lt;/u&gt; existen varios puntos que son necesarios entender, uno de los más importantes es que esto sería una estafa informática, pues un atacante que obtuvo acceso a nuestro equípo(independientemente de la forma por la cual nos infectó¡¡) buscara la forma de cifrar nuestra info para luego obtener una remuneración económica por este hecho.&lt;br /&gt;
Otro punto interesante es que existen muchas variantes de esta infección, van desde las que solo bloquean nuestro navegador indicando que debemos pagar una suma de dinero por estar divulgando videos pornográficos, pedofilia, etc y que si no pagamos la policía nos arrestaría¡¡ obvio es una estafa, y este tipo de infección es una de las más &quot;fáciles de sacar&quot; pues es solo una advertencia que produce un colapso o bloqueo de nuestro navegador para que una ves que se ejecute no podamos ni cambiar de página, solo podemos minimizarlo¡¡&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEglfiNQSlqIt6b2v0NbMzvELZlCujT7gKrD8PxDCuutocudFeHj8FTWNYfN1Cf-C_s7WQIXuY5S-yfk1I9u6zWQCNSkveY1LbsbA1QBThCGDHQBrw0PU-m6vWirg0gWstru9YF_BhZHsS4/s1600/ramsonware2.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEglfiNQSlqIt6b2v0NbMzvELZlCujT7gKrD8PxDCuutocudFeHj8FTWNYfN1Cf-C_s7WQIXuY5S-yfk1I9u6zWQCNSkveY1LbsbA1QBThCGDHQBrw0PU-m6vWirg0gWstru9YF_BhZHsS4/s1600/ramsonware2.jpg&quot; height=&quot;241&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
También están los más extremos que cifran absolutamente todo nuestro sistema y no podemos hacer absolutamente nada¡¡ bueno casi nada :) lo ideal sería tener un backups y formatear el equipo para restaurar la información, pero como la gran mayoría no tiene backups queda como opción pagar el rescate y rogar tener suerte de que los atacantes nos pasen el software con la contraseña para decifrar todo, o se podría intentar hacer ataque de fuerza bruta que existen casos públicos de situaciones en las cuales si se obtuvo suerte porque el password era muy débil, pero por lo general cifran el contenido con un password muy fuerte de más de 30 caracteres como mínimo y obviamente mesclando caracteres especiales, mayúsculas, minúsculas, números :( por lo cual no hace falta decir que sería prácticamente imposible dar con el password.&lt;br /&gt;
&lt;br /&gt;
&lt;u&gt;&lt;i&gt;&lt;b&gt;Ahora la pregunta seria como protegerse de este tipo de infección??&lt;/b&gt;&lt;/i&gt;&lt;/u&gt;&lt;br /&gt;
&lt;br /&gt;
La respuesta es simple y como siempre más de los mismo¡¡ osea sería tener un antivirus actualizado, firewall activo, no visitar sitios sospechosos, no abrir correos de personas que no conozcamos, tener actualizado nuestro sistema operativo (también todos los software que en él se ejecuten) y un infinito etcétera, pero lo mejor es utilizar simpre pero siempre el &lt;span style=&quot;color: red;&quot;&gt;SENTIDO COMUN&lt;/span&gt;, porque el eslabón más débil es el usuario de la máquina, de nada cirbe tener antivirus, firewall, IDS, IPS, y muchas protecciones más si el usuario va a ser caso omiso a las típicas recomendaciones para evitar cualquier tipo de infección.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&lt;b&gt;&lt;u&gt;Como me desinfecto??&lt;/u&gt;&lt;/b&gt;&lt;/i&gt; &lt;br /&gt;
&lt;br /&gt;
Lo recomendable seria escanear nuestro disco duro, el tema es con que?? existen una infinidad de herramientas o antivirus o como quieran llamarles que supuestamente soluciona a la perfección nuestro sistema, las herramientas son:&lt;br /&gt;
&lt;br /&gt;
- Iniciar el sistema en modo de recuperación y luego restaurar el sistema en un punto anterior.&lt;br /&gt;
- Habitualmente el malware se guarda en las siguientes rutas(se debe acceder como administrador o&amp;nbsp; sacar el disco y acceder al contenido indicado):&lt;br /&gt;
&lt;ul style=&quot;text-align: justify;&quot;&gt;&lt;ul&gt;&lt;ul&gt;
&lt;li&gt;C:\ProgramData\(Nombre_Virus)&lt;/li&gt;
&lt;li&gt;C:\Users\(Nombre_Usuario)\(Nombre_Virus)&lt;/li&gt;
&lt;li&gt;C:\Users\(Nombre_Usuario)\AppData\(Nombre_Virus) &lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt;
&lt;/ul&gt;
Softwares(no están ordenados seria que cada uno utilice los que mejor le resulte :):&lt;br /&gt;
Instalar &lt;a b61313=&quot;&quot; color:=&quot;&quot; href=&quot;http://es.malwarebytes.org/&quot; target=&quot;_blank&quot;&gt;malwarebytes&lt;/a&gt; en el sistema&lt;br /&gt;
Descargar &lt;a href=&quot;http://support.kaspersky.com/4162&quot; target=&quot;_blank&quot;&gt;Kaspersky Rescue Disk 10&lt;/a&gt; quemarlo en un DVD o hacerlo booteable desde un pendrive, Una vez arrancado el S.O. clicaremos Inicio &amp;gt; “&lt;a href=&quot;http://www.bajolared.com/wordpress/wp-content/uploads/2013/01/kaspersky.png&quot;&gt;Kaspersky WindowsUnlocker&lt;/a&gt;”.Si la opción no estuviera en el menú, pulsar la opción de “Terminal” y escribir “windowsunlocker” (sin comillas).Actualizar la protección y realizar un análisis completo de la máquina&lt;br /&gt;
&lt;a href=&quot;http://kb.eset.com/esetkb/index?page=content&amp;amp;id=SOLN2372&amp;amp;viewlocale=es_ES&quot; target=&quot;_blank&quot;&gt;ESET Rogue Application Remover para desinfectar&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.microsoft.com/es-es/download/malicious-software-removal-tool-details.aspx&quot; target=&quot;_blank&quot;&gt;Malicious Software Removal Tool&lt;/a&gt; para desinfectar el equipo
                        &lt;br /&gt;
&lt;a href=&quot;http://www.pandasecurity.com/resources/tools/pandaunransom.exe&quot; target=&quot;_blank&quot;&gt;pandaunransom&lt;/a&gt; sirve para decifrar archivos luego de desinfectar el equipo&lt;br /&gt;
&lt;span style=&quot;text-align: justify;&quot;&gt;HitmanPro Kickstart una ves descargado lo ejecutamos y hacemos clic en:&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5OVibgDMq8ztEDWpylKdJolywIy4Im3lcubGQ2iGPFRbPvRmkXGfRcgiKq5z1FDmgt6J5upbxdOpmz1Zvy3rZYBBxCoNDfy9lbqFcDoE36whOAqXnecnSUcj-RRmjBkTdYBCiRV0xD5A/s1600/ramsonware3.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj5OVibgDMq8ztEDWpylKdJolywIy4Im3lcubGQ2iGPFRbPvRmkXGfRcgiKq5z1FDmgt6J5upbxdOpmz1Zvy3rZYBBxCoNDfy9lbqFcDoE36whOAqXnecnSUcj-RRmjBkTdYBCiRV0xD5A/s1600/ramsonware3.jpg&quot; height=&quot;264&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
Para poder crear la unidad usb, luego:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj_spvlSfmpE5rUiXqO8ToDZ_JsTjUXZzMFLZSWRrPzvzhZ4EX5uxyVz-SR5iP_n-RBYjtSoBLF-mRaWrNMIAi5Y-TL9aNOmwGCKdwHHAClorxio3MiMED921s2FM8EM28FSQN3pciWnSs/s1600/ramsonware4.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj_spvlSfmpE5rUiXqO8ToDZ_JsTjUXZzMFLZSWRrPzvzhZ4EX5uxyVz-SR5iP_n-RBYjtSoBLF-mRaWrNMIAi5Y-TL9aNOmwGCKdwHHAClorxio3MiMED921s2FM8EM28FSQN3pciWnSs/s1600/ramsonware4.jpg&quot; height=&quot;252&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
En este paso seleccionamos nuestro pendrive y hacemos los pasos que explica la imagen anterior&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBeOWJrhMyZgp58eFgEtn9x-R5N_uYlPadgHRhOs1gUOoGQxLY7XiBzxxXC61Llv4O16b1t4AneKFL_hvoExA4xAX35ufG0uqWl1hF9WX4FYuI7Mo85YSUk-K9xvjGgL7eOgXBUrXhG5k/s1600/ramsonware5.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBeOWJrhMyZgp58eFgEtn9x-R5N_uYlPadgHRhOs1gUOoGQxLY7XiBzxxXC61Llv4O16b1t4AneKFL_hvoExA4xAX35ufG0uqWl1hF9WX4FYuI7Mo85YSUk-K9xvjGgL7eOgXBUrXhG5k/s1600/ramsonware5.jpg&quot; height=&quot;253&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Acá nos advierte de que estamos a punto de formatear ojo¡¡&lt;br /&gt;
&lt;br /&gt;
Luego empieza a descargar los archivos pertinentes desde internet y una ves ya terminado lo montamos en la pc&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhMRSjJWrrat4QsMB7MY8V0xrD-M5_IHNVnPG_ADauJVoQSMa4EHIHOgB7-iA4yjEP7enUMZyLmFnFKx6BBOk9AYRwEjv2jGTA2sE1rRcHL5ZX5NX1PM1cXsFySe4OWfQNzA_V6pXVwEa4/s1600/ramsonware7.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhMRSjJWrrat4QsMB7MY8V0xrD-M5_IHNVnPG_ADauJVoQSMa4EHIHOgB7-iA4yjEP7enUMZyLmFnFKx6BBOk9AYRwEjv2jGTA2sE1rRcHL5ZX5NX1PM1cXsFySe4OWfQNzA_V6pXVwEa4/s1600/ramsonware7.png&quot; height=&quot;177&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
Obviamente debemos hacer bootear el pendrive, luego nos aparecerá algo como la imagen de arriba y seleccionamos la opción 1, desde este punto es cuestión de hacer siguiente siguiente :)&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgJ60qyk27iWmkHTZyRkJ9ykYVZYOfsQnfVYVC_6Ts3klulVqFIMuLboyFyEsQCfVVMfrUX8WJ081aHDkgmB8odNZ8C_qk8UTu2fExpIgeytPNDHTxWKUuVMHHLuKMB0R51Mem1yioFUoc/s1600/ramsonware8.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgJ60qyk27iWmkHTZyRkJ9ykYVZYOfsQnfVYVC_6Ts3klulVqFIMuLboyFyEsQCfVVMfrUX8WJ081aHDkgmB8odNZ8C_qk8UTu2fExpIgeytPNDHTxWKUuVMHHLuKMB0R51Mem1yioFUoc/s1600/ramsonware8.png&quot; height=&quot;242&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;span style=&quot;text-align: justify;&quot;&gt;&lt;/span&gt;&lt;a href=&quot;http://www.adlice.com/softwares/roguekiller/#&quot; target=&quot;_blank&quot;&gt;RogeKiller&lt;/a&gt; también es otra opción&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://hitmanpro.kickstart/&quot;&gt;&lt;span style=&quot;text-align: justify;&quot;&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;u&gt;&lt;i&gt;&lt;b&gt;&lt;a href=&quot;http://hitmanpro.kickstart/&quot;&gt;&lt;span style=&quot;text-align: justify;&quot;&gt;&lt;/span&gt;&lt;/a&gt;Software especificamente diseñado para avisarnos que estamos siendo afectados??:)&lt;/b&gt;&lt;/i&gt;&lt;/u&gt;&lt;br /&gt;
&lt;br /&gt;
Yo personalmente tengo instalado antiRansom de security by default (&lt;a href=&quot;http://www.securitybydefault.com/2013/07/anti-ransom-10.html&quot; target=&quot;_blank&quot;&gt;enlace&lt;/a&gt;) en el enlace esta la explicación de como funciona y como instalarla, personalmente recomiendo instalarla como una medida adicional o para agregar una capa más de seguridad a nuestro sistema, con esa herramienta nosotros nos enteraríamos en el instante exacto que el malware empieza a cifrar el contenido o los archivos que esta herramienta instala y luego tomar las medidas correspondientes</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/3680423227795434981/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2014/06/malware-ransomware-antiransom.html#comment-form' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/3680423227795434981'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/3680423227795434981'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2014/06/malware-ransomware-antiransom.html' title='Malware Ransomware-AntiRansom'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjIx2iN7BixVNT45lV-htwmjxDa8ikKehPhcHe_RsXQfzQr0uhyr1SkN-4749e-Nk7jH1pBz2uBWUxVr0fLzpf1ivo917KYPC4yDYDR61SieeHmfUdZB_nrJWq-1GCEQ0cgaQc0Ac7WXo4/s72-c/ramsonware1.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-882062083212548147</id><published>2014-06-11T14:29:00.001-07:00</published><updated>2014-06-12T15:37:06.094-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="virtualbox"/><title type='text'>Como hacer booteable un USB en virtualBox 2014</title><content type='html'>Hola amigos ahora voy a explicar cómo poner un USB booteable en VirtualBox, pasamos a la explicación:&lt;br /&gt;
&lt;br /&gt;
Lo primero es colocar el USB en la pc/notebook y luego ir a ejecutar con   las teclas Windows+r y escribimos “diskmgmt.msc” para luego dar en aceptar &lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgOz3PYmN1y21MPVKMGLipiNlnc5UABkPiAj3p2u8lS1DUh0GUNWxR0jboJ9Ng_EZK4mMEwH-qn47oA-1qzWDpxJ6j2oYgmbJWnhDRWwERwx8SoDMYNLU0oM53xK8jtRSg9qO2G5cscnes/s1600/USBVirtualBox1.png&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgOz3PYmN1y21MPVKMGLipiNlnc5UABkPiAj3p2u8lS1DUh0GUNWxR0jboJ9Ng_EZK4mMEwH-qn47oA-1qzWDpxJ6j2oYgmbJWnhDRWwERwx8SoDMYNLU0oM53xK8jtRSg9qO2G5cscnes/s1600/USBVirtualBox1.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt; Y tendremos en cuenta el nombre del pendrive que en mi caso es “Disco 1”&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSntOBE88EfhKQmz27q-Hc0_XmDp18XYKEMkdCuIaoT6bRzfoxajiN0c3-Bo_TpZdfOQ16kstkvt-E608f3iB4gufyLDdQZOHppg3yL9hBmhdS6IyGHWNskK7vI_udETCEO0YReI3xrsQ/s1600/USBVirtualBox2.png&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;226&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSntOBE88EfhKQmz27q-Hc0_XmDp18XYKEMkdCuIaoT6bRzfoxajiN0c3-Bo_TpZdfOQ16kstkvt-E608f3iB4gufyLDdQZOHppg3yL9hBmhdS6IyGHWNskK7vI_udETCEO0YReI3xrsQ/s1600/USBVirtualBox2.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
Ahora buscamos la consolar o cmd de Windows en Windows 8/8.1 seria Windows+c luego en la lupa escribimos cmd para después hacer clic derecho en “Símbolo del Sistema” y seleccionar &quot;Ejecutar como administrador&quot;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiKD7i3csxQ3sToxJe8cWgGxRyh8htcNeiQejQ33IS_DH8YqkFplCWlLueC-Xv_a4eiQkc8dyGws0XiLk3qT1wIML15hXpEzglLI3cjISUIQ7hfeiYG-9vcqVaoJOch6y-7sdz27RpFpzA/s1600/USBVirtualBox3.png&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiKD7i3csxQ3sToxJe8cWgGxRyh8htcNeiQejQ33IS_DH8YqkFplCWlLueC-Xv_a4eiQkc8dyGws0XiLk3qT1wIML15hXpEzglLI3cjISUIQ7hfeiYG-9vcqVaoJOch6y-7sdz27RpFpzA/s1600/USBVirtualBox3.png&quot; width=&quot;180&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
Bueno, toca manejar un poco el cmd y tal vez para aquellos que nunca manejaron la consola les cueste entender pero si tienen duda discúlpense y googleen…&lt;br /&gt;&lt;br /&gt;
En el CMD escribimos la ruta de instalación del VirtualBox: &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cd “c:\Program Files\Oracle\VirtualBox”&lt;br /&gt;
&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihPtTWpAZgZ_q89vm1mm3ZNC0SksVnPDJvQJJfmPPXASVFpbX4BaVTlcYqhn-wYRHZhpwktcjOw4n4xknpejva-OoLMOd7CUibQQMBp2awnM58OQCREkoDiO2aEawmYAbJddPUS0szS80/s1600/USBVirtualBox.png&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;162&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihPtTWpAZgZ_q89vm1mm3ZNC0SksVnPDJvQJJfmPPXASVFpbX4BaVTlcYqhn-wYRHZhpwktcjOw4n4xknpejva-OoLMOd7CUibQQMBp2awnM58OQCREkoDiO2aEawmYAbJddPUS0szS80/s1600/USBVirtualBox.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;La sintaxis clave de todo este trabajo es:&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VBoxManage internalcommands createrawvmdk -filename “c:\Users\hackendemoniado\Desktop\usbbooteable.vmdk&quot; –rawdisk \\.\PhysicalDrive1&lt;br /&gt;
&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjGqgJ68SbZ-Jm-njKLfa6S8N_JWyH-8JCaF5rpHG2MIfELj_z3OhngaYxsZzsn9IAtONeONIqMXNair0u_tF7WP7kxqY9v1UkpC7acp07wR0n8Ycpa-7jYj6ZESsuGC-gEa7mfvPczNog/s1600/USBVirtualBox4.png&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;163&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjGqgJ68SbZ-Jm-njKLfa6S8N_JWyH-8JCaF5rpHG2MIfELj_z3OhngaYxsZzsn9IAtONeONIqMXNair0u_tF7WP7kxqY9v1UkpC7acp07wR0n8Ycpa-7jYj6ZESsuGC-gEa7mfvPczNog/s1600/USBVirtualBox4.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
Toda esa línea permite crear un disco virtual que es el que luego montaremos en la máquina virtual, como verán uno puede guardar este archivo “vmdk” en donde uno queramos yo lo quise guardar en el escritorio por usabilidad, un detalle importante es que ustedes deben reemplazar &lt;a href=&quot;https://www.blogger.com/null&quot;&gt;\\.\PhysicalDrive1&lt;/a&gt; en donde 1 es el número del disco de nuestro pendrive, ahora solo resta configurar nuestra máquina virtual para que tome este disco virtual, para eso debemos abrir en Windows 8/8.1 el virtual box como administrador sino no nos dejara montar el pendrive (*)&lt;br /&gt;&lt;br /&gt;
Ahora seleccionamos la maquina con la cual deseamos bootear el pendrive y nos vamos “almacenamiento”&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjTE500wEYc_Firy1u4Uq17dw2SGKLAyagk6-npSHMToYl1RfG4CsCv8p44umjwNSyLs3vzUA6rE0QCRN38vZnh0HFH0lUJC16RDIRDK4SVRt1aFfWPcl-kqfPCTTnZVq3cHB8lhq5xiiM/s1600/USBVirtualBox5.png&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;179&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjTE500wEYc_Firy1u4Uq17dw2SGKLAyagk6-npSHMToYl1RfG4CsCv8p44umjwNSyLs3vzUA6rE0QCRN38vZnh0HFH0lUJC16RDIRDK4SVRt1aFfWPcl-kqfPCTTnZVq3cHB8lhq5xiiM/s1600/USBVirtualBox5.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
El siguiente paso es hacer clic donde dice “agregar disco”&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEikLwgOIvKqL8-uPdXRKCZQ0xWCrs7LcAg7Mesre8uh0Wt6Kx29BaI57eB50Q9F85_CVLqiXC4fgsb6Dp1TN-rhrGwsY3CoTw13snljYoyDKEhaFq6neU4TurTo4b7ibA-VO-jMP6qnUw4/s1600/USBVirtualBox6.png&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;179&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEikLwgOIvKqL8-uPdXRKCZQ0xWCrs7LcAg7Mesre8uh0Wt6Kx29BaI57eB50Q9F85_CVLqiXC4fgsb6Dp1TN-rhrGwsY3CoTw13snljYoyDKEhaFq6neU4TurTo4b7ibA-VO-jMP6qnUw4/s1600/USBVirtualBox6.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
Seleccionamos “Seleccionar disco existente”&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhxtpDttyf_LCH-xRqOj_OLCQn4mPXlWsq4oslxQ5tKpXSBctPmN7BVGQltSoMHn3yRN3HEc4A6fnZRPXknXyaVhH21YuNeiNhpvdUTPv8licZbSP5_OB27POPG4NtKWt4MhQjYbojZ7VY/s1600/USBVirtualBox7.png&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;195&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhxtpDttyf_LCH-xRqOj_OLCQn4mPXlWsq4oslxQ5tKpXSBctPmN7BVGQltSoMHn3yRN3HEc4A6fnZRPXknXyaVhH21YuNeiNhpvdUTPv8licZbSP5_OB27POPG4NtKWt4MhQjYbojZ7VY/s1600/USBVirtualBox7.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
Nos dirigimos a la ruta en donde creamos el archivo vmdk y lo seleccionamos para luego dar clic en aceptar&lt;br /&gt;
&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg-xjrqSlWppRb2_gEfXR8Zl00aFMBpHtvgqzXAvuC0Gw9vzpaP3OC8RlmUaOgWYlGiRWdrIoslYkrrmpF1QH2kteJEYstfcjSaSPPhb4XLgYG9GWvCaxn1ZhpbvIlMotnAapovEIFaEoQ/s1600/USBVirtualBox8.png&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;235&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg-xjrqSlWppRb2_gEfXR8Zl00aFMBpHtvgqzXAvuC0Gw9vzpaP3OC8RlmUaOgWYlGiRWdrIoslYkrrmpF1QH2kteJEYstfcjSaSPPhb4XLgYG9GWvCaxn1ZhpbvIlMotnAapovEIFaEoQ/s1600/USBVirtualBox8.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Como verán aparece “usbbotteable.vmdk”¡¡¡¡¡ Ahora damos en aceptar&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjXEeLwYsZN2YFxJF_AcA0qTCIYYk3DtT3RqIA3STgtFvwJY64klsAtFwhcPEkIp_bI9MPfHqXCy5-_Qswe9gezt4p4ZDXUmkTtu7ksTLexsqmCAnjRncSBZURlvbC09HbMq62fpdgO8zQ/s1600/USBVirtualBox9.png&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;191&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjXEeLwYsZN2YFxJF_AcA0qTCIYYk3DtT3RqIA3STgtFvwJY64klsAtFwhcPEkIp_bI9MPfHqXCy5-_Qswe9gezt4p4ZDXUmkTtu7ksTLexsqmCAnjRncSBZURlvbC09HbMq62fpdgO8zQ/s1600/USBVirtualBox9.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;
La hacemos arrancar y en la primer pantalla dice: “Presionar F12 para seleccionar el dispositivo a arrancar” y obviamente apretamos F12&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgJ8x3YnXl1izQXhr7c3o7YNFgCbGkIPjmxKr8BbV9QT404Zz8uximza1j2daC7JArhyphenhyphenDksNU2eIERrQCBYJtOvEirdl-JekeAUAlI_sjh0wYjKWI6O7LbHoZf5CGi6Mhtv27auLqJMViE/s1600/USBVirtualBox10.png&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;273&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgJ8x3YnXl1izQXhr7c3o7YNFgCbGkIPjmxKr8BbV9QT404Zz8uximza1j2daC7JArhyphenhyphenDksNU2eIERrQCBYJtOvEirdl-JekeAUAlI_sjh0wYjKWI6O7LbHoZf5CGi6Mhtv27auLqJMViE/s1600/USBVirtualBox10.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt; Seleccionamos “2) Primary Slave”&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgOesn97YgthUUO8yWYI0nSAYql6ycdourisBDpfZ5cq0Dv0MPoXmEoZWnnuuNLCbpnVbzHPqaCuMpAELPbNjpgOgCYzBr-Jz0hBHvgop3dcXw_sPO3uJ9MHR9WZFzObZmjGVWmf9B-Hac/s1600/USBVirtualBox11.png&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;177&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgOesn97YgthUUO8yWYI0nSAYql6ycdourisBDpfZ5cq0Dv0MPoXmEoZWnnuuNLCbpnVbzHPqaCuMpAELPbNjpgOgCYzBr-Jz0hBHvgop3dcXw_sPO3uJ9MHR9WZFzObZmjGVWmf9B-Hac/s1600/USBVirtualBox11.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Y listo lo logramos ya tenemos booteando nuestro pendrive en la maquina virtual&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjDW86_awB4UNOPZN7IQ9eD43kFfQXgke1MYjyJ-ylw1QWl3kgDYCudHqZrxD6o5D8aKYnJAsZfIibP4Vz0KyWC0sgez1sEsONMnGHwqnU9aGafz7WBymrKDbigRr0zEJdxGQ6vjXgzfzE/s1600/USBVirtualBox12.png&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;267&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjDW86_awB4UNOPZN7IQ9eD43kFfQXgke1MYjyJ-ylw1QWl3kgDYCudHqZrxD6o5D8aKYnJAsZfIibP4Vz0KyWC0sgez1sEsONMnGHwqnU9aGafz7WBymrKDbigRr0zEJdxGQ6vjXgzfzE/s1600/USBVirtualBox12.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;  (*) En el caso que no ejecuten el VirtualBox como administrador cuando agreguen el disco virtual les aparecerá:&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjiOXgP3lbJQ_MNrhuvie9_THAhvUqGK8PIuN5WIJe_Rtdoa52oCQt62tA0qiZpj11n1QZW1byQWFuK5q0jlr_Jr4FcQhir8JQXhnoWinOLX-b6fZq6mxy9Ye653CY83uHUGVsBdqgM4V8/s1600/USBVirtualBox13.png&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;194&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjiOXgP3lbJQ_MNrhuvie9_THAhvUqGK8PIuN5WIJe_Rtdoa52oCQt62tA0qiZpj11n1QZW1byQWFuK5q0jlr_Jr4FcQhir8JQXhnoWinOLX-b6fZq6mxy9Ye653CY83uHUGVsBdqgM4V8/s1600/USBVirtualBox13.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;  O les aparecerá directamente con un cartel con el mismo mensaje que muestra la imagen, si lo leen es fácil de entender, osea dice que tenemos el acceso denegado por obvias razones ese es el motivo por el cual debemos de ejecutarlo como administrador, bueno eso es todo y espero que lo logren entender y que les sea de utilidad como a mi¡¡¡ chau&lt;br /&gt;













&lt;!-- Blogger automated replacement: &quot;https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F3.bp.blogspot.com%2F-cy-3P9Nyr9U%2FU5jFfRFa_OI%2FAAAAAAAAAL4%2FxYl9z-CA8f0%2Fs1600%2FUSBVirtualBox10.png&amp;amp;container=blogger&amp;amp;gadget=a&amp;amp;rewriteMime=image%2F*&quot; with &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgJ8x3YnXl1izQXhr7c3o7YNFgCbGkIPjmxKr8BbV9QT404Zz8uximza1j2daC7JArhyphenhyphenDksNU2eIERrQCBYJtOvEirdl-JekeAUAlI_sjh0wYjKWI6O7LbHoZf5CGi6Mhtv27auLqJMViE/s1600/USBVirtualBox10.png&quot; --&gt;&lt;!-- Blogger automated replacement: &quot;https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F3.bp.blogspot.com%2F-kLXulaXFMbc%2FU5jFe0nAxUI%2FAAAAAAAAAK4%2FDuQ0d2Or2zw%2Fs1600%2FUSBVirtualBox.png&amp;amp;container=blogger&amp;amp;gadget=a&amp;amp;rewriteMime=image%2F*&quot; with &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihPtTWpAZgZ_q89vm1mm3ZNC0SksVnPDJvQJJfmPPXASVFpbX4BaVTlcYqhn-wYRHZhpwktcjOw4n4xknpejva-OoLMOd7CUibQQMBp2awnM58OQCREkoDiO2aEawmYAbJddPUS0szS80/s1600/USBVirtualBox.png&quot; --&gt;&lt;!-- Blogger automated replacement: &quot;https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F3.bp.blogspot.com%2F-qeQLKMdxtek%2FU5jFgXFlfmI%2FAAAAAAAAALs%2FkrykS2pBpe8%2Fs1600%2FUSBVirtualBox12.png&amp;amp;container=blogger&amp;amp;gadget=a&amp;amp;rewriteMime=image%2F*&quot; with &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjDW86_awB4UNOPZN7IQ9eD43kFfQXgke1MYjyJ-ylw1QWl3kgDYCudHqZrxD6o5D8aKYnJAsZfIibP4Vz0KyWC0sgez1sEsONMnGHwqnU9aGafz7WBymrKDbigRr0zEJdxGQ6vjXgzfzE/s1600/USBVirtualBox12.png&quot; --&gt;&lt;!-- Blogger automated replacement: &quot;https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F1.bp.blogspot.com%2F-3VkNG-kpJMA%2FU5jFgpBhUTI%2FAAAAAAAAALg%2F7si8Lk5Gttw%2Fs1600%2FUSBVirtualBox13.png&amp;amp;container=blogger&amp;amp;gadget=a&amp;amp;rewriteMime=image%2F*&quot; with &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjiOXgP3lbJQ_MNrhuvie9_THAhvUqGK8PIuN5WIJe_Rtdoa52oCQt62tA0qiZpj11n1QZW1byQWFuK5q0jlr_Jr4FcQhir8JQXhnoWinOLX-b6fZq6mxy9Ye653CY83uHUGVsBdqgM4V8/s1600/USBVirtualBox13.png&quot; --&gt;&lt;!-- Blogger automated replacement: &quot;https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F3.bp.blogspot.com%2F-w2pjzRAXfiw%2FU5jFgUupIWI%2FAAAAAAAAALc%2Fl_QKIrFE7CY%2Fs1600%2FUSBVirtualBox2.png&amp;amp;container=blogger&amp;amp;gadget=a&amp;amp;rewriteMime=image%2F*&quot; with &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSntOBE88EfhKQmz27q-Hc0_XmDp18XYKEMkdCuIaoT6bRzfoxajiN0c3-Bo_TpZdfOQ16kstkvt-E608f3iB4gufyLDdQZOHppg3yL9hBmhdS6IyGHWNskK7vI_udETCEO0YReI3xrsQ/s1600/USBVirtualBox2.png&quot; --&gt;&lt;!-- Blogger automated replacement: &quot;https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F4.bp.blogspot.com%2F-0iJZc8-40xg%2FU5jFi2wjc5I%2FAAAAAAAAAMc%2FV7F8eUkqgs8%2Fs1600%2FUSBVirtualBox8.png&amp;amp;container=blogger&amp;amp;gadget=a&amp;amp;rewriteMime=image%2F*&quot; with &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg-xjrqSlWppRb2_gEfXR8Zl00aFMBpHtvgqzXAvuC0Gw9vzpaP3OC8RlmUaOgWYlGiRWdrIoslYkrrmpF1QH2kteJEYstfcjSaSPPhb4XLgYG9GWvCaxn1ZhpbvIlMotnAapovEIFaEoQ/s1600/USBVirtualBox8.png&quot; --&gt;&lt;!-- Blogger automated replacement: &quot;https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F4.bp.blogspot.com%2F-uzC2DZLxiA4%2FU5jFe9PBa9I%2FAAAAAAAAAK0%2FrMvoMAnbUcM%2Fs1600%2FUSBVirtualBox1.png&amp;amp;container=blogger&amp;amp;gadget=a&amp;amp;rewriteMime=image%2F*&quot; with &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgOz3PYmN1y21MPVKMGLipiNlnc5UABkPiAj3p2u8lS1DUh0GUNWxR0jboJ9Ng_EZK4mMEwH-qn47oA-1qzWDpxJ6j2oYgmbJWnhDRWwERwx8SoDMYNLU0oM53xK8jtRSg9qO2G5cscnes/s1600/USBVirtualBox1.png&quot; --&gt;&lt;!-- Blogger automated replacement: &quot;https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F2.bp.blogspot.com%2F-LYNtXW2MGds%2FU5jFij0JlnI%2FAAAAAAAAAME%2FdcOHnn2YUyA%2Fs1600%2FUSBVirtualBox6.png&amp;amp;container=blogger&amp;amp;gadget=a&amp;amp;rewriteMime=image%2F*&quot; with &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEikLwgOIvKqL8-uPdXRKCZQ0xWCrs7LcAg7Mesre8uh0Wt6Kx29BaI57eB50Q9F85_CVLqiXC4fgsb6Dp1TN-rhrGwsY3CoTw13snljYoyDKEhaFq6neU4TurTo4b7ibA-VO-jMP6qnUw4/s1600/USBVirtualBox6.png&quot; --&gt;&lt;!-- Blogger automated replacement: &quot;https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F2.bp.blogspot.com%2F-edOYrNtFxKY%2FU5jFhEA5MUI%2FAAAAAAAAAL0%2FXFosf2Cr3mw%2Fs1600%2FUSBVirtualBox4.png&amp;amp;container=blogger&amp;amp;gadget=a&amp;amp;rewriteMime=image%2F*&quot; with &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjGqgJ68SbZ-Jm-njKLfa6S8N_JWyH-8JCaF5rpHG2MIfELj_z3OhngaYxsZzsn9IAtONeONIqMXNair0u_tF7WP7kxqY9v1UkpC7acp07wR0n8Ycpa-7jYj6ZESsuGC-gEa7mfvPczNog/s1600/USBVirtualBox4.png&quot; --&gt;&lt;!-- Blogger automated replacement: &quot;https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F4.bp.blogspot.com%2F-ZTH0DEmpwdQ%2FU5jFjfJBWwI%2FAAAAAAAAAMQ%2FbHNF7S6E57c%2Fs1600%2FUSBVirtualBox9.png&amp;amp;container=blogger&amp;amp;gadget=a&amp;amp;rewriteMime=image%2F*&quot; with &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjXEeLwYsZN2YFxJF_AcA0qTCIYYk3DtT3RqIA3STgtFvwJY64klsAtFwhcPEkIp_bI9MPfHqXCy5-_Qswe9gezt4p4ZDXUmkTtu7ksTLexsqmCAnjRncSBZURlvbC09HbMq62fpdgO8zQ/s1600/USBVirtualBox9.png&quot; --&gt;&lt;!-- Blogger automated replacement: &quot;https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F3.bp.blogspot.com%2F-cmvzYgGLpok%2FU5jFfYxqwrI%2FAAAAAAAAALI%2Fdz6avQEdyB8%2Fs1600%2FUSBVirtualBox11.png&amp;amp;container=blogger&amp;amp;gadget=a&amp;amp;rewriteMime=image%2F*&quot; with &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgOesn97YgthUUO8yWYI0nSAYql6ycdourisBDpfZ5cq0Dv0MPoXmEoZWnnuuNLCbpnVbzHPqaCuMpAELPbNjpgOgCYzBr-Jz0hBHvgop3dcXw_sPO3uJ9MHR9WZFzObZmjGVWmf9B-Hac/s1600/USBVirtualBox11.png&quot; --&gt;&lt;!-- Blogger automated replacement: &quot;https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F1.bp.blogspot.com%2F-b6rBHtdFWN8%2FU5jFi33rHSI%2FAAAAAAAAAMM%2F0Fa0MLf27HM%2Fs1600%2FUSBVirtualBox7.png&amp;amp;container=blogger&amp;amp;gadget=a&amp;amp;rewriteMime=image%2F*&quot; with &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhxtpDttyf_LCH-xRqOj_OLCQn4mPXlWsq4oslxQ5tKpXSBctPmN7BVGQltSoMHn3yRN3HEc4A6fnZRPXknXyaVhH21YuNeiNhpvdUTPv8licZbSP5_OB27POPG4NtKWt4MhQjYbojZ7VY/s1600/USBVirtualBox7.png&quot; --&gt;&lt;!-- Blogger automated replacement: &quot;https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F2.bp.blogspot.com%2F-qtpPtR7LOBk%2FU5jFg_3615I%2FAAAAAAAAALk%2FiphM1HlqY_I%2Fs1600%2FUSBVirtualBox3.png&amp;amp;container=blogger&amp;amp;gadget=a&amp;amp;rewriteMime=image%2F*&quot; with &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiKD7i3csxQ3sToxJe8cWgGxRyh8htcNeiQejQ33IS_DH8YqkFplCWlLueC-Xv_a4eiQkc8dyGws0XiLk3qT1wIML15hXpEzglLI3cjISUIQ7hfeiYG-9vcqVaoJOch6y-7sdz27RpFpzA/s1600/USBVirtualBox3.png&quot; --&gt;&lt;!-- Blogger automated replacement: &quot;https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F3.bp.blogspot.com%2F-_yxU907TMQE%2FU5jFh5ulRDI%2FAAAAAAAAAMY%2FLj7vq3ESG2I%2Fs1600%2FUSBVirtualBox5.png&amp;amp;container=blogger&amp;amp;gadget=a&amp;amp;rewriteMime=image%2F*&quot; with &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjTE500wEYc_Firy1u4Uq17dw2SGKLAyagk6-npSHMToYl1RfG4CsCv8p44umjwNSyLs3vzUA6rE0QCRN38vZnh0HFH0lUJC16RDIRDK4SVRt1aFfWPcl-kqfPCTTnZVq3cHB8lhq5xiiM/s1600/USBVirtualBox5.png&quot; --&gt;</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/882062083212548147/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2014/06/como-hacer-booteable-un-usb-en.html#comment-form' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/882062083212548147'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/882062083212548147'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2014/06/como-hacer-booteable-un-usb-en.html' title='Como hacer booteable un USB en virtualBox 2014'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgOz3PYmN1y21MPVKMGLipiNlnc5UABkPiAj3p2u8lS1DUh0GUNWxR0jboJ9Ng_EZK4mMEwH-qn47oA-1qzWDpxJ6j2oYgmbJWnhDRWwERwx8SoDMYNLU0oM53xK8jtRSg9qO2G5cscnes/s72-c/USBVirtualBox1.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-5806761265152471650</id><published>2014-06-11T10:14:00.000-07:00</published><updated>2014-06-12T15:37:22.165-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="ghost"/><title type='text'>Ghost como USB booteable</title><content type='html'>&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:OfficeDocumentSettings&gt;
  &lt;o:AllowPNG/&gt;
 &lt;/o:OfficeDocumentSettings&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;w:WordDocument&gt;
  &lt;w:View&gt;Normal&lt;/w:View&gt;
  &lt;w:Zoom&gt;0&lt;/w:Zoom&gt;
  &lt;w:TrackMoves/&gt;
  &lt;w:TrackFormatting/&gt;
  &lt;w:HyphenationZone&gt;21&lt;/w:HyphenationZone&gt;
  &lt;w:PunctuationKerning/&gt;
  &lt;w:ValidateAgainstSchemas/&gt;
  &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;
  &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt;
  &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;
  &lt;w:DoNotPromoteQF/&gt;
  &lt;w:LidThemeOther&gt;ES-AR&lt;/w:LidThemeOther&gt;
  &lt;w:LidThemeAsian&gt;X-NONE&lt;/w:LidThemeAsian&gt;
  &lt;w:LidThemeComplexScript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;
  &lt;w:Compatibility&gt;
   &lt;w:BreakWrappedTables/&gt;
   &lt;w:SnapToGridInCell/&gt;
   &lt;w:WrapTextWithPunct/&gt;
   &lt;w:UseAsianBreakRules/&gt;
   &lt;w:DontGrowAutofit/&gt;
   &lt;w:SplitPgBreakAndParaMark/&gt;
   &lt;w:EnableOpenTypeKerning/&gt;
   &lt;w:DontFlipMirrorIndents/&gt;
   &lt;w:OverrideTableStyleHps/&gt;
  &lt;/w:Compatibility&gt;
  &lt;m:mathPr&gt;
   &lt;m:mathFont m:val=&quot;Cambria Math&quot;/&gt;
   &lt;m:brkBin m:val=&quot;before&quot;/&gt;
   &lt;m:brkBinSub m:val=&quot;&amp;#45;-&quot;/&gt;
   &lt;m:smallFrac m:val=&quot;off&quot;/&gt;
   &lt;m:dispDef/&gt;
   &lt;m:lMargin m:val=&quot;0&quot;/&gt;
   &lt;m:rMargin m:val=&quot;0&quot;/&gt;
   &lt;m:defJc m:val=&quot;centerGroup&quot;/&gt;
   &lt;m:wrapIndent m:val=&quot;1440&quot;/&gt;
   &lt;m:intLim m:val=&quot;subSup&quot;/&gt;
   &lt;m:naryLim m:val=&quot;undOvr&quot;/&gt;
  &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;w:LatentStyles DefLockedState=&quot;false&quot; DefUnhideWhenUsed=&quot;false&quot;
  DefSemiHidden=&quot;false&quot; DefQFormat=&quot;false&quot; DefPriority=&quot;99&quot;
  LatentStyleCount=&quot;371&quot;&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;0&quot; QFormat=&quot;true&quot; Name=&quot;Normal&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 9&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 9&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 9&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Normal Indent&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;footnote text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;annotation text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;header&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;footer&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index heading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;35&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;caption&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;table of figures&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;envelope address&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;envelope return&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;footnote reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;annotation reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;line number&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;page number&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;endnote reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;endnote text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;table of authorities&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;macro&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;toa heading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Bullet&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Number&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Bullet 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Bullet 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Bullet 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Bullet 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Number 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Number 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Number 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Number 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;10&quot; QFormat=&quot;true&quot; Name=&quot;Title&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Closing&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Signature&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;1&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;Default Paragraph Font&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text Indent&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Continue&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Continue 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Continue 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Continue 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Continue 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Message Header&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;11&quot; QFormat=&quot;true&quot; Name=&quot;Subtitle&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Salutation&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Date&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text First Indent&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text First Indent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Note Heading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text Indent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text Indent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Block Text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Hyperlink&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;FollowedHyperlink&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;22&quot; QFormat=&quot;true&quot; Name=&quot;Strong&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;20&quot; QFormat=&quot;true&quot; Name=&quot;Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Document Map&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Plain Text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;E-mail Signature&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Top of Form&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Bottom of Form&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Normal (Web)&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Acronym&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Address&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Cite&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Code&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Definition&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Keyboard&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Preformatted&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Sample&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Typewriter&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Variable&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Normal Table&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;annotation subject&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;No List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Outline List 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Outline List 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Outline List 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Simple 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Simple 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Simple 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Classic 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Classic 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Classic 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Classic 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Colorful 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Colorful 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Colorful 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Columns 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Columns 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Columns 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Columns 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Columns 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table 3D effects 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table 3D effects 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table 3D effects 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Contemporary&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Elegant&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Professional&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Subtle 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Subtle 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Web 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Web 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Web 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Balloon Text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;Table Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Theme&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; Name=&quot;Placeholder Text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;1&quot; QFormat=&quot;true&quot; Name=&quot;No Spacing&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; Name=&quot;Revision&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;34&quot; QFormat=&quot;true&quot;
   Name=&quot;List Paragraph&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;29&quot; QFormat=&quot;true&quot; Name=&quot;Quote&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;30&quot; QFormat=&quot;true&quot;
   Name=&quot;Intense Quote&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;19&quot; QFormat=&quot;true&quot;
   Name=&quot;Subtle Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;21&quot; QFormat=&quot;true&quot;
   Name=&quot;Intense Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;31&quot; QFormat=&quot;true&quot;
   Name=&quot;Subtle Reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;32&quot; QFormat=&quot;true&quot;
   Name=&quot;Intense Reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;33&quot; QFormat=&quot;true&quot; Name=&quot;Book Title&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;37&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;Bibliography&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;TOC Heading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;41&quot; Name=&quot;Plain Table 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;42&quot; Name=&quot;Plain Table 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;43&quot; Name=&quot;Plain Table 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;44&quot; Name=&quot;Plain Table 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;45&quot; Name=&quot;Plain Table 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;40&quot; Name=&quot;Grid Table Light&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot; Name=&quot;Grid Table 1 Light&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot; Name=&quot;Grid Table 6 Colorful&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot; Name=&quot;Grid Table 7 Colorful&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;Grid Table 1 Light Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;Grid Table 6 Colorful Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;Grid Table 7 Colorful Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;Grid Table 1 Light Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;Grid Table 6 Colorful Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;Grid Table 7 Colorful Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;Grid Table 1 Light Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;Grid Table 6 Colorful Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;Grid Table 7 Colorful Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;Grid Table 1 Light Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;Grid Table 6 Colorful Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;Grid Table 7 Colorful Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;Grid Table 1 Light Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;Grid Table 6 Colorful Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;Grid Table 7 Colorful Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;Grid Table 1 Light Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;Grid Table 6 Colorful Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;Grid Table 7 Colorful Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot; Name=&quot;List Table 1 Light&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot; Name=&quot;List Table 6 Colorful&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot; Name=&quot;List Table 7 Colorful&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;List Table 1 Light Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;List Table 6 Colorful Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;List Table 7 Colorful Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;List Table 1 Light Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;List Table 6 Colorful Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;List Table 7 Colorful Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;List Table 1 Light Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;List Table 6 Colorful Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;List Table 7 Colorful Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;List Table 1 Light Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;List Table 6 Colorful Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;List Table 7 Colorful Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;List Table 1 Light Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;List Table 6 Colorful Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;List Table 7 Colorful Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;List Table 1 Light Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;List Table 6 Colorful Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;List Table 7 Colorful Accent 6&quot;/&gt;
 &lt;/w:LatentStyles&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 10]&gt;
&lt;style&gt;
 /* Style Definitions */
 table.MsoNormalTable
 {mso-style-name:&quot;Tabla normal&quot;;
 mso-tstyle-rowband-size:0;
 mso-tstyle-colband-size:0;
 mso-style-noshow:yes;
 mso-style-priority:99;
 mso-style-parent:&quot;&quot;;
 mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
 mso-para-margin-top:0cm;
 mso-para-margin-right:0cm;
 mso-para-margin-bottom:8.0pt;
 mso-para-margin-left:0cm;
 line-height:107%;
 mso-pagination:widow-orphan;
 font-size:11.0pt;
 font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
 mso-ascii-font-family:Calibri;
 mso-ascii-theme-font:minor-latin;
 mso-hansi-font-family:Calibri;
 mso-hansi-theme-font:minor-latin;
 mso-fareast-language:EN-US;}
&lt;/style&gt;
&lt;![endif]--&gt;

&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: normal;&quot;&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Hola a
todos, bueno a mi particularmente me resulto útil para reparar una ultrabook hp
que no podía bootear desde ningún DVD que ya tenga el ghost como para poder
realizar la imagen del disco, y con esto pude realizar sin problemas el
resguardo, los pasos son los siguientes:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;ul&gt;&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;
&lt;/span&gt;&lt;/span&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Descargamos los archivos para realizar el booteo del ghost en un pendrive, &lt;a href=&quot;https://mega.co.nz/#F!jY93CZ7C!eLw3pVwvazo7CWgFGqN8cw&quot; target=&quot;_blank&quot;&gt;link&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;
&lt;/span&gt;&lt;/span&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span class=&quot;export-link-gray-txt file-key&quot; style=&quot;font-size: small;&quot;&gt;El MD5.txt tiene como su nombre lo indica un md5 y la pagina para que comparen y vean que no tiene infección ni nada extraño¡¡¡ &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;
&lt;/span&gt;&lt;/span&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span class=&quot;export-link-gray-txt file-key&quot; style=&quot;font-size: small;&quot;&gt;&amp;nbsp;Estos son los archivo:&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span class=&quot;export-link-gray-txt file-key&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjinWgk6ZhRe-lAddpPR_iPj_fsDTBoWIW_1faaX7ycUC2k7mQyDi7jlV2tIU10VatcRSF4YE1JPJKAvx7hRBcfkV9iD6WC0ZDFTGERubhGAr_1ABx6bNXFKONyF42mLZ7t4V3tQk6KEDc/s1600/ghost+usb12.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjinWgk6ZhRe-lAddpPR_iPj_fsDTBoWIW_1faaX7ycUC2k7mQyDi7jlV2tIU10VatcRSF4YE1JPJKAvx7hRBcfkV9iD6WC0ZDFTGERubhGAr_1ABx6bNXFKONyF42mLZ7t4V3tQk6KEDc/s1600/ghost+usb12.png&quot; height=&quot;233&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span class=&quot;export-link-gray-txt file-key&quot;&gt;
&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span class=&quot;export-link-gray-txt file-key&quot; style=&quot;font-size: small;&quot;&gt;Luego vamos a la carpeta &quot;format usb&quot; y ejecutamos el archivo &quot;usb_format.exe&quot; si tu sistema operativo es windows 8/8.1 debemos ejecutarlo como administrador.&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;
&lt;/span&gt;&lt;/span&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span class=&quot;export-link-gray-txt file-key&quot; style=&quot;font-size: small;&quot;&gt;Ahora los pasos a seguir son:&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRnchizu2xmb4_EnC_t3WLPnpqDcjKo3sqGDPXdQXiR0pZEnCdk9qV3gEEXddenWoM2iWPAn_me1uGwbKIvE5Kygt6LjgWHpRrAiAomab1TgOHLWW4vrcupl5j4k-Pk_ha3MEALNVjSMo/s1600/ghost+usb2.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRnchizu2xmb4_EnC_t3WLPnpqDcjKo3sqGDPXdQXiR0pZEnCdk9qV3gEEXddenWoM2iWPAn_me1uGwbKIvE5Kygt6LjgWHpRrAiAomab1TgOHLWW4vrcupl5j4k-Pk_ha3MEALNVjSMo/s1600/ghost+usb2.png&quot; height=&quot;233&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;ol&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:OfficeDocumentSettings&gt;
  &lt;o:AllowPNG/&gt;
 &lt;/o:OfficeDocumentSettings&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;/ol&gt;
&lt;ol start=&quot;1&quot; type=&quot;1&quot;&gt;&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;
&lt;/span&gt;&lt;/span&gt;
&lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: normal;&quot;&gt;&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;El primer paso es
     seleccionar el pendrive en el cual lo transformaremos en booteable&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;
&lt;/span&gt;&lt;/span&gt;
&lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: normal;&quot;&gt;&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Le indicamos que será
     formateado en FAT32&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;
&lt;/span&gt;&lt;/span&gt;
&lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: normal;&quot;&gt;&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Acá escribimos el nombre que
     tendría el pendrive&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;
&lt;/span&gt;&lt;/span&gt;
&lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: normal;&quot;&gt;&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Seleccionamos que realice en
     formato rápido&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;
&lt;/span&gt;&lt;/span&gt;
&lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: normal;&quot;&gt;&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;El siguiente paso sería
     decirle que crearemos un disco booteable con archivos DOS&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;
&lt;/span&gt;&lt;/span&gt;
&lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: normal;&quot;&gt;&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Luego nos dirigimos a la
     carpeta windows 98 en donde están los archivo DOS&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;ol&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;w:WordDocument&gt;
  &lt;w:View&gt;Normal&lt;/w:View&gt;
  &lt;w:Zoom&gt;0&lt;/w:Zoom&gt;
  &lt;w:TrackMoves/&gt;
  &lt;w:TrackFormatting/&gt;
  &lt;w:HyphenationZone&gt;21&lt;/w:HyphenationZone&gt;
  &lt;w:PunctuationKerning/&gt;
  &lt;w:ValidateAgainstSchemas/&gt;
  &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;
  &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt;
  &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;
  &lt;w:DoNotPromoteQF/&gt;
  &lt;w:LidThemeOther&gt;ES-AR&lt;/w:LidThemeOther&gt;
  &lt;w:LidThemeAsian&gt;X-NONE&lt;/w:LidThemeAsian&gt;
  &lt;w:LidThemeComplexScript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;
  &lt;w:Compatibility&gt;
   &lt;w:BreakWrappedTables/&gt;
   &lt;w:SnapToGridInCell/&gt;
   &lt;w:WrapTextWithPunct/&gt;
   &lt;w:UseAsianBreakRules/&gt;
   &lt;w:DontGrowAutofit/&gt;
   &lt;w:SplitPgBreakAndParaMark/&gt;
   &lt;w:EnableOpenTypeKerning/&gt;
   &lt;w:DontFlipMirrorIndents/&gt;
   &lt;w:OverrideTableStyleHps/&gt;
  &lt;/w:Compatibility&gt;
  &lt;m:mathPr&gt;
   &lt;m:mathFont m:val=&quot;Cambria Math&quot;/&gt;
   &lt;m:brkBin m:val=&quot;before&quot;/&gt;
   &lt;m:brkBinSub m:val=&quot;&amp;#45;-&quot;/&gt;
   &lt;m:smallFrac m:val=&quot;off&quot;/&gt;
   &lt;m:dispDef/&gt;
   &lt;m:lMargin m:val=&quot;0&quot;/&gt;
   &lt;m:rMargin m:val=&quot;0&quot;/&gt;
   &lt;m:defJc m:val=&quot;centerGroup&quot;/&gt;
   &lt;m:wrapIndent m:val=&quot;1440&quot;/&gt;
   &lt;m:intLim m:val=&quot;subSup&quot;/&gt;
   &lt;m:naryLim m:val=&quot;undOvr&quot;/&gt;
  &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;w:LatentStyles DefLockedState=&quot;false&quot; DefUnhideWhenUsed=&quot;false&quot;
  DefSemiHidden=&quot;false&quot; DefQFormat=&quot;false&quot; DefPriority=&quot;99&quot;
  LatentStyleCount=&quot;371&quot;&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;0&quot; QFormat=&quot;true&quot; Name=&quot;Normal&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 9&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 9&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 9&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Normal Indent&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;footnote text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;annotation text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;header&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;footer&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index heading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;35&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;caption&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;table of figures&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;envelope address&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;envelope return&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;footnote reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;annotation reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;line number&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;page number&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;endnote reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;endnote text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;table of authorities&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;macro&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;toa heading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Bullet&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Number&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Bullet 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Bullet 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Bullet 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Bullet 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Number 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Number 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Number 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Number 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;10&quot; QFormat=&quot;true&quot; Name=&quot;Title&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Closing&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Signature&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;1&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;Default Paragraph Font&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text Indent&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Continue&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Continue 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Continue 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Continue 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Continue 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Message Header&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;11&quot; QFormat=&quot;true&quot; Name=&quot;Subtitle&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Salutation&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Date&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text First Indent&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text First Indent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Note Heading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text Indent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text Indent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Block Text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Hyperlink&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;FollowedHyperlink&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;22&quot; QFormat=&quot;true&quot; Name=&quot;Strong&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;20&quot; QFormat=&quot;true&quot; Name=&quot;Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Document Map&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Plain Text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;E-mail Signature&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Top of Form&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Bottom of Form&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Normal (Web)&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Acronym&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Address&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Cite&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Code&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Definition&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Keyboard&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Preformatted&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Sample&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Typewriter&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Variable&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Normal Table&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;annotation subject&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;No List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Outline List 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Outline List 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Outline List 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Simple 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Simple 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Simple 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Classic 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Classic 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Classic 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Classic 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Colorful 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Colorful 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Colorful 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Columns 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Columns 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Columns 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Columns 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Columns 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table 3D effects 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table 3D effects 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table 3D effects 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Contemporary&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Elegant&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Professional&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Subtle 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Subtle 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Web 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Web 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Web 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Balloon Text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;Table Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Theme&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; Name=&quot;Placeholder Text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;1&quot; QFormat=&quot;true&quot; Name=&quot;No Spacing&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; Name=&quot;Revision&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;34&quot; QFormat=&quot;true&quot;
   Name=&quot;List Paragraph&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;29&quot; QFormat=&quot;true&quot; Name=&quot;Quote&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;30&quot; QFormat=&quot;true&quot;
   Name=&quot;Intense Quote&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;19&quot; QFormat=&quot;true&quot;
   Name=&quot;Subtle Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;21&quot; QFormat=&quot;true&quot;
   Name=&quot;Intense Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;31&quot; QFormat=&quot;true&quot;
   Name=&quot;Subtle Reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;32&quot; QFormat=&quot;true&quot;
   Name=&quot;Intense Reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;33&quot; QFormat=&quot;true&quot; Name=&quot;Book Title&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;37&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;Bibliography&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;TOC Heading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;41&quot; Name=&quot;Plain Table 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;42&quot; Name=&quot;Plain Table 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;43&quot; Name=&quot;Plain Table 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;44&quot; Name=&quot;Plain Table 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;45&quot; Name=&quot;Plain Table 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;40&quot; Name=&quot;Grid Table Light&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot; Name=&quot;Grid Table 1 Light&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot; Name=&quot;Grid Table 6 Colorful&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot; Name=&quot;Grid Table 7 Colorful&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;Grid Table 1 Light Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;Grid Table 6 Colorful Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;Grid Table 7 Colorful Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;Grid Table 1 Light Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;Grid Table 6 Colorful Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;Grid Table 7 Colorful Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;Grid Table 1 Light Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;Grid Table 6 Colorful Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;Grid Table 7 Colorful Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;Grid Table 1 Light Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;Grid Table 6 Colorful Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;Grid Table 7 Colorful Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;Grid Table 1 Light Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;Grid Table 6 Colorful Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;Grid Table 7 Colorful Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;Grid Table 1 Light Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;Grid Table 6 Colorful Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;Grid Table 7 Colorful Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot; Name=&quot;List Table 1 Light&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot; Name=&quot;List Table 6 Colorful&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot; Name=&quot;List Table 7 Colorful&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;List Table 1 Light Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;List Table 6 Colorful Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;List Table 7 Colorful Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;List Table 1 Light Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;List Table 6 Colorful Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;List Table 7 Colorful Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;List Table 1 Light Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;List Table 6 Colorful Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;List Table 7 Colorful Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;List Table 1 Light Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;List Table 6 Colorful Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;List Table 7 Colorful Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;List Table 1 Light Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;List Table 6 Colorful Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;List Table 7 Colorful Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;List Table 1 Light Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;List Table 6 Colorful Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;List Table 7 Colorful Accent 6&quot;/&gt;
 &lt;/w:LatentStyles&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 10]&gt;
&lt;style&gt;
 /* Style Definitions */
 table.MsoNormalTable
 {mso-style-name:&quot;Tabla normal&quot;;
 mso-tstyle-rowband-size:0;
 mso-tstyle-colband-size:0;
 mso-style-noshow:yes;
 mso-style-priority:99;
 mso-style-parent:&quot;&quot;;
 mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
 mso-para-margin-top:0cm;
 mso-para-margin-right:0cm;
 mso-para-margin-bottom:8.0pt;
 mso-para-margin-left:0cm;
 line-height:107%;
 mso-pagination:widow-orphan;
 font-size:11.0pt;
 font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
 mso-ascii-font-family:Calibri;
 mso-ascii-theme-font:minor-latin;
 mso-hansi-font-family:Calibri;
 mso-hansi-theme-font:minor-latin;
 mso-fareast-language:EN-US;}
&lt;/style&gt;
&lt;![endif]--&gt;&lt;/ol&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjniM5QgzHHnyHLCUspvDoPNoBeDxaBosjHYI69dHSX_9zZOeDwMlJDhxroM7Ks7ZWdAFdZxA7Op5batPCZ6j6TSGD4sOITvyG1fDZvUpYc4xBe05jTCV0_qL4elXh4VPPLwAw_7Xbr0pA/s1600/ghost+usb3.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjniM5QgzHHnyHLCUspvDoPNoBeDxaBosjHYI69dHSX_9zZOeDwMlJDhxroM7Ks7ZWdAFdZxA7Op5batPCZ6j6TSGD4sOITvyG1fDZvUpYc4xBe05jTCV0_qL4elXh4VPPLwAw_7Xbr0pA/s1600/ghost+usb3.png&quot; height=&quot;320&quot; width=&quot;311&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp; &lt;span style=&quot;font-size: small;&quot;&gt;7.&amp;nbsp; Por último le damos en start&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Obtendremos el siguiente cartel:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqSEcbD_Qn5jQxo76u98DmK5MiuPP2zFT9Wo5wYHV08dUSRr996Qepnyj1tM5QmNGnGTDug9YeeKrm22t7Dvml3rrC3TGTZzKYkRc1jeIyLflmoNZCbRsaRVyJM03F5IwGcYImA_qFy1o/s1600/ghost+usb4.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqSEcbD_Qn5jQxo76u98DmK5MiuPP2zFT9Wo5wYHV08dUSRr996Qepnyj1tM5QmNGnGTDug9YeeKrm22t7Dvml3rrC3TGTZzKYkRc1jeIyLflmoNZCbRsaRVyJM03F5IwGcYImA_qFy1o/s1600/ghost+usb4.png&quot; height=&quot;211&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:OfficeDocumentSettings&gt;
  &lt;o:AllowPNG/&gt;
 &lt;/o:OfficeDocumentSettings&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;w:WordDocument&gt;
  &lt;w:View&gt;Normal&lt;/w:View&gt;
  &lt;w:Zoom&gt;0&lt;/w:Zoom&gt;
  &lt;w:TrackMoves/&gt;
  &lt;w:TrackFormatting/&gt;
  &lt;w:HyphenationZone&gt;21&lt;/w:HyphenationZone&gt;
  &lt;w:PunctuationKerning/&gt;
  &lt;w:ValidateAgainstSchemas/&gt;
  &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;
  &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt;
  &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;
  &lt;w:DoNotPromoteQF/&gt;
  &lt;w:LidThemeOther&gt;ES-AR&lt;/w:LidThemeOther&gt;
  &lt;w:LidThemeAsian&gt;X-NONE&lt;/w:LidThemeAsian&gt;
  &lt;w:LidThemeComplexScript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;
  &lt;w:Compatibility&gt;
   &lt;w:BreakWrappedTables/&gt;
   &lt;w:SnapToGridInCell/&gt;
   &lt;w:WrapTextWithPunct/&gt;
   &lt;w:UseAsianBreakRules/&gt;
   &lt;w:DontGrowAutofit/&gt;
   &lt;w:SplitPgBreakAndParaMark/&gt;
   &lt;w:EnableOpenTypeKerning/&gt;
   &lt;w:DontFlipMirrorIndents/&gt;
   &lt;w:OverrideTableStyleHps/&gt;
  &lt;/w:Compatibility&gt;
  &lt;m:mathPr&gt;
   &lt;m:mathFont m:val=&quot;Cambria Math&quot;/&gt;
   &lt;m:brkBin m:val=&quot;before&quot;/&gt;
   &lt;m:brkBinSub m:val=&quot;&amp;#45;-&quot;/&gt;
   &lt;m:smallFrac m:val=&quot;off&quot;/&gt;
   &lt;m:dispDef/&gt;
   &lt;m:lMargin m:val=&quot;0&quot;/&gt;
   &lt;m:rMargin m:val=&quot;0&quot;/&gt;
   &lt;m:defJc m:val=&quot;centerGroup&quot;/&gt;
   &lt;m:wrapIndent m:val=&quot;1440&quot;/&gt;
   &lt;m:intLim m:val=&quot;subSup&quot;/&gt;
   &lt;m:naryLim m:val=&quot;undOvr&quot;/&gt;
  &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small; line-height: 107%;&quot;&gt;Que
nos indica que estamos a punto de formatear y como somos precavidos seguramente
si teníamos archivos ya deberíamos de tener el backups de este pendrive, luego
simplemente le damos que SI&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhbTfZ9EXvUQ-FUydArygUHwJBlaiFuIFFjY_3ws97HQMlDDuvMG4ZkiI3foly2n71BvNg7dgGZzmdyvi4jzyzvzUYOKk-qCE-SdQBIAr3SATZ3MPnN5MIYlQw5x_hO_ClieoBd8MBEIa8/s1600/ghost+usb5.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhbTfZ9EXvUQ-FUydArygUHwJBlaiFuIFFjY_3ws97HQMlDDuvMG4ZkiI3foly2n71BvNg7dgGZzmdyvi4jzyzvzUYOKk-qCE-SdQBIAr3SATZ3MPnN5MIYlQw5x_hO_ClieoBd8MBEIa8/s1600/ghost+usb5.png&quot; height=&quot;288&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Al cabo de unos pocos segundos nos informa que ya termino y si vamos al pendrive obviamente teniendo la opción de ver los archivos ocultos de las carpetar habilitada, podremos ver los siguientes archivos:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgMqlo656ETIDgHKl7KwIkk3Fr_YFuCp82eN4btH1gdJCu-aKGfK1ZJNs8Oj5fTcLS2WjkgB7mtznuY9bsd4XGmcE6T0LMioITLc0GhP4breSnI3Eld9P1L5Fec3h24oxjdik-bBk1Wuf8/s1600/ghost+usb6.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgMqlo656ETIDgHKl7KwIkk3Fr_YFuCp82eN4btH1gdJCu-aKGfK1ZJNs8Oj5fTcLS2WjkgB7mtznuY9bsd4XGmcE6T0LMioITLc0GhP4breSnI3Eld9P1L5Fec3h24oxjdik-bBk1Wuf8/s1600/ghost+usb6.png&quot; height=&quot;230&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;En este punto solo nos queda ir a la carpeta&amp;nbsp; ghost y copiar todos los archivos que en ella se encuentren:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisa0ZJgOxyjBTd-4BBAr1t82nX21SRRRsOV-Pn3OG7YKp7vMJgkw-Pe2BcGi4wMGpcNAQHuJlTirjujQmhWlV4c3lUXisW4qzKCnIMa4DWERWuQa4J60vF-Bj3BgrPS-PWxiQDDlggAtc/s1600/ghost+usb7.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisa0ZJgOxyjBTd-4BBAr1t82nX21SRRRsOV-Pn3OG7YKp7vMJgkw-Pe2BcGi4wMGpcNAQHuJlTirjujQmhWlV4c3lUXisW4qzKCnIMa4DWERWuQa4J60vF-Bj3BgrPS-PWxiQDDlggAtc/s1600/ghost+usb7.png&quot; height=&quot;233&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Después los pegamos en el pendrive:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhXCxnt4nbQ8CgxDAg4qTd7bzFNj88ir55ePzxjDGlhPuEr1d2-i7GV2pLXMx3qcya5TFHXS7pG0DN_l6yF8P8QrEspWBLHXZyBlpIQDEdCdWuaWXomlT3g8IbL-LVnuIUilJEbs3rEDKY/s1600/ghost+usb8.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhXCxnt4nbQ8CgxDAg4qTd7bzFNj88ir55ePzxjDGlhPuEr1d2-i7GV2pLXMx3qcya5TFHXS7pG0DN_l6yF8P8QrEspWBLHXZyBlpIQDEdCdWuaWXomlT3g8IbL-LVnuIUilJEbs3rEDKY/s1600/ghost+usb8.png&quot; height=&quot;232&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;w:WordDocument&gt;
  &lt;w:View&gt;Normal&lt;/w:View&gt;
  &lt;w:Zoom&gt;0&lt;/w:Zoom&gt;
  &lt;w:TrackMoves/&gt;
  &lt;w:TrackFormatting/&gt;
  &lt;w:HyphenationZone&gt;21&lt;/w:HyphenationZone&gt;
  &lt;w:PunctuationKerning/&gt;
  &lt;w:ValidateAgainstSchemas/&gt;
  &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;
  &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt;
  &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;
  &lt;w:DoNotPromoteQF/&gt;
  &lt;w:LidThemeOther&gt;ES-AR&lt;/w:LidThemeOther&gt;
  &lt;w:LidThemeAsian&gt;X-NONE&lt;/w:LidThemeAsian&gt;
  &lt;w:LidThemeComplexScript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;
  &lt;w:Compatibility&gt;
   &lt;w:BreakWrappedTables/&gt;
   &lt;w:SnapToGridInCell/&gt;
   &lt;w:WrapTextWithPunct/&gt;
   &lt;w:UseAsianBreakRules/&gt;
   &lt;w:DontGrowAutofit/&gt;
   &lt;w:SplitPgBreakAndParaMark/&gt;
   &lt;w:EnableOpenTypeKerning/&gt;
   &lt;w:DontFlipMirrorIndents/&gt;
   &lt;w:OverrideTableStyleHps/&gt;
  &lt;/w:Compatibility&gt;
  &lt;m:mathPr&gt;
   &lt;m:mathFont m:val=&quot;Cambria Math&quot;/&gt;
   &lt;m:brkBin m:val=&quot;before&quot;/&gt;
   &lt;m:brkBinSub m:val=&quot;&amp;#45;-&quot;/&gt;
   &lt;m:smallFrac m:val=&quot;off&quot;/&gt;
   &lt;m:dispDef/&gt;
   &lt;m:lMargin m:val=&quot;0&quot;/&gt;
   &lt;m:rMargin m:val=&quot;0&quot;/&gt;
   &lt;m:defJc m:val=&quot;centerGroup&quot;/&gt;
   &lt;m:wrapIndent m:val=&quot;1440&quot;/&gt;
   &lt;m:intLim m:val=&quot;subSup&quot;/&gt;
   &lt;m:naryLim m:val=&quot;undOvr&quot;/&gt;
  &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;w:LatentStyles DefLockedState=&quot;false&quot; DefUnhideWhenUsed=&quot;false&quot;
  DefSemiHidden=&quot;false&quot; DefQFormat=&quot;false&quot; DefPriority=&quot;99&quot;
  LatentStyleCount=&quot;371&quot;&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;0&quot; QFormat=&quot;true&quot; Name=&quot;Normal&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;heading 9&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index 9&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;toc 9&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Normal Indent&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;footnote text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;annotation text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;header&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;footer&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;index heading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;35&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;caption&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;table of figures&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;envelope address&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;envelope return&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;footnote reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;annotation reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;line number&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;page number&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;endnote reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;endnote text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;table of authorities&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;macro&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;toa heading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Bullet&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Number&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Bullet 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Bullet 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Bullet 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Bullet 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Number 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Number 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Number 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Number 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;10&quot; QFormat=&quot;true&quot; Name=&quot;Title&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Closing&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Signature&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;1&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;Default Paragraph Font&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text Indent&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Continue&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Continue 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Continue 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Continue 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;List Continue 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Message Header&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;11&quot; QFormat=&quot;true&quot; Name=&quot;Subtitle&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Salutation&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Date&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text First Indent&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text First Indent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Note Heading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text Indent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Body Text Indent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Block Text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Hyperlink&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;FollowedHyperlink&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;22&quot; QFormat=&quot;true&quot; Name=&quot;Strong&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;20&quot; QFormat=&quot;true&quot; Name=&quot;Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Document Map&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Plain Text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;E-mail Signature&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Top of Form&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Bottom of Form&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Normal (Web)&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Acronym&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Address&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Cite&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Code&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Definition&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Keyboard&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Preformatted&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Sample&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Typewriter&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;HTML Variable&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Normal Table&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;annotation subject&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;No List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Outline List 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Outline List 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Outline List 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Simple 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Simple 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Simple 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Classic 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Classic 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Classic 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Classic 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Colorful 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Colorful 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Colorful 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Columns 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Columns 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Columns 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Columns 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Columns 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Grid 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table List 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table 3D effects 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table 3D effects 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table 3D effects 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Contemporary&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Elegant&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Professional&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Subtle 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Subtle 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Web 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Web 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Web 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Balloon Text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;Table Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; UnhideWhenUsed=&quot;true&quot;
   Name=&quot;Table Theme&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; Name=&quot;Placeholder Text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;1&quot; QFormat=&quot;true&quot; Name=&quot;No Spacing&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; SemiHidden=&quot;true&quot; Name=&quot;Revision&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;34&quot; QFormat=&quot;true&quot;
   Name=&quot;List Paragraph&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;29&quot; QFormat=&quot;true&quot; Name=&quot;Quote&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;30&quot; QFormat=&quot;true&quot;
   Name=&quot;Intense Quote&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; Name=&quot;Light Shading Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; Name=&quot;Light List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; Name=&quot;Light Grid Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; Name=&quot;Medium Shading 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; Name=&quot;Medium Shading 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; Name=&quot;Medium List 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; Name=&quot;Medium List 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; Name=&quot;Medium Grid 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; Name=&quot;Medium Grid 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; Name=&quot;Medium Grid 3 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; Name=&quot;Dark List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; Name=&quot;Colorful Shading Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; Name=&quot;Colorful List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; Name=&quot;Colorful Grid Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;19&quot; QFormat=&quot;true&quot;
   Name=&quot;Subtle Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;21&quot; QFormat=&quot;true&quot;
   Name=&quot;Intense Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;31&quot; QFormat=&quot;true&quot;
   Name=&quot;Subtle Reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;32&quot; QFormat=&quot;true&quot;
   Name=&quot;Intense Reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;33&quot; QFormat=&quot;true&quot; Name=&quot;Book Title&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;37&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; Name=&quot;Bibliography&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; SemiHidden=&quot;true&quot;
   UnhideWhenUsed=&quot;true&quot; QFormat=&quot;true&quot; Name=&quot;TOC Heading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;41&quot; Name=&quot;Plain Table 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;42&quot; Name=&quot;Plain Table 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;43&quot; Name=&quot;Plain Table 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;44&quot; Name=&quot;Plain Table 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;45&quot; Name=&quot;Plain Table 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;40&quot; Name=&quot;Grid Table Light&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot; Name=&quot;Grid Table 1 Light&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot; Name=&quot;Grid Table 6 Colorful&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot; Name=&quot;Grid Table 7 Colorful&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;Grid Table 1 Light Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;Grid Table 6 Colorful Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;Grid Table 7 Colorful Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;Grid Table 1 Light Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;Grid Table 6 Colorful Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;Grid Table 7 Colorful Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;Grid Table 1 Light Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;Grid Table 6 Colorful Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;Grid Table 7 Colorful Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;Grid Table 1 Light Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;Grid Table 6 Colorful Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;Grid Table 7 Colorful Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;Grid Table 1 Light Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;Grid Table 6 Colorful Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;Grid Table 7 Colorful Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;Grid Table 1 Light Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;Grid Table 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;Grid Table 3 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;Grid Table 4 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;Grid Table 5 Dark Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;Grid Table 6 Colorful Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;Grid Table 7 Colorful Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot; Name=&quot;List Table 1 Light&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot; Name=&quot;List Table 6 Colorful&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot; Name=&quot;List Table 7 Colorful&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;List Table 1 Light Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;List Table 6 Colorful Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;List Table 7 Colorful Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;List Table 1 Light Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;List Table 6 Colorful Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;List Table 7 Colorful Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;List Table 1 Light Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;List Table 6 Colorful Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;List Table 7 Colorful Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;List Table 1 Light Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;List Table 6 Colorful Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;List Table 7 Colorful Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;List Table 1 Light Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;List Table 6 Colorful Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;List Table 7 Colorful Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;46&quot;
   Name=&quot;List Table 1 Light Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;47&quot; Name=&quot;List Table 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;48&quot; Name=&quot;List Table 3 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;49&quot; Name=&quot;List Table 4 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;50&quot; Name=&quot;List Table 5 Dark Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;51&quot;
   Name=&quot;List Table 6 Colorful Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;52&quot;
   Name=&quot;List Table 7 Colorful Accent 6&quot;/&gt;
 &lt;/w:LatentStyles&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 10]&gt;
&lt;style&gt;
 /* Style Definitions */
 table.MsoNormalTable
 {mso-style-name:&quot;Tabla normal&quot;;
 mso-tstyle-rowband-size:0;
 mso-tstyle-colband-size:0;
 mso-style-noshow:yes;
 mso-style-priority:99;
 mso-style-parent:&quot;&quot;;
 mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
 mso-para-margin-top:0cm;
 mso-para-margin-right:0cm;
 mso-para-margin-bottom:8.0pt;
 mso-para-margin-left:0cm;
 line-height:107%;
 mso-pagination:widow-orphan;
 font-size:11.0pt;
 font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
 mso-ascii-font-family:Calibri;
 mso-ascii-theme-font:minor-latin;
 mso-hansi-font-family:Calibri;
 mso-hansi-theme-font:minor-latin;
 mso-fareast-language:EN-US;}
&lt;/style&gt;
&lt;![endif]--&gt;&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Y ahora
solo resta probar que realmente es booteable dicho pendrive (no voy a explicar
como hacer &amp;nbsp;booteable el pendrive en una
pc porque estiraría demasiado este tutorial), comprobamos que nos muestra los siguiente:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhqKNIyEdgLuCVOX0sUjNlrfijl3t8jG4G_wuA5hUkvbGvsYVs0LUgu1rcNfLDjCaNUAnpFH2WRUOwtSG6iF0ceEtYdoIa1e0EZKYmg5jATL_x-Kb9THkpNhc5hkrY-WxS1CrvoXhMkbJw/s1600/ghost+usb9.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhqKNIyEdgLuCVOX0sUjNlrfijl3t8jG4G_wuA5hUkvbGvsYVs0LUgu1rcNfLDjCaNUAnpFH2WRUOwtSG6iF0ceEtYdoIa1e0EZKYmg5jATL_x-Kb9THkpNhc5hkrY-WxS1CrvoXhMkbJw/s1600/ghost+usb9.png&quot; height=&quot;177&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Si te muestra esto es porque hiciste los pasos bien, esto significa que esta booteando el pendrive y en estos momentos está ejecutando el tipico cmd o consoloa o MS-DOS o como quieran llamarle del windows 98, y para ejecutar el norton ghost solo tipiamos su nombre:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjuc_fRoA7ww3NaHmCzyTTX-tUAcUy9n4I-x1xceIdvP_1J0W2BV8YCSdsKydLPSvBkLO_o2_daKfOP5JXSPNHEJPv_ASPyZj2YYrCGOfJpsg3hdaJn5OKckKX0bE5DOjlDNCSscvMn1JE/s1600/ghost+usb10.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjuc_fRoA7ww3NaHmCzyTTX-tUAcUy9n4I-x1xceIdvP_1J0W2BV8YCSdsKydLPSvBkLO_o2_daKfOP5JXSPNHEJPv_ASPyZj2YYrCGOfJpsg3hdaJn5OKckKX0bE5DOjlDNCSscvMn1JE/s1600/ghost+usb10.png&quot; height=&quot;177&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Ahora apretamos enter y...&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjjmcLS94Nw-W5pgx52-IudPi-h9ITlfSMEQfVkzzyIQ2nM6IcJ8VIOECY5wBFndcP_5DCiGpAcMGEAh1c0vCG0JurprR1IHy_XZjyWhPrkeaJmKwbxXJgAUEtyn6ntJBFPLPC_GrtxRkA/s1600/ghost+usb11.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjjmcLS94Nw-W5pgx52-IudPi-h9ITlfSMEQfVkzzyIQ2nM6IcJ8VIOECY5wBFndcP_5DCiGpAcMGEAh1c0vCG0JurprR1IHy_XZjyWhPrkeaJmKwbxXJgAUEtyn6ntJBFPLPC_GrtxRkA/s1600/ghost+usb11.png&quot; height=&quot;240&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana,sans-serif;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Listo acá obtuvimos el tan apreciado y salvador de vidas ghost, bueno me despido y espero que les sirba de algo como a mi¡¡¡&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;ul&gt;&lt;/ul&gt;
</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/5806761265152471650/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2014/06/ghost-en-usb-booteable.html#comment-form' title='28 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/5806761265152471650'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/5806761265152471650'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2014/06/ghost-en-usb-booteable.html' title='Ghost como USB booteable'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjinWgk6ZhRe-lAddpPR_iPj_fsDTBoWIW_1faaX7ycUC2k7mQyDi7jlV2tIU10VatcRSF4YE1JPJKAvx7hRBcfkV9iD6WC0ZDFTGERubhGAr_1ABx6bNXFKONyF42mLZ7t4V3tQk6KEDc/s72-c/ghost+usb12.png" height="72" width="72"/><thr:total>28</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-7883769124326868128</id><published>2014-06-10T07:17:00.001-07:00</published><updated>2014-06-12T15:37:34.014-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="tango gestion"/><title type='text'>tango gestion 5.2: find and set error-no se pudo modificar archivo TGW.WSN</title><content type='html'>Sólo debo dirigirme a:C:\TANGO\WIN\TGW.WSN y borrar dicho archivo para solucionar este problema</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/7883769124326868128/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2014/06/tango-gestion-52-find-and-set-error-no.html#comment-form' title='2 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/7883769124326868128'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/7883769124326868128'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2014/06/tango-gestion-52-find-and-set-error-no.html' title='tango gestion 5.2: find and set error-no se pudo modificar archivo TGW.WSN'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-6156193800121400754</id><published>2014-06-10T07:14:00.000-07:00</published><updated>2019-02-18T09:45:06.765-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="impresora"/><title type='text'>(SOLUCION)Windows no puede abrir Agregar impresora. El servicio administrador de trabajos de impresión local no se esta ejecutando. Reinicie el administrador o el equipo</title><content type='html'>&lt;div class=&quot;article-summary&quot;&gt;
&lt;span class=&quot;intelliTXT&quot;&gt;Este tipo de error puede suceder por problemas en los controladores que esten dañados, o que exista alguna infección, a mi particularmente esta solución fue siempre efectiva, independientemente de que exista o no infección, desde mi punto de vista se debe generar algún tipo de error en la carpeta del punto 4, más que nada errores de E/S o de escritura que decaen en esta falla, bueno vamos a la solución&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;h2 class=&quot;instructions&quot;&gt;
Instrucciones&lt;/h2&gt;
&lt;ol class=&quot;steps&quot;&gt;
&lt;li class=&quot;stepwrap&quot;&gt;
         &lt;span class=&quot;stepnumber&quot;&gt;&lt;/span&gt;
         &lt;div class=&quot;stepmeat&quot;&gt;
&lt;div class=&quot;intelliTXT&quot;&gt;
Haz clic en el botón &quot;Inicio&quot; y escribe &quot;services.msc&quot; (sin comillas) en el campo Iniciar búsqueda. Haz clic en &quot;Enter&quot;.&lt;/div&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;stepwrap&quot;&gt;
         &lt;span class=&quot;stepnumber&quot;&gt;&lt;/span&gt;
         &lt;div class=&quot;stepmeat&quot;&gt;
&lt;div class=&quot;intelliTXT&quot;&gt;
Desplázate hacia abajo y busca la cola de impresión en la lista Servicios. Haz doble clic para abrir la cola de impresión&lt;/div&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;stepwrap&quot;&gt;
         &lt;span class=&quot;stepnumber&quot;&gt;&lt;/span&gt;
         &lt;div class=&quot;stepmeat&quot;&gt;
&lt;div class=&quot;intelliTXT&quot;&gt;
Pulsa el botón &quot;Stop&quot;, a continuación, 
haz clic en &quot;Aceptar&quot; para detener temporalmente la cola de impresión 
para que puedas restablecerla.&lt;/div&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;stepwrap&quot;&gt;
         &lt;span class=&quot;stepnumber&quot;&gt;&lt;/span&gt;
         &lt;div class=&quot;stepmeat&quot;&gt;
&lt;div class=&quot;intelliTXT&quot;&gt;
Haz clic en el botón &quot;Inicio&quot; y escribe
 &quot;%windir%\system32\spool\printers&quot; (sin comillas) en el cuadro 
Iniciar búsqueda. Pulsa el botón &quot;Enter&quot;.&lt;/div&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;stepwrap&quot;&gt;
         &lt;span class=&quot;stepnumber&quot;&gt;&lt;/span&gt;
         &lt;div class=&quot;stepmeat&quot;&gt;
&lt;div class=&quot;intelliTXT&quot;&gt;
Elimina todos los archivos de la carpeta emergente.&lt;/div&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;stepwrap&quot;&gt;
         &lt;span class=&quot;stepnumber&quot;&gt;&lt;/span&gt;
         &lt;div class=&quot;stepmeat&quot;&gt;
&lt;div class=&quot;intelliTXT&quot;&gt;
Vuelve a la configuración de Cola de 
impresión haciendo clic en &quot;Inicio&quot;, escribe &quot;services.msc&quot; (sin las 
comillas) en el campo Iniciar búsqueda y presiona &quot;Enter&quot;.&lt;/div&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;stepwrap&quot;&gt;
         &lt;span class=&quot;stepnumber&quot;&gt;&lt;/span&gt;
         &lt;div class=&quot;stepmeat&quot;&gt;
&lt;div class=&quot;intelliTXT&quot;&gt;
Abre el Administrador de trabajos de impresión de nuevo haciendo doble clic sobre él.&lt;/div&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;stepwrap&quot;&gt;
         &lt;span class=&quot;stepnumber&quot;&gt;&lt;/span&gt;
         &lt;div class=&quot;stepmeat&quot;&gt;
&lt;div class=&quot;intelliTXT&quot;&gt;
Haz clic en &quot;Inicio&quot; para restablecer la cola de impresión y haz clic en &quot;Aceptar&quot;.&lt;/div&gt;
&lt;div class=&quot;intelliTXT&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;intelliTXT&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;intelliTXT&quot;&gt;
fuente:http://www.ehowenespanol.com/arreglar-administrador-impresora-como_171790/ &lt;/div&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;
</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/6156193800121400754/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2014/06/solucionwindows-no-puede-abrir-agregar.html#comment-form' title='94 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/6156193800121400754'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/6156193800121400754'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2014/06/solucionwindows-no-puede-abrir-agregar.html' title='(SOLUCION)Windows no puede abrir Agregar impresora. El servicio administrador de trabajos de impresión local no se esta ejecutando. Reinicie el administrador o el equipo'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>94</thr:total></entry><entry><id>tag:blogger.com,1999:blog-457765937744967597.post-1975912625681802925</id><published>2014-01-31T07:02:00.000-08:00</published><updated>2014-06-12T15:38:19.681-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Process Explorer"/><category scheme="http://www.blogger.com/atom/ns#" term="revisar todos los procesos con virus total 2014"/><title type='text'>Process Explorer v16.0 + VIRUS TOTAL</title><content type='html'>Ya se encuentra disponible la herramienta Process Explorer creada por &lt;strong&gt;Mark Russinovich&lt;/strong&gt;, el creador ya lo venia nombrando en twitter el lanzamiento de esta aplicación con la integración de virus total. Para descargarla hacer clic &lt;a href=&quot;http://technet.microsoft.com/en-us/sysinternals/bb896653&quot; target=&quot;_blank&quot;&gt;ACA&lt;/a&gt;.&lt;br /&gt;
pesa 1.18 MB y&amp;nbsp;no necesita ser instalado pues con un doble clic ya empieza a correr la aplicación. Paso a explicar que hace esta App:&lt;br /&gt;
Process Explorer como su nombre lo indica es un visor de los procesos que corren actualmente en nuestro Windows:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg9CAIoW86jT7l1IIXaCRJgZxnBPQXvnbFUi5LWMeQpVDKvREfvmuUgAKVJlHMwN35IVCusAyaf7whLdmTFbd3pva3UF9wu6omSxWo5i2R3UDXObL8nPwDBhNoU0RQZTyeeWfVOsQ2R1Po/s1600/process+explorer01.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg9CAIoW86jT7l1IIXaCRJgZxnBPQXvnbFUi5LWMeQpVDKvREfvmuUgAKVJlHMwN35IVCusAyaf7whLdmTFbd3pva3UF9wu6omSxWo5i2R3UDXObL8nPwDBhNoU0RQZTyeeWfVOsQ2R1Po/s1600/process+explorer01.png&quot; height=&quot;179&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Luego para verificar con los 50 motores de empresas antivirus de Virus total basta con un clic derecho e ir a la opción &quot;check Virus Total&quot;:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpk0V65lqiOaJwW0omXR4mciGY-I9JVe3v2aOF89__bk_GTdj6tg-CdGtkZLBA46ShwiF8FqDO1nmXlPvfeRPYCk0fXbMob8G9lpiQBrEU0pxXGmAdhXXP1CsF98CXJa3g6QbMSvvHHT8/s1600/process+explorer02.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpk0V65lqiOaJwW0omXR4mciGY-I9JVe3v2aOF89__bk_GTdj6tg-CdGtkZLBA46ShwiF8FqDO1nmXlPvfeRPYCk0fXbMob8G9lpiQBrEU0pxXGmAdhXXP1CsF98CXJa3g6QbMSvvHHT8/s1600/process+explorer02.png&quot; height=&quot;179&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&amp;nbsp;&lt;/div&gt;
&lt;div align=&quot;left&quot; class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
Luego envía el hash del proceso que seleccionamos para realizar la búsqueda&amp;nbsp;correspondiente:&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhtrQi-vffp2CtBjLGuQeopHaXA7G7Li1inEU0aVBlM9hH1dB1wBOIimk2fcBCYeO7fkYKp5wUl1B5WcoGyRbTltFm83wngquIZ9NqSt7T9XWoCUOe0_QsVDehEeNUaCp68nvFQwI07wzE/s1600/process+explorer03.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhtrQi-vffp2CtBjLGuQeopHaXA7G7Li1inEU0aVBlM9hH1dB1wBOIimk2fcBCYeO7fkYKp5wUl1B5WcoGyRbTltFm83wngquIZ9NqSt7T9XWoCUOe0_QsVDehEeNUaCp68nvFQwI07wzE/s1600/process+explorer03.png&quot; height=&quot;179&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&amp;nbsp;﻿&lt;/div&gt;
&lt;br /&gt;
Lo que esta recuadrado es el trabajo que va realizando el soft. Luego de esto muestra contra cuantos motores fue analizado y la cantidad de positivos:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj90PfCyBCq7WN3_-neUFK3EBdy-qoO4tfjHUjztFH4NwD73DF-rO_PJIKbLzki2Jt0CN8g6zJznh83wET7QJgpYelItOlerHBCEm5tGAHkZEj65mGtoQznnysExSQEKTnkBODqntkOFfw/s1600/process+explorer04.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj90PfCyBCq7WN3_-neUFK3EBdy-qoO4tfjHUjztFH4NwD73DF-rO_PJIKbLzki2Jt0CN8g6zJznh83wET7QJgpYelItOlerHBCEm5tGAHkZEj65mGtoQznnysExSQEKTnkBODqntkOFfw/s1600/process+explorer04.png&quot; height=&quot;179&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
En mi caso mostro 0/49.&lt;br /&gt;
&lt;br /&gt;
También se puede realizar un chequeo global de los procesos de la siguiente manera:&lt;br /&gt;
Como primer paso hay que activar la opción que realiza la tarea, el camino es:&lt;br /&gt;
&lt;em&gt;Opciones -&amp;gt; VirusTotal.com -&amp;gt; Check VirusTotal.com&lt;/em&gt;&lt;br /&gt;
&lt;em&gt;&lt;/em&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgRlEYqTPMR0WnYrE1tU54caQhdt_h5Kg0c2-ms1N85bMSYUbnXILEQJ-YV4aZEh_ojATMvVKCZLYy_q6IPNJoWl4VJgT08ZDvF3xAoprbbVltbS4b5kHrX6y027bywUCLWcqiiiE16Xvs/s1600/process+explorer05.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgRlEYqTPMR0WnYrE1tU54caQhdt_h5Kg0c2-ms1N85bMSYUbnXILEQJ-YV4aZEh_ojATMvVKCZLYy_q6IPNJoWl4VJgT08ZDvF3xAoprbbVltbS4b5kHrX6y027bywUCLWcqiiiE16Xvs/s1600/process+explorer05.png&quot; height=&quot;179&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;em&gt;&lt;/em&gt;&lt;br /&gt;
Y empieza a enviar todos los hashes de todos lo procesos...:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhX5gB0WCQE0FMktSBVXS8jLFyYwm5vVmCHKi7A2KHMcClp_VLVJFpV_VqjdLj1nk4PVUaOjh_7xfSVTjCdOISiV6nKawI4MGxZqJQmp2VcuAmfMnI04afCaH_mKEj27DKfZhF1op3sHe8/s1600/process+explorer06.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhX5gB0WCQE0FMktSBVXS8jLFyYwm5vVmCHKi7A2KHMcClp_VLVJFpV_VqjdLj1nk4PVUaOjh_7xfSVTjCdOISiV6nKawI4MGxZqJQmp2VcuAmfMnI04afCaH_mKEj27DKfZhF1op3sHe8/s1600/process+explorer06.png&quot; height=&quot;179&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Luego se ve algo así:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhLYqqdzQiI4bDKVXSGOyRfYxhNBqyn8bBd7kAXbCly6IQvRrQwde0duB7r2w5ZcP1l9q4jdO2fVnRQVvsAL8SP5y2nCon7mvVHJM1RQV8hs8HJWN2W-w_hKWVa-elSLVMY-QI3Zi4K60E/s1600/process+explorer07.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhLYqqdzQiI4bDKVXSGOyRfYxhNBqyn8bBd7kAXbCly6IQvRrQwde0duB7r2w5ZcP1l9q4jdO2fVnRQVvsAL8SP5y2nCon7mvVHJM1RQV8hs8HJWN2W-w_hKWVa-elSLVMY-QI3Zi4K60E/s1600/process+explorer07.png&quot; height=&quot;179&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
Esto provocara un gran ahorro de tiempo a la hora del análisis de algún sistema Windows, espero que les sea de utilidad, nos leemos luego...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</content><link rel='replies' type='application/atom+xml' href='https://hackendemoniado.blogspot.com/feeds/1975912625681802925/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='https://hackendemoniado.blogspot.com/2014/01/process-explorer-v160-virus-total.html#comment-form' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/1975912625681802925'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/457765937744967597/posts/default/1975912625681802925'/><link rel='alternate' type='text/html' href='https://hackendemoniado.blogspot.com/2014/01/process-explorer-v160-virus-total.html' title='Process Explorer v16.0 + VIRUS TOTAL'/><author><name>sergio</name><uri>http://www.blogger.com/profile/06802829169340083992</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg9CAIoW86jT7l1IIXaCRJgZxnBPQXvnbFUi5LWMeQpVDKvREfvmuUgAKVJlHMwN35IVCusAyaf7whLdmTFbd3pva3UF9wu6omSxWo5i2R3UDXObL8nPwDBhNoU0RQZTyeeWfVOsQ2R1Po/s72-c/process+explorer01.png" height="72" width="72"/><thr:total>0</thr:total></entry></feed>