<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>config &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/config/</link>
	<description>Feed of posts on WordPress.com tagged "config"</description>
	<pubDate>Sat, 28 Nov 2009 17:50:00 +0000</pubDate>

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

<item>
<title><![CDATA[Kernel Sebagai Mediator]]></title>
<link>http://jofania.wordpress.com/2009/11/27/kernel-sebagai-mediator/</link>
<pubDate>Fri, 27 Nov 2009 06:51:25 +0000</pubDate>
<dc:creator>jofania</dc:creator>
<guid>http://jofania.wordpress.com/2009/11/27/kernel-sebagai-mediator/</guid>
<description><![CDATA[Kernel Sebagai Mediator Antara Aplikasi Komputer Dan Perangkat Keras Ditulis oleh : Devi Munandar Ab]]></description>
<content:encoded><![CDATA[Kernel Sebagai Mediator Antara Aplikasi Komputer Dan Perangkat Keras Ditulis oleh : Devi Munandar Ab]]></content:encoded>
</item>
<item>
<title><![CDATA[Spring + iBatis // Part 2 // Database Properties]]></title>
<link>http://snowjunkiedev.wordpress.com/2009/11/25/spring-ibatis-part-2-database-properties/</link>
<pubDate>Wed, 25 Nov 2009 16:54:57 +0000</pubDate>
<dc:creator>Alastair Vance</dc:creator>
<guid>http://snowjunkiedev.wordpress.com/2009/11/25/spring-ibatis-part-2-database-properties/</guid>
<description><![CDATA[In the JDeveloper IDE, right click on the resources folder in your project structure (applications n]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>In the JDeveloper IDE, right click on the resources folder in your project structure (applications navigator window).  Select &#8220;New&#8230;&#8221; from the window and &#8220;File&#8221; from the general category.  Name the new file &#8220;database.properties&#8221;.</p>
<pre>database.username=<span style="color:#333399;"><em>username</em></span>
database.password=<span style="color:#333399;"><em>password</em></span>
database.class=oracle.jdbc.OracleDriver
database.url=jdbc:oracle:thin:@<span style="color:#333399;"><em>host</em></span>:<span style="color:#333399;"><em>port</em></span>:<span style="color:#333399;"><em>sid</em></span></pre>
<p>Place the above in the file (substitute values in italics) and save your project.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Developing kernel on a Virtual Machine (the solution)]]></title>
<link>http://albertoembedded.wordpress.com/2009/11/25/developing-kernel-on-a-virtual-machine-the-solution/</link>
<pubDate>Wed, 25 Nov 2009 16:01:43 +0000</pubDate>
<dc:creator>marramao</dc:creator>
<guid>http://albertoembedded.wordpress.com/2009/11/25/developing-kernel-on-a-virtual-machine-the-solution/</guid>
<description><![CDATA[I am working now on Ubuntu Karmic Koala. As I said in my previous post, Qemu is a complete platform ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I am working now on Ubuntu Karmic Koala.</p>
<p>As I said in my previous <a href="http://albertoembedded.wordpress.com/2009/11/24/developing-kernel-on-a-virtual-machine-first-try/">post</a>, <a href="http://www.qemu.org/">Qemu</a> is a complete platform emulator that can emulate the Integrator ARM machine platform (CPU and devices!).</p>
<p>In Karmic Koala the latests Qemu version (0.11.0) is shipped within Ubuntu repositories so with this line we can install it:</p>
<pre style="padding-left:30px;"># sudo apt-get install qemu qemu-kvm qemu-kvm-extras</pre>
<h2>ARM test images</h2>
<p>From the Qemu home page we can download a Linux 2.6 <a href="http://www.qemu.org/arm-test-0.2.tar.gz">ARM example image</a> builded by Paul Brook and extracting it in $PRJROOT/images, we can find the README file where it is written how to launch the test platform:</p>
<pre style="padding-left:30px;"># cp DownloadDirectory/arm-test-0.2.tar.gz $PRJROOT/images
# cd $PRJROOT/images
# tar -xvf arm-test-0.2.tar.gz
# cd arm-test
# cat README
</pre>
<p>So, with or without the graphical interface we can test the qemu arm installation with the followings:</p>
<pre style="padding-left:30px;"># qemu-system-arm -kernel zImage.integrator -initrd arm_root.img
or
# qemu-system-arm -kernel zImage.integrator -initrd arm_root.img \
  -nographic -append "console=ttyAMA0"</pre>
<h2>A suitable Linux config file</h2>
<p>Over the test purpose , executing the test image can give the kernel configuration file stored in /proc/config.gz ! so:</p>
<pre style="padding-left:30px;"># qemu-system-arm -kernel zImage.integrator -initrd arm_root.img \
  -nographic -append "console=ttyAMA0"
Uncompressing Linux...............................................
........................... done, booting the kernel.
Linux version 2.6.17-rc3 (paul@wren) (gcc version 4.1.0 (CodeSourcery ARM))
 #53 Thu May 4 15:05:18 BST 2006
CPU: ARM926EJ-Sid(wb) [41069265] revision 5 (ARMv5TEJ)
Machine: ARM-IntegratorCP
Memory policy: ECC disabled, Data cache writeback
CPU0: D VIVT write-through cache
CPU0: I cache: 4096 bytes, associativity 4, 32 byte lines, 32 sets
CPU0: D cache: 65536 bytes, associativity 4, 32 byte lines, 512 sets
Built 1 zonelists
Kernel command line: console=ttyAMA0
PID hash table entries: 1024 (order: 10, 4096 bytes)
Console: colour dummy device 80x30
Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
Memory: 128MB = 128MB total

...

Log in as root with no password.
qemu login: root
# cp /proc/config.gz .
# tar -xvf config.gz
# vi config.gz
</pre>
<p>With this file we can configure the mainline linux kernel! (copying from screen, copying within net, scrolling the options with a near mainline make menuconfig window).</p>
<h2>ARMv5te Toolchain to build the kernel</h2>
<p>The machine emulated by qemu-arm is based on the core ARMv5te , so I need the correct toolchain for build all the necessary code.</p>
<p>The Pengutronix OSELAS environment can do that in the <a href="http://www.pengutronix.de/oselas/toolchain/">OSELAS toolchain</a> project. Similarly at what described in <a title="Initializing a Linux Embedded Development Host Machine" href="../initializing-a-linux-embedded-development-host-machine/">Initializing a Linux Embedded Development Host Machine</a> moving in $PRJROOT/build-tools/OSELAS.Toolchain-1.99.3.4/ we can select the suitable ptxdist configs with:</p>
<pre style="padding-left:30px;"># cd $PRJROOT/build-tools/OSELAS.Toolchain-1.99.3.4/
# ls ptxconfigs/
arm-1136jfs-linux-gnueabi_gcc-4.1.2_glibc-2.5_binutils-2.17_kernel-2.6.18.ptxconfig
arm-1136jfs-linux-gnueabi_gcc-4.3.2_glibc-2.8_binutils-2.19_kernel-2.6.27-sanitized.ptxconfig
arm-1136jfs-linux-gnueabi_gcc-4.3.2_glibc-2.8_binutils-2.19_kernel-2.6.27-sanitized.ptxconfig.old
arm-cortexa8-linux-gnueabi_gcc-4.3.2_glibc-2.8_binutils-2.18_kernel-2.6.27-sanitized.ptxconfig
armeb-xscale-linux-gnueabi_gcc-4.1.2_glibc-2.5_binutils-2.17_kernel-2.6.18.ptxconfig
armeb-xscale-linux-gnueabi_gcc-4.3.2_glibc-2.8_binutils-2.18_kernel-2.6.27-sanitized.ptxconfig
...
arm-v4t-linux-gnueabi_gcc-4.1.2_glibc-2.5_binutils-2.17_kernel-2.6.18.ptxconfig
arm-v4t-linux-gnueabi_gcc-4.3.2_glibc-2.8_binutils-2.18_kernel-2.6.27-sanitized.ptxconfig
arm-v5te-linux-gnueabi_gcc-4.1.2_glibc-2.5_binutils-2.17_kernel-2.6.18.ptxconfig
arm-v5te-linux-gnueabi_gcc-4.3.2_glibc-2.8_binutils-2.18_kernel-2.6.27-sanitized.ptxconfig
arm-v5te_vfp-linux-gnueabi_gcc-4.3.2_glibc-2.8_binutils-2.18_kernel-2.6.27-sanitized.ptxconfig
arm-xscale-linux-gnueabi_gcc-4.1.2_glibc-2.5_binutils-2.17_kernel-2.6.18.ptxconfig
arm-xscale-linux-gnueabi_gcc-4.2.3_glibc-2.8_binutils-2.18_kernel-2.6.27-sanitized.ptxconfig
...
# ptxdist select ptxconfigs/\
  arm-v5te-linux-gnueabi_gcc-4.3.2_glibc-2.8_binutils-2.18_kernel-2.6.27-sanitized.ptxconfig
# ptxdist menuconfig
</pre>
<p>In the menuconfig, all can live as it is but in &#8220;misc-&#62;prefix for installation&#8221; we can choose $PRJROOT/tools where $PRJROOT must be manually extended. So with:</p>
<pre style="padding-left:30px;"># ptxdist go
</pre>
<p>A part from minor dependencies that we can solve installing software with apt-get, the toolchain is built and the correct prefix will be:</p>
<pre style="padding-left:30px;">CROSS_COMPILE_OSELAS_v5=$PRJROOT/tools/OSELAS.Toolchain-1.99.3/arm-v5te-linux-gnueabi/\
   gcc-4.3.2-glibc-2.8-binutils-2.18-kernel-2.6.27-sanitized/bin/arm-v5te-linux-gnueabi-
</pre>
<p>If we assign the environmental variable CROSS_COMPILE=CROSS_COMPILE_OSELAS_v5 the kernel configured by the upper config file and compiled with this toolchain is a good kernel to execute within the qemu-system-arm emulator!</p>
<h2>A suitable Root Filesystem</h2>
<p>Ok we have a good kernel ad a small initrd filesystem, but we have to develop application to run in the emulated device!</p>
<p>We can use the <a href="http://www.ptxdist.org/oselas/bsp/phytec/index_en.html">OSELAS.BSP Phytec phyCORE</a> project installed following the description in <a title="Initializing a Linux Embedded Development Host Machine" href="../initializing-a-linux-embedded-development-host-machine/">Initializing a Linux Embedded Development Host Machine</a>.</p>
<p>Download the platform_config file <a href="http://www.dei.unipd.it/~panizzoa/platformconfig-qemu">platformconfig-qemu</a> and the ptxconfig one <a href="http://www.dei.unipd.it/~panizzoa/ptxconfigThiny">ptxconfigThiny</a> (that is the normal ptxconfig removing all graphic subsystem for a speedier compilation)</p>
<p>Every two configuration file must be placed in $PRJROOT/build-BSP/OSELAS.BSP-Phytec-phyCORE-12-1/configs so with:</p>
<pre style="padding-left:30px;"># cd $PRJROOT/build-BSP/OSELAS.BSP-Phytec-phyCORE-12-1/
# ptxdist select configs/ptxconfigThiny
# ptxdist platform configs/platformconfig-qemu
# ptxdist toolchain $CROSS_COMPILE_OSELAS_v5
# ptxdist go
# ptxdist images
</pre>
<p>In  $PRJROOT/build-BSP/OSELAS.BSP-Phytec-phyCORE-12-1/platform-phyCORE-qemu/images/ we will find the root.ext2 image, ready to be the SD/MMC image of the qemu device!</p>
<h2>Running qemu</h2>
<p>If in the $PRJROOT directory we create the images/phyCORE directory and we put all the necessary:</p>
<pre style="padding-left:30px;"># cd $PRJROOT
# mkdir -p images/phyCORE
# cp (kernel_path)/arch/arm/boot/zImage images/phyCORE/
# cp $PRJROOT/build-BSP/OSELAS.BSP-Phytec-phyCORE-12-1/platform-phyCORE-qemu/images/root.ext2\
  images/phyCORE/
</pre>
<p>then we can start qemu:</p>
<pre style="padding-left:30px;"># qemu-system-arm -kernel images/phyCORE/zImage -sd images/phyCORE/root.ext2 \
  -nographic -append "console=ttyAMA0 root=/dev/mmcblk0"
</pre>
<h2>Results</h2>
<p>In results we have a complete developing environment: emulator, toolchain, kernel, software ecosystem.</p>
<p>Kernel modification that do not deal with the hardware abstraction layer can be well developed in the emulator and tested by ad-hoc software inserted in the phyCORE-qemu distribution!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Varlıklara Toplu Düzenle butonunu ekleme]]></title>
<link>http://fatmauzunoz.wordpress.com/2009/11/24/varliklara-toplu-duzenle-butonunu-ekleme/</link>
<pubDate>Tue, 24 Nov 2009 09:05:06 +0000</pubDate>
<dc:creator>fatmauzunoz</dc:creator>
<guid>http://fatmauzunoz.wordpress.com/2009/11/24/varliklara-toplu-duzenle-butonunu-ekleme/</guid>
<description><![CDATA[Merhabalar, CRM&#8217;de veriler girildikten sonra toplu birden fazla kaydın seçilip bu kayıtlardaki]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Merhabalar,</p>
<p>CRM&#8217;de veriler girildikten sonra toplu birden fazla kaydın seçilip bu kayıtlardaki bazı alanların toplu olarak değiştirilmesi gerekebilir. Ancak CRM arayüzünde tüm varlıklar için gözükmemektedir.</p>
<p>CRM’de bazı varlıklar için default olarak bulunan Bulk Edit<span style="color:#ff6600;">→</span>Toplu Düzenle butonu aktivite, fatura gibi varlıklarda yoktur. Bu özellik ISV.config’te değişiklik yaparak değiştirilebilir.Ayarlar<span style="color:#ff6600;">→</span>Özellikleri Ver<span style="color:#ff6600;">→</span>ISV.Config dosyasını kaydettikten sonra notepad yada Visual Studio ile düzeltmeler yapıldıktan sonra Özellikleri Al ile kaydedilen konum gösterilerek özellikler alınır.Ve refresh edildikten sonra buton gözükür. Ancak bir ayar daha yapılması gerekir. Tüm diğer custom eklenen ISV butonlarının gözükmesi için bu ayar yapılmalıdır.</p>
<p>Ayarlar<strong><span style="color:#ff6600;">→</span></strong>Yönetim<strong><span style="color:#ff6600;">→</span></strong>Sistem Ayarları<strong><span style="color:#ff6600;">→</span></strong>Özelleştirme tabında Özel menüler ve Araç çubuklarından istemcileri kullanıma bağlı olarak istediğiniz kombinasyonu ancak Web&#8217;ten genel olarak kullanıldığı için Web seçeneğini sağ kutuya alıp tamam&#8217;ı tıklayarak kaydetmeniz gerekmektedir. ISV.config&#8217;de yaratılan bazı butonlar Client attribute&#8217;ünde belirtilip Web,Outlook,Outlook Offline şeklinde belirtilmektedir.<br />
İstediğiniz varlık’ın altına &#60;Grid&#62; tagleri arasında CRM’in çağırdığı şekilde yani <strong><span style="color:#ff6600;">doAction(&#8216;crmGrid&#8217;, &#8216;1088&#8242;, &#8216;bulkedit&#8217;);</span></strong> şeklinde yazılır. <span style="color:#ff6600;"><strong>1088</strong></span> objecttypecode’dur,isteğiniz entity’nin altına kodu yazarak bu kodu değiştirmeniz yeterlidir.</p>
<p> NOT:ISV.Config tagleri hakkında bilgi için <strong>ISV.Config’i inceleyelim&#8230;</strong> makalelere bakabilirsiniz.</p>
<p> <span style="color:#993366;">&#60;Entity&#62;</span></p>
<p style="text-align:left;"><span style="color:#993366;">&#60;Grid&#62;</span></p>
<p style="text-align:left;"><span style="color:#993366;">&#60;MenuBar&#62;</span></p>
<p style="text-align:left;"><span style="color:#993366;">&#60;Buttons&#62;</span></p>
<p style="text-align:left;"><span style="color:#993366;">&#60;Button Icon=&#8221;/_imgs/ico_18_debug.gif&#8221; JavaScript=&#8221;doAction(&#8216;crmGrid&#8217;, &#8216;4201&#8242;, &#8216;bulkedit&#8217;);&#8221; Client=&#8221;Web&#8221;&#62;</span></p>
<p style="text-align:left;"><span style="color:#993366;">&#60;Titles&#62;</span></p>
<p style="text-align:left;"><span style="color:#993366;">&#60;Title LCID=&#8221;1033&#8243; Text=&#8221;Bulk Edit&#8221; /&#62;</span></p>
<p style="text-align:left;"><span style="color:#993366;">&#60;/Titles&#62;</span></p>
<p style="text-align:left;"><span style="color:#993366;">&#60;ToolTips&#62;</span></p>
<p style="text-align:left;"><span style="color:#993366;">&#60;ToolTip LCID=&#8221;1033&#8243; Text=&#8221;Bulk Edit.&#8221; /&#62;</span></p>
<p style="text-align:left;"><span style="color:#993366;">&#60;/ToolTips&#62;</span></p>
<p style="text-align:left;"><span style="color:#993366;">&#60;/Button&#62;</span></p>
<p style="text-align:left;"><span style="color:#993366;">&#60;/Buttons&#62;</span></p>
<p style="text-align:left;"><span style="color:#993366;">&#60;/MenuBar&#62;</span></p>
<p style="text-align:left;"><span style="color:#993366;">&#60;/Grid&#62;</span></p>
<p style="text-align:left;"><span style="color:#993366;">&#60;/Entity&#62;</span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Comandos Infaltables!!]]></title>
<link>http://freeakx.wordpress.com/2009/11/18/comandos-infaltables/</link>
<pubDate>Wed, 18 Nov 2009 21:40:20 +0000</pubDate>
<dc:creator>Cesar Troya S.</dc:creator>
<guid>http://freeakx.wordpress.com/2009/11/18/comandos-infaltables/</guid>
<description><![CDATA[En esta Oportunidad les Traigo una recopilación de lo q yo concidero son los comandos más, utiles, i]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>En esta Oportunidad les Traigo una recopilación de lo q yo concidero son los comandos más, utiles, importantes y usados tanto en Ubuntu como en muchas otras distros linux</p>
<ul>
<li style="text-align:left;"><strong>Adduser: </strong>Se utiliza para añadir un usuario.</li>
</ul>
<blockquote>
<blockquote><p>Uso: adduser &#60;nombreusuario&#62;</p></blockquote>
</blockquote>
<ul>
<li><strong>Alias (este esta bien explicado en un post anterior)<br />
</strong></li>
</ul>
<p style="padding-left:120px;">Uso: alias nombrequeledamos=’comando’</p>
<ul>
<li><strong>apt-get install nombredelprograma</strong><strong> =  i</strong>nstala el paquete.</li>
</ul>
<ul>
<li><strong>apt-get remove nombredelprograma = </strong>Borra el paquete. Con la opción –purge borra tambien la configuración del paquete instalado.</li>
</ul>
<ul>
<li><strong>apt-get update = </strong>Actualiza la lista de paquetes disponibles para instalar.</li>
</ul>
<ul>
<li style="text-align:left;"><strong>apt-get upgrade  = </strong>Instala las nuevas versiones de los diferentes paquetes disponibles.</li>
</ul>
<ul>
<li><strong>cd = </strong>Cambia el directorio.</li>
</ul>
<blockquote><p>Uso: cd nombredirectorio</p></blockquote>
<p><span style="color:#ff6600;"><em><strong>Continuar leyendo el resto de comandos:</strong></em></span></p>
<ul>
<li><!--more--><strong>chmod: </strong>Cambia los permisos de los archivos.</li>
</ul>
<p style="padding-left:90px;">r:lectura w:escritura x:ejecución<br />
+: añade permisos -:quita permisos<br />
u:usuario g:grupo del usuario o:otros<br />
Uso: chmod permisos nombrearchivo</p>
<ul>
<li><strong>chown: </strong>Cambia el propietario de un archivo.</li>
</ul>
<p style="padding-left:90px;">Uso: chown &#60;nombrepropietario&#62; &#60;nombrearchivo&#62;</p>
<ul>
<li><strong>cp:</strong>Copia archivos en el directorio indicado.</li>
</ul>
<p style="padding-left:60px;">Uso: cp archivoorigen archivodestino</p>
<ul>
<li><strong>deluser: </strong>Elimina una cuenta de usuario</li>
</ul>
<p style="padding-left:90px;">Uso: deluser &#60;nombreusuario&#62;</p>
<ul>
<li><strong>exit:</strong> Cierra las ventanas o las conexiones remotas establecidas</li>
</ul>
<ul>
<li><strong>fsck: </strong>Sirve para chequear si hay errores en nuestro disco duro.</li>
</ul>
<p style="padding-left:90px;">Uso: fsck -t &#60;fs_typo&#62; &#60;dispositivo&#62;</p>
<ul>
<li><strong>ftp: </strong>Protocolo de Transferencia de Archivos, permite transferir archivos de y para computadores remotos.</li>
</ul>
<p style="padding-left:60px;">Uso: ftp &#60;maquina_remota&#62;</p>
<ul>
<li><strong>grep</strong>: Su funcionalidad es la de escribir en salida estándar aquellas líneas que concuerden con un patrón. Busca patrones en archivos.</li>
</ul>
<p style="padding-left:90px;">grep: grep &#60;patronabuscar&#62; &#60;nombrearchivos&#62;</p>
<ul>
<li><strong>ifconfig: </strong>Obtener información de la configuración de red</li>
</ul>
<ul>
<li><strong>kill:</strong> Termina un proceso</li>
</ul>
<p style="padding-left:60px;">Uso: kill numeroPID</p>
<ul>
<li><strong>ls:</strong>Lista los archivos y directorios dentro del directorio de trabajo.</li>
</ul>
<ul>
<li><strong>make:</strong> Crea ejecutables a partir de los archivos fuente.</li>
</ul>
<ul>
<li><strong>man: </strong>muestra el manual de un programa o comando si este esta disponible</li>
</ul>
<p style="padding-left:90px;">Uso: man &#60;nombredelcomando&#62;</p>
<ul>
<li><strong>mkdir: </strong>Crea un nuevo directorio.</li>
</ul>
<p style="padding-left:90px;">Uso: mkdir nombredirectorio</p>
<ul>
<li><strong>mount: </strong>Monta una unidad.</li>
</ul>
<p style="padding-left:90px;">Uso: mount -t&#60; sistema_de_archivo&#62; &#60;dispositivo&#62; &#60;nombredirectorio&#62;</p>
<p><strong><br />
</strong></p>
<ul>
<li><strong>mv: </strong>Este comando sirve para renombrar un archivo.</li>
</ul>
<p style="padding-left:60px;">Uso: mv &#60;nombrearchivo&#62; &#60;nuevonombrearchivo&#62;</p>
<ul>
<li><strong>netstat:</strong>Muestra las conexiones y puertos abiertos por los que se establecen las comunicaciones.</li>
</ul>
<ul>
<li><strong>poweroff: </strong>Apaga el ordenador.</li>
</ul>
<ul>
<li><strong>ps: </strong>Muestra información acerca de los procesos activos.</li>
</ul>
<ul>
<li><strong>rlogin: </strong>Conecta un host local con un host remoto.</li>
</ul>
<p style="padding-left:90px;">Uso: rlogin &#60;maquina_remota&#62;</p>
<ul>
<li><strong>rm: </strong>Remueve o elimina un archivo.</li>
</ul>
<p style="padding-left:60px;">Uso: rm &#60;rutaynombrearchivo&#62;</p>
<ul>
<li><strong>rmdir: </strong>Elimina el directorio indicado, el cual debe estar vacío.</li>
</ul>
<p style="padding-left:90px;">Uso: rmdir nombredirectorio</p>
<ul>
<li><strong>sudo o su:</strong> Con este comando accedemos al sistema como root.</li>
</ul>
<ul>
<li><strong>umount: </strong>Desmontar unidades montadas anteriormente</li>
</ul>
<p style="padding-left:120px;">Uso: umount &#60;nombredirectorio&#62;</p>
<ul>
<li><strong>wc:</strong>Cuenta los caráteres, palabras y líneas del archivo de texto.</li>
</ul>
<p style="padding-left:60px;">Uso: wc nom_archivo</p>
<p style="padding-left:60px;">
<ul>
<li><strong>whereis: </strong>Devuelve la ubicación del archivo especificado, si existe.</li>
</ul>
<p style="padding-left:60px;">Uso: whereis nomb_archivo</p>
<p><strong>Larga vida a la consola!!</strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Resolved: sawserver : Error loading security privilege /system/privs/catalog/ChangePermissionsPrivilege]]></title>
<link>http://rnm1978.wordpress.com/2009/11/17/resolved-sawserver-error-loading-security-privilege-systemprivscatalogchangepermissionsprivilege/</link>
<pubDate>Tue, 17 Nov 2009 16:19:07 +0000</pubDate>
<dc:creator>rnm1978</dc:creator>
<guid>http://rnm1978.wordpress.com/2009/11/17/resolved-sawserver-error-loading-security-privilege-systemprivscatalogchangepermissionsprivilege/</guid>
<description><![CDATA[Whilst installing OBIA 7.9.6.1 I hit this problem when firing up Presentation Services (sawserver): ]]></description>
<content:encoded><![CDATA[Whilst installing OBIA 7.9.6.1 I hit this problem when firing up Presentation Services (sawserver): ]]></content:encoded>
</item>
<item>
<title><![CDATA[Networking, SAN: Cisco MDS Switch Scheduled Backups]]></title>
<link>http://blog.colovirt.com/2009/11/10/networking-san-cisco-mds-switch-scheduled-backups/</link>
<pubDate>Tue, 10 Nov 2009 18:43:48 +0000</pubDate>
<dc:creator>Kevin Goodman</dc:creator>
<guid>http://blog.colovirt.com/2009/11/10/networking-san-cisco-mds-switch-scheduled-backups/</guid>
<description><![CDATA[Most people are good about making backup copies of their configuration before changes, but everyone ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Most people are good about making backup copies of their configuration before changes, but everyone makes mistakes eventually.  To me the risk is not worth it, so this will be dedicated to automating Cisco TFTP backups of configurations.  Most server administrators have automated tasks using either Cron (Linux/Unix) or Windows Scheduler.  Cisco IOS also has the ability to schedule tasks.</p>
<p>I am very picky when it comes to my Cisco devices.  A lot of information I read on this had the schedule execute &#8220;copy running-config startup&#8221; and would only backup one configuration.  This is not a good thing, especially when there are multiple device managers.  Below will go through setting up two jobs that backup both the running and saved configurations to different files daily.</p>
<p><strong>Note:  This assumes that you already have a TFTP server running on the network.</strong></p>
<p><strong>After logging into the switch, move into configuration mode</strong></p>
<pre>FiberSw01# config terminal
Enter configuration commands, one per line.  End with CNTL/Z.</pre>
<p><strong>Enable the scheduler</strong></p>
<pre>FiberSw01(config)# scheduler enable</pre>
<p><strong>Crate a job named &#8220;backup_running&#8221;</strong></p>
<pre>FiberSw01(config)# scheduler job name backup_running</pre>
<p><strong>Enter the syntax used to copy the running configuration to your TFTP server</strong></p>
<pre>FiberSw01(config-job)# copy running-config tftp://172.0.0.22:69/config/FiberSw01_running</pre>
<p><strong>Exit configuration mode</strong></p>
<pre>FiberSw01(config-job)# end</pre>
<p><strong>Now that we have a job defined, make sure it is listed with the scheduler</strong></p>
<pre>FiberSw01# show scheduler job
Job Name: backup_running
------------------------
   copy running-config tftp://172.0.0.22:69/config/FiberSw01_running
==============================================================================</pre>
<p><strong>With the job defined, we can go back in and set when we want it executed</strong></p>
<pre>FiberSw01# config terminal
Enter configuration commands, one per line.  End with CNTL/Z.</pre>
<p><strong>Define a new schedule name and set execution time(s)</strong></p>
<pre>FiberSw01(config)# scheduler schedule name Backup_Running
FiberSw01(config-schedule)# time daily 23:00
FiberSw01(config-schedule)# job name backup_running
FiberSw01(config-schedule)# end</pre>
<p><strong>Now the schedule(s) can be listed with names, execution times, and status</strong></p>
<pre>FiberSw01# show scheduler schedule
Schedule Name       : Backup_Running
------------------------------------
User Name           : user
Schedule Type       : Run every day at 23 Hrs 0 Mins
Last Execution Time : Yet to be executed
-----------------------------------------------
     Job Name            Last Execution Status
-----------------------------------------------
    backup_running                        -NA-
==============================================================================</pre>
<p><strong>Since the running configuration was backed up previously, we can go in configure the startup configuration backup.  All commands are close to above except the tftp file name</strong></p>
<pre>FiberSw01# config terminal
Enter configuration commands, one per line.  End with CNTL/Z.
FiberSw01(config)# scheduler job name backup_startup
FiberSw01(config-job)# copy startup-config tftp://172.0.0.22:69/config/FiberSw01_startup
FiberSw01(config-job)# end

FiberSw01# config t
Enter configuration commands, one per line.  End with CNTL/Z.
FiberSw01(config)# scheduler schedule name Backup_Startup
FiberSw01(config-schedule)# time daily 23:05
FiberSw01(config-schedule)# job name backup_startup
FiberSw01(config-schedule)# end</pre>
<p><strong>Check the schedule once more and both jobs show up</strong></p>
<pre>FiberSw01# show scheduler schedule
Schedule Name       : Backup_Running
------------------------------------
User Name           : user
Schedule Type       : Run every day at 23 Hrs 0 Mins
Last Execution Time : Yet to be executed
-----------------------------------------------
     Job Name            Last Execution Status
-----------------------------------------------
    backup_running                        -NA-
==============================================================================
Schedule Name       : Backup_Startup
------------------------------------
User Name           : user
Schedule Type       : Run every day at 23 Hrs 5 Mins
Last Execution Time : Yet to be executed
-----------------------------------------------
     Job Name            Last Execution Status
-----------------------------------------------
    backup_startup                        -NA-
==============================================================================
<pre><strong>Now that the configuration is done, save the current (running) configuration so the schedules will not be lost on reboot</strong>
<pre>FiberSw01# copy running-config startup-config
[########################################] 100%</pre>
<p><strong>Notes: The above was done on Cisco MDS Switches but should work on most other Ciso IOS versions.  Also, the Execution Status will change after the job is executed.</strong></pre>
</pre>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ActiveRecord: Multiple Database Configuration]]></title>
<link>http://schleichermann.wordpress.com/2009/11/09/activerecord-multiple-database-configuration/</link>
<pubDate>Mon, 09 Nov 2009 04:36:33 +0000</pubDate>
<dc:creator>schleichermann</dc:creator>
<guid>http://schleichermann.wordpress.com/2009/11/09/activerecord-multiple-database-configuration/</guid>
<description><![CDATA[Perhaps you have a web application which not only has a database in which it stores its content but ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Perhaps you have a web application which not only has a database in which it stores its content but also has one to hold logging data (Exceptions, Log Entries).</p>
<p>This can be a common practice used to keep unrelated data separate and to off load the load created by logging data for purely health monitoring reasons. </p>
<p>If you are using Castle ActiveRecord as your ORM (Object Relational Mapping) layer and are familiar with setting it up for one database you may not be familiar with configuring it to handle more than one database for your objects.</p>
<p>ActiveRecord decides which database to send an object to based on a combination of a Abstract base class which inherits from ActiveRecordBase and a separate configuration section for each of those base classes. Each of those base classes must also be registered with ActiveRecord at application startup just like any Entity you plan on using within the application.</p>
<p>Below are the steps you need to take to properly setup your ASP.net web application to use 2 databases.</p>
<p>1. Create a ActiveRecordBase class for each of the databases you will be using. Each entity which inherits from that base class will be mapped to the corresponding database. </p>
<div style="border-bottom:#cccccc 1pt solid;border-left:#cccccc 1pt solid;width:450px;font-family:courier new;background:black;color:white;font-size:10pt;overflow:auto;border-top:#cccccc 1pt solid;font-weight:bold;border-right:#cccccc 1pt solid;padding:1pt;">
<pre style="margin:0;"><span style="color:#cc7832;">public</span> <span style="color:#cc7832;">abstract</span> <span style="color:#cc7832;">class</span> <span style="color:#ffc66d;">ApplicationActiveRecordBase</span><span style="font-weight:normal;">&#60;T&#62; : </span><span style="color:#ffc66d;">ActiveRecordBase</span><span style="font-weight:normal;">&#60;T&#62;{}</span></pre>
</div>
<div style="border-bottom:#cccccc 1pt solid;border-left:#cccccc 1pt solid;width:450px;font-family:courier new;background:black;color:white;font-size:10pt;overflow:auto;border-top:#cccccc 1pt solid;font-weight:bold;border-right:#cccccc 1pt solid;padding:1pt;">
<pre style="margin:0;"><span style="color:#cc7832;">public</span> <span style="color:#cc7832;">abstract</span> <span style="color:#cc7832;">class</span> <span style="color:#ffc66d;">LoggingActiveRecordBase</span><span style="font-weight:normal;">&#60;T&#62; : </span><span style="color:#ffc66d;">ActiveRecordBase</span><span style="font-weight:normal;">&#60;T&#62;{}</span></pre>
</div>
<p>2. Initialize each of the base classes so that ActiveRecord is aware of the classes</p>
<div style="border-bottom:#cccccc 1pt solid;border-left:#cccccc 1pt solid;width:450px;font-family:courier new;background:black;color:white;font-size:10pt;overflow:auto;border-top:#cccccc 1pt solid;font-weight:bold;border-right:#cccccc 1pt solid;padding:1pt;">
<pre style="margin:0;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span style="color:#cc7832;">static</span> ActiveRecordInitializer()</pre>
<pre style="margin:0;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; {</pre>
<pre style="margin:0;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span style="color:#2b91af;font-weight:normal;">IConfigurationSource</span> source = <span style="color:#ffc66d;">ActiveRecordSectionHandler</span><span style="font-weight:normal;">.Instance;</span></pre>
<pre style="margin:0;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span style="color:#ffc66d;">ActiveRecordStarter</span><span style="font-weight:normal;">.Initialize(</span></pre>
<pre style="margin:0;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; source,</pre>
<pre style="margin:0;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span style="color:#cc7832;">typeof</span>(<span style="color:#ffc66d;">LoggingActiveRecordBase</span><span style="font-weight:normal;">&#60;&#62;),</span></pre>
<pre style="margin:0;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span style="color:#cc7832;">typeof</span>(<span style="color:#ffc66d;">ApplicationActiveRecordBase</span><span style="font-weight:normal;">&#60;&#62;));</span></pre>
<pre style="margin:0;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</pre>
</div>
<p>3. All entities belonging to a specific database should inherit from the base class associated with that database in the configuration.</p>
<div style="border-bottom:#cccccc 1pt solid;border-left:#cccccc 1pt solid;width:450px;font-family:courier new;background:black;color:white;font-size:10pt;overflow:auto;border-top:#cccccc 1pt solid;font-weight:bold;border-right:#cccccc 1pt solid;padding:1pt;">
<pre style="margin:0;">&#160;&#160;&#160; [<span style="color:#ffc66d;">DataContract</span>]</pre>
<pre style="margin:0;">&#160;&#160;&#160; [<span style="color:#ffc66d;">ActiveRecord</span>(Table = <span style="color:#a5c25c;">&#34;exceptionentry&#34;</span>)]</pre>
<pre style="margin:0;">&#160;&#160;&#160; <span style="color:#cc7832;">public</span> <span style="color:#cc7832;">class</span> <span style="color:#ffc66d;">ExceptionEntry</span> : <span style="color:#ffc66d;">LoggingActiveRecordBase</span><span style="font-weight:normal;">&#60;</span><span style="color:#ffc66d;">ExceptionEntry</span><span style="font-weight:normal;">&#62;</span></pre>
<pre style="margin:0;">&#160;&#160;&#160; {</pre>
</div>
<p>4. Add configuration sections to the ActiveRecord configuration for each database specifying the ActiveRecordBase class that will be used to identify the database.</p>
<div style="border-bottom:#cccccc 1pt solid;border-left:#cccccc 1pt solid;width:450px;font-family:courier new;background:black;color:white;font-size:10pt;overflow:auto;border-top:#cccccc 1pt solid;font-weight:bold;border-right:#cccccc 1pt solid;padding:1pt;">
<pre style="margin:0;">&#160; &#60;<span style="color:#ff8000;">activerecord</span> isWeb=<span style="color:green;">&#34;true&#34;</span> isDebug=<span style="color:green;">&#34;false&#34;</span> threadinfotype=<span style="color:green;">&#34;Castle.ActiveRecord.Framework.Scopes.HybridWebThreadScopeInfo, Castle.ActiveRecord&#34;</span>&#62;</pre>
<pre style="margin:0;">&#160;</pre>
<pre style="margin:0;">&#160;&#160;&#160; &#60;<span style="color:#ff8000;">config</span> type=<span style="color:green;">&#34;ActiveRecord.BaseClasses.ApplicationActiveRecordBase`1, Data.Core, Vers</span><span style="color:green;">ion=1.0.0.0, Culture=neutral&#34;</span>&#62;</pre>
<pre style="margin:0;">&#160;&#160;&#160;&#160;&#160; &#60;<span style="color:#ff8000;">add</span> key=<span style="color:green;">&#34;hibernate.connection.provider&#34;</span> value=<span style="color:green;">&#34;NHibernate.Connection.DriverConnectionProvider&#34;</span> /&#62;</pre>
<pre style="margin:0;">&#160;&#160;&#160;&#160;&#160; &#60;<span style="color:#ff8000;">add</span> key=<span style="color:green;">&#34;hibernate.dialect&#34;</span> value=<span style="color:green;">&#34;NHibernate.Dialect.MySQLDialect&#34;</span> /&#62;</pre>
<pre style="margin:0;">&#160;&#160;&#160;&#160;&#160; &#60;<span style="color:#ff8000;">add</span> key=<span style="color:green;">&#34;hibernate.connection.driver_class&#34;</span> value=<span style="color:green;">&#34;NHibernate.Driver.MySqlDataDriver&#34;</span> /&#62;</pre>
<pre style="margin:0;">&#160;&#160;&#160;&#160;&#160; &#60;<span style="color:#ff8000;">add</span> key=<span style="color:green;">&#34;hibernate.connection.connection_string&#34;</span> value=<span style="color:green;">&#34;Server=localhost; Database=YOURAPPLICATIONDATABASE; User Id=YOURUSER; Password=YOURPASSWORD&#34;</span> /&#62;</pre>
<pre style="margin:0;">&#160;&#160;&#160; &#60;/<span style="color:#ff8000;">config</span>&#62;</pre>
<pre style="margin:0;">&#160;</pre>
<pre style="margin:0;">&#160;&#160;&#160; &#60;<span style="color:#ff8000;">config</span> type=<span style="color:green;">&#34;ActiveRecord.BaseClasses.LoggingActiveRecordBase`1, Data.Core, Version=</span><span style="color:green;">1.0.0.0, Culture=neutral&#34;</span>&#62;</pre>
<pre style="margin:0;">&#160;&#160;&#160;&#160;&#160; &#60;<span style="color:#ff8000;">add</span> key=<span style="color:green;">&#34;hibernate.connection.provider&#34;</span> value=<span style="color:green;">&#34;NHibernate.Connection.DriverConnectionProvider&#34;</span> /&#62;</pre>
<pre style="margin:0;">&#160;&#160;&#160;&#160;&#160; &#60;<span style="color:#ff8000;">add</span> key=<span style="color:green;">&#34;hibernate.dialect&#34;</span> value=<span style="color:green;">&#34;NHibernate.Dialect.MySQLDialect&#34;</span> /&#62;</pre>
<pre style="margin:0;">&#160;&#160;&#160;&#160;&#160; &#60;<span style="color:#ff8000;">add</span> key=<span style="color:green;">&#34;hibernate.connection.driver_class&#34;</span> value=<span style="color:green;">&#34;NHibernate.Driver.MySqlDataDriver&#34;</span> /&#62;</pre>
<pre style="margin:0;">&#160;&#160;&#160;&#160;&#160; &#60;<span style="color:#ff8000;">add</span> key=<span style="color:green;">&#34;hibernate.connection.connection_string&#34;</span> value=<span style="color:green;">&#34;Server=localhost; Database=YOURLOGGINGDATABASE; User Id=YOURUSER; Password=YOURPASSWORD&#34;</span> /&#62;</pre>
<pre style="margin:0;">&#160;&#160;&#160; &#60;/<span style="color:#ff8000;">config</span>&#62;</pre>
<pre style="margin:0;">&#160;</pre>
<pre style="margin:0;">&#160; &#60;/<span style="color:#ff8000;">activerecord</span>&#62;&#160; </pre>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[tip pour Emacs]]></title>
<link>http://frederic.logier.org/2009/10/25/tip-pour-emacs/</link>
<pubDate>Sun, 25 Oct 2009 13:28:24 +0000</pubDate>
<dc:creator>fredix</dc:creator>
<guid>http://frederic.logier.org/2009/10/25/tip-pour-emacs/</guid>
<description><![CDATA[Pour avoir un thème de couleur vert reposant les yeux dans emacs il suffit de mettre ceci dans un fi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Pour avoir un thème de couleur vert reposant les yeux dans emacs il suffit de mettre ceci dans un fichier .Xresources puis relancer sa session X :</p>
<pre>emacs*Background: DarkSlateGray
emacs*Foreground: Wheat
emacs*pointerColor: Orchid
emacs*cursorColor: Orchid
emacs*bitmapIcon: on
#emacs*font: -adobe-helvetica-*-r-*-*-14-*-*-*-*-*-*-*
emacs*font: -*-fixed-bold-r-*-*-15-*-*-*-*-*-*-*
emacs.geometry: 125x40

<a href="http://fredix.wordpress.com/files/2009/10/capture-emacs1.png"><img class="alignnone size-medium wp-image-126" title="Capture-emacs" src="http://fredix.wordpress.com/files/2009/10/capture-emacs1.png?w=300" alt="Capture-emacs" width="300" height="178" /></a></pre>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[SQL Server Configuration - The Basics]]></title>
<link>http://enggtech.wordpress.com/2009/10/22/sql-server-configuration-the-basics/</link>
<pubDate>Thu, 22 Oct 2009 15:27:17 +0000</pubDate>
<dc:creator>Visitor Blogs</dc:creator>
<guid>http://enggtech.wordpress.com/2009/10/22/sql-server-configuration-the-basics/</guid>
<description><![CDATA[In this article I have not described more advanced setups, such as clusters, replication, etc. This ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>In this article I have not described more advanced setups, such as clusters, replication, etc. This article is designed as an overview of a basic, one-server, OLTP environment.</p>
<p>I have categorized configuration options into <em>server options</em>, <em>disk configuration</em> and <em>startup options</em>.</p>
<pre>sp_configure 'show advanced options', 1
go
reconfigure
go
sp_configure
go</pre>
<p><em> Or </em></p>
<pre>select * from sys.configurations
go</pre>
<h3>affinity mask</h3>
<h3>affinity io mask</h3>
<h3>cost threshold for parallelism</h3>
<h3>fill factor</h3>
<h3>index create memory</h3>
<h3>locks</h3>
<h3>max degree of parallelism</h3>
<h3>max worker threads</h3>
<h3>min and max server memory</h3>
<h3>min memory per query</h3>
<h3>priority boost</h3>
<h3>recovery interval</h3>
<h2>Startup Options</h2>
<p><strong>-g</strong> <em>memory_to_reserve</em></p>
<p><strong>-T</strong> <em>trace flag</em></p>
<p><strong>-x</strong></p>
<p><a href="http://www.sql-server-pro.com/sql-server-configuration.html">SQL Server Configuration &#8211; The Basics</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[设定内核CFS调度算法参数来改善桌面响应]]></title>
<link>http://roylez.wordpress.com/2009/10/22/%e8%ae%be%e5%ae%9a%e5%86%85%e6%a0%b8cfs%e8%b0%83%e5%ba%a6%e7%ae%97%e6%b3%95%e5%8f%82%e6%95%b0%e6%9d%a5%e6%94%b9%e5%96%84%e6%a1%8c%e9%9d%a2%e7%9b%b8%e5%ba%94/</link>
<pubDate>Thu, 22 Oct 2009 09:29:46 +0000</pubDate>
<dc:creator>roylez</dc:creator>
<guid>http://roylez.wordpress.com/2009/10/22/%e8%ae%be%e5%ae%9a%e5%86%85%e6%a0%b8cfs%e8%b0%83%e5%ba%a6%e7%ae%97%e6%b3%95%e5%8f%82%e6%95%b0%e6%9d%a5%e6%94%b9%e5%96%84%e6%a1%8c%e9%9d%a2%e7%9b%b8%e5%ba%94/</guid>
<description><![CDATA[最近BFS的风头实在是太盛。一方面是因为那劲爆的名字Brain Fuck Scheduler，另外一方面则是因为那澳大利亚的传奇级的内核黑客Con Kivas与Linux内核开发小组那纠结的故事。看着]]></description>
<content:encoded><![CDATA[最近BFS的风头实在是太盛。一方面是因为那劲爆的名字Brain Fuck Scheduler，另外一方面则是因为那澳大利亚的传奇级的内核黑客Con Kivas与Linux内核开发小组那纠结的故事。看着]]></content:encoded>
</item>
<item>
<title><![CDATA[cfg - butchji]]></title>
<link>http://etmain.wordpress.com/2009/10/22/cfg-butchji/</link>
<pubDate>Wed, 21 Oct 2009 22:28:48 +0000</pubDate>
<dc:creator>kfk</dc:creator>
<guid>http://etmain.wordpress.com/2009/10/22/cfg-butchji/</guid>
<description><![CDATA[Wpis ten otwiera nowy dział w etmain: configi najlepszych graczy et. Na pierwszy ogień poszedł confi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Wpis ten otwiera nowy dział w etmain: configi najlepszych graczy et. Na pierwszy ogień poszedł config gracza o nicku butchji. Kojarzycie?</p>
<p style="text-align:center;">Nazwa: <strong>cfg &#8211; butchji</strong></p>
<p style="text-align:center;">Wielkość: <strong>13.3  KB</strong><strong> </strong></p>
<p style="text-align:center;">Download:  <strong><a title="cfg - butchji" href="http://uploading.com/files/9b44ffa6/butchji.rar/" target="_blank">butchji.rar(uploading.com)</a></strong></p>
<p style="text-align:center;">
<p style="text-align:center;"><strong><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/VnHWhLMSwyc&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/VnHWhLMSwyc&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span><br />
</strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How To Restore Compiz to Default Settings]]></title>
<link>http://detacheddatabase.wordpress.com/2009/10/19/how-to-restore-compiz-to-default-settings/</link>
<pubDate>Sun, 18 Oct 2009 23:00:11 +0000</pubDate>
<dc:creator>LS</dc:creator>
<guid>http://detacheddatabase.wordpress.com/2009/10/19/how-to-restore-compiz-to-default-settings/</guid>
<description><![CDATA[I remember the first time I played around in CompizConfig Settings Manager &#8211; I enabled one of ]]></description>
<content:encoded><![CDATA[I remember the first time I played around in CompizConfig Settings Manager &#8211; I enabled one of ]]></content:encoded>
</item>
<item>
<title><![CDATA[Private Assemblies (Windows)]]></title>
<link>http://enggtech.wordpress.com/2009/10/14/private-assemblies-windows/</link>
<pubDate>Wed, 14 Oct 2009 05:10:54 +0000</pubDate>
<dc:creator>Visitor Blogs</dc:creator>
<guid>http://enggtech.wordpress.com/2009/10/14/private-assemblies-windows/</guid>
<description><![CDATA[An application is considered an isolated application if all of its components are side-by-side assem]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>An application is considered an <a id="ctl00_MTCS_main_ctl01" href="http://msdn.microsoft.com/en-us/library/aa375190.aspx">isolated application</a> if all of its components are <a id="ctl00_MTCS_main_ctl02" href="http://msdn.microsoft.com/en-us/library/aa376307.aspx">side-by-side assemblies</a>. A side-by-side assembly is a collection of resources—a group of DLLs, windows classes, COM servers, type libraries, or interfaces—available for an application to use at runtime. Typically, a side-by-side assembly is one to several DLLs. For example, the C Runtime Library assembly contains three DLLs—msvcr90.dll, msvcm90.dll and msvcp90.dll—and is used by applications when they are built using functions from the CRT library.</p>
<p>A side-by-side assembly can be either shared or private. <a id="ctl00_MTCS_main_ctl22_ctl00_ctl00" href="http://msdn.microsoft.com/en-us/library/aa375996.aspx">Shared side-by-side assemblies</a> may be used by multiple applications that specify, in their manifests, a dependence on the assembly. Multiple versions of side-by-side assemblies can be shared by different applications running at the same time. A <a id="ctl00_MTCS_main_ctl22_ctl00_ctl01" href="http://msdn.microsoft.com/en-us/library/aa375674.aspx">private assembly</a> is an assembly that is deployed with an application and is available for the exclusive use of that application. Private assemblies are installed in the folder containing the application&#8217;s executable file or one of its subfolders.</p>
<p>A private assembly is an assembly that is deployed with an application and is available for the exclusive use of that application. That is, other applications do not share the private assembly. Private assemblies are one of the methods that can be used to create <a id="ctl00_MTCS_main_ctl01" href="http://msdn.microsoft.com/en-us/library/aa375190%28VS.85%29.aspx">isolated applications</a>. For more information, see  <a id="ctl00_MTCS_main_ctl02" href="http://msdn.microsoft.com/en-us/library/aa374029%28VS.85%29.aspx">About Isolated Applications and Side-by-Side Assemblies</a>.</p>
<p>Private assemblies must be designed to work side-by-side with other versions of the assembly on the system. For more information, see <a id="ctl00_MTCS_main_ctl03" href="http://msdn.microsoft.com/en-us/library/aa375155%28VS.85%29.aspx">Guidelines for Creating Side-by-side Assemblies</a>.</p>
<p>Note that the steps for creating a private assembly are identical to those for creating a <strong>shared assembly </strong>with two exceptions:</p>
<ul>
<li>A private assembly is not required to be signed, and <strong>publickeyToken</strong> is not required in the <a></a>&#60;assemblyIdentity&#62; element of the assembly manifest.</li>
<li>Private assemblies can be installed into the application&#8217;s folder using any installation technology. Private assemblies are not required to be installed using the Windows Installer.</li>
</ul>
<p><a href="http://msdn.microsoft.com/en-us/library/aa375674(VS.85).aspx">Private Assemblies (Windows)</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Glassfish Session Timeout Config]]></title>
<link>http://joshjustice.wordpress.com/2009/10/09/glassfish-session-timeout-config/</link>
<pubDate>Fri, 09 Oct 2009 21:13:27 +0000</pubDate>
<dc:creator>Josh Justice</dc:creator>
<guid>http://joshjustice.wordpress.com/2009/10/09/glassfish-session-timeout-config/</guid>
<description><![CDATA[To configure session timeout in an app&#8217;s config file, use the session-properties element in su]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>To configure session timeout in an app&#8217;s config file, use the <a href="http://docs.sun.com/app/docs/doc/820-7693/beaxr?a=view">session-properties</a> element in sun-web.xml.</p>
<p>To configure it in the Glassfish console, go to <a href="http://itgeekhelp.blogspot.com/2009/03/glassfish-web-container-tuning-settings.html">Configurations &#62; <em>config-name</em> &#62; Web Container &#62; Session Properties</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Analog Devices AD1984A (snd-hda-intel) on HP 6730s, Arch Linux]]></title>
<link>http://geektivities.wordpress.com/2009/10/04/analog-devices-ad1984a-snd-hda-intel-on-hp-6730s-arch-linux/</link>
<pubDate>Sun, 04 Oct 2009 10:57:56 +0000</pubDate>
<dc:creator>thandle</dc:creator>
<guid>http://geektivities.wordpress.com/2009/10/04/analog-devices-ad1984a-snd-hda-intel-on-hp-6730s-arch-linux/</guid>
<description><![CDATA[Here&#8217;s a great table for all your snd-hda-intel needs: Ubuntu Wiki audio_intel_da.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Here&#8217;s a great table for all your snd-hda-intel needs: <A href="http://doc.ubuntu-fr.org/audio_intel_hda">Ubuntu Wiki audio_intel_da</A>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Configurando o Arch Linux (1ª parte)]]></title>
<link>http://opensourcecia.wordpress.com/2009/10/02/configurando-o-arch-linux-1%c2%aa-parte/</link>
<pubDate>Sat, 03 Oct 2009 01:30:45 +0000</pubDate>
<dc:creator>William Lagos</dc:creator>
<guid>http://opensourcecia.wordpress.com/2009/10/02/configurando-o-arch-linux-1%c2%aa-parte/</guid>
<description><![CDATA[Depois de muitíssimo tempo sem postar dicas, resolvi tomar vergonha na cara e escrever uma. Acho que]]></description>
<content:encoded><![CDATA[Depois de muitíssimo tempo sem postar dicas, resolvi tomar vergonha na cara e escrever uma. Acho que]]></content:encoded>
</item>
<item>
<title><![CDATA[[Config]: Configurando más de un servidor DNS usando Bind9 en Debian]]></title>
<link>http://administralinux.wordpress.com/2009/10/01/config-configurando-mas-de-un-servidor-dns-usando-bind9-en-debian/</link>
<pubDate>Thu, 01 Oct 2009 21:02:44 +0000</pubDate>
<dc:creator>elavdeveloper</dc:creator>
<guid>http://administralinux.wordpress.com/2009/10/01/config-configurando-mas-de-un-servidor-dns-usando-bind9-en-debian/</guid>
<description><![CDATA[Una vez que tengamos instalado nuestro servidor DNS, podemos utilizar un segundo servidor modificand]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Una vez que tengamos instalado nuestro servidor DNS, podemos utilizar un segundo servidor modificando solamente algunos parámetros de nuestra configuración anterior. Para ello tomaremos del ejemplo anterior el servidor que lleva por nombre webserv, con IP 192.168.17.4 y le instalamos Bind9 como se muestra en el <a title="Configurar un servidor DNS en Debian" href="http://administralinux.wordpress.com/2009/07/24/config-configurando-un-servidor-dns-usando-bind9-en-debian/" target="_blank">tutorial anterior</a>. Por ahora lo dejamos como está y pasamos a configurar el servidor primario.</p>
<p>En el servidor primario abrimos el fichero <strong>/etc/bind/named.conf.local</strong>, buscamos estas líneas:</p>
<blockquote><p><strong>zone &#8220;tudominio.com&#8221; IN {<br />
type master;<br />
file &#8220;/var/cache/bind/tudominio.com.lan.zone&#8221;;<br />
allow-query { any; };<br />
allow-update { servidores-lan; };<br />
allow-transfer { 192.168.17.1; };<br />
notify yes;<br />
};</strong></p>
<p><strong>zone &#8220;17.168.192.in-addr.arpa&#8221; IN {<br />
type master;<br />
file &#8220;/var/cache/bind/17.168.192.in-addr.arpa&#8221;;<br />
allow-query { any; };<br />
allow-update { servidores-lan; };<br />
allow-transfer { 192.168.17.1; };<br />
notify yes;<br />
}; </strong></p></blockquote>
<p>Y lo único que tenemos que hacer es modificar la línea:</p>
<blockquote><p><strong>allow-transfer { 192.168.17.1; };</strong></p></blockquote>
<p>Y poner la IP de nuestro servidor secundario.</p>
<p>Ahora vamos a los ficheros de zonas y nos quedarían de esta forma.</p>
<blockquote><p><strong>;——— Configuración Local —————–<br />
;—————————————————<br />
$TTL 10m ; Tiempo de vida de la Zona<br />
$ORIGIN tudominio.com. ; Nombre del dominio<br />
@ IN SOA ns1.tudominio.com. admin.tudominio.com. (<br />
2009100401     ; Serial y modificación del archivo<br />
10m            ; ref = Tiempo para refrescar<br />
30m            ; ret = Tiempo de reintento para actualizacion<br />
1d             ; ex = Tiempo de expiracion<br />
10m            ; min = minimo<br />
)</strong></p>
<p><strong>;——– Registros Principales ———-<br />
;—————————————–</strong></p>
<p><strong>@    IN                 NS    ns1<br />
<span style="color:#800000;">@    IN                 NS    ns2</span><br />
@    IN                 MX    10    mx<br />
@    IN                  A    192.168.17.1</strong></p>
<p><strong>;——– Registros Extras —————<br />
;—————————————–</strong></p>
<p><strong>@    IN TXT    &#8220;Nombre de tu Red&#8221;<br />
@    IN TXT    &#8220;v=spf1 a mx a:mx.tudominio.com include:tudominio.com ~all&#8221;<br />
@    HINFO     &#8220;Dell PowerEdge 2850″ &#8220;Debian GNU/Linux&#8221;</strong></p>
<p><strong>;——— Registros A ——————-<br />
;—————————————–</strong></p>
<p><strong>mx          IN                 A    192.168.17.2<br />
IN               TXT    &#8220;Mail (Work Server)&#8221;<br />
IN               TXT    &#8220;v=spf1 a -all&#8221;<br />
mail        IN                 A    192.168.17.2</strong></p>
<p><strong>ns1         IN                 A    192.168.17.1<br />
pdc         IN                 A    192.168.17.1</strong></p>
<p><strong>proxy       IN                 A    192.168.17.3</strong></p>
<p><strong><span style="color:#800000;">ns2         IN                 A    192.168.17.4</span><br />
webserv     IN                 A    192.168.17.4</strong></p>
<p><strong>tudominio.com. IN              A    192.168.17.1<br />
<span style="color:#800000;">tudominio.com. IN              A    192.168.17.4</span></strong></p>
<p><strong>@           IN                 A    192.168.17.1</strong></p>
<p><strong>;——– Registros CNAME —————————–<br />
;——————————————————</strong></p>
<p><strong>www                  IN     CNAME   proxy</strong></p>
<p><strong>webmail              IN     CNAME   mail</strong></p>
<p><strong>foro                 IN     CNAME    webserv<br />
ftp                  IN     CNAME   webserv</strong></p>
<p><strong>; ——- Registro para el Jabber ———————<br />
;——————————————————<br />
$ORIGIN tudominio.com.<br />
@                       A       192.168.157.155<br />
$ORIGIN _tcp.jabber.tudominio.com.<br />
_jabber                 SRV     5 0 5269 tudominio.com.<br />
_xmpp-server            SRV     5 0 5269 tudominio.com.<br />
_xmpp-client            SRV     5 0 5222 tudominio.com.</strong></p></blockquote>
<p>Como pueden ver hemos agregado un nuevo servidor DNS ( los cambios están en rojo). Ahora hacemos lo mismo con el fichero de zona inversa:</p>
<blockquote><p><strong>;&#8212;&#8212;&#8212; DOMINIO &#8211; LAN &#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
$TTL 10m ; Tiempo de vida de la Zona<br />
$ORIGIN 17.168.192.IN-ADDR.ARPA. ; Rango de la Red<br />
@ IN SOA ns1.tudominio.com. admin.tudominio.com. (<br />
2009030401          ; Serial y modificación del archivo<br />
10m         ; ref = Tiempo para refrescar<br />
30m         ; ret = Tiempo de reintento para actualizacion<br />
1d          ; ex = Tiempo de expiracion<br />
10m         ; min = minimo<br />
)</strong></p>
<p><strong>;&#8212;&#8212;&#8211; Servidores DNS &#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
@ IN         NS     ns1.tudominio.com.<br />
@ IN         NS     ns2.tudominio.com.</strong></p>
<p><strong>;&#8212;&#8212;&#8212;&#8212; IP HOST &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
1                 IN         PTR     ns1.tudominio.com.<br />
IN         PTR     pdc.tudominio.com.<br />
2                 IN         PTR     mx.tudominio.com.<br />
IN         PTR     mail.tudominio.com.<br />
3                 IN         PTR     proxy.tudominio.com.<br />
4                 IN         PTR     ns2.tudominio.com.<br />
IN         PTR     webserv.tudominio.com.</strong></p></blockquote>
<p>Una vez que hemos terminado copiamos los mismos archivos al servidor secundario. Ahora solamente tenemos que modificar en nuestro servidor secundario el fichero <strong>/etc/bind/named.conf</strong> el cual nos quedaría de esta forma:</p>
<blockquote><p><strong>zone &#8220;tudominio.com&#8221; IN {<br />
type slave;<br />
file &#8220;/var/cache/bind/tudominio.com.lan.zone&#8221;;<br />
allow-query { any; };<br />
masters { 192.168.17.1; };<br />
notify yes;<br />
};</strong></p>
<p><strong>zone &#8220;17.168.192.in-addr.arpa&#8221; IN {<br />
type slave;<br />
file &#8220;/var/cache/bind/17.168.192.in-addr.arpa&#8221;;<br />
allow-query { any; };<br />
masters { 192.168.17.1; };<br />
notify yes;<br />
};</strong></p></blockquote>
<p>Como ven hemos declarado que tipo de servidor es (en este caso secundario o esclavo) y cual es el servidor primario o maestro.</p>
<p>Algo importante a tener en cuenta es que cuando modificamos estos ficheros, debemos modificar también el número de serie del mismo. En el ejemplo yo utilizo 2009030401 que viene siendo: año/mes/dia/numero de modificacion.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[CUPS on OS X]]></title>
<link>http://bbaugh0.wordpress.com/2009/09/30/cups-on-os-x/</link>
<pubDate>Wed, 30 Sep 2009 06:42:49 +0000</pubDate>
<dc:creator>bbaugh0</dc:creator>
<guid>http://bbaugh0.wordpress.com/2009/09/30/cups-on-os-x/</guid>
<description><![CDATA[So I am visiting some colleagues who have a CUPS server and insist that it is &#8220;Apple crap]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>So I am visiting some colleagues who have a CUPS server and insist that it is &#8220;Apple crap&#8221; and should work with my Macbook; but it doesn&#8217;t. So I have to add the printer using the hardware driver which annoys my colleague since he doesn&#8217;t want users messing up the hardware (understandably). Since I just wanted to print I just do it anyway and print the paper I wanted. </p>
<p>That was yesterday, since I don&#8217;t like annoying people I figure I will see what the net has to say about it. Turns out that by default OS X 10.5 doesn&#8217;t look for CUPS shared printers because CUPS has been replaced with Bonjour sharing. But it is extremely easy to turn on; In a terminal window enter the following: </p>
<p><code>sudo cupsctl BrowseProtocols='"cups dnssd"'</code></p>
<p>This command tells the printer browser to look for dnssd(Bonjour) AND cups shared printers (sudo is needed since you are editing configuration files with this command so care should be taken). Then you have to wait for a bit as CUPS servers only send information periodically. Voila, you should see all the printers shared in the &#8220;Default&#8221; tab of the add printer settings. </p>
<p>If you want to revert back to the original Bonjour ONLY browsing then run the command:</p>
<p><code>sudo cupsctl BrowseProtocols='"dnssd"'</code></p>
<p>Apple has a little info on this on their website but it doesn&#8217;t really advertise that it works with many linux/unix systems.<br />
<a href="http://support.apple.com/kb/HT2275">Link</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cấu hình subdomain với DNS, Apache và các sử dụng trong PHP]]></title>
<link>http://datgs.wordpress.com/2009/09/25/444/</link>
<pubDate>Fri, 25 Sep 2009 08:12:25 +0000</pubDate>
<dc:creator>datgs</dc:creator>
<guid>http://datgs.wordpress.com/2009/09/25/444/</guid>
<description><![CDATA[http://andy.sinaptix.com/2007/08/22/username-as-subdomain-in-codeigniter http://ma.tt/2003/10/wildca]]></description>
<content:encoded><![CDATA[http://andy.sinaptix.com/2007/08/22/username-as-subdomain-in-codeigniter http://ma.tt/2003/10/wildca]]></content:encoded>
</item>
<item>
<title><![CDATA[New Alienware high-end gaming desktops]]></title>
<link>http://littlemonstre.wordpress.com/2009/09/23/new-alienware-high-end-gaming-desktops/</link>
<pubDate>Wed, 23 Sep 2009 17:44:02 +0000</pubDate>
<dc:creator>monstre143</dc:creator>
<guid>http://littlemonstre.wordpress.com/2009/09/23/new-alienware-high-end-gaming-desktops/</guid>
<description><![CDATA[Alienware announced refreshes to both the design and the technology of its high-end Area-51 and Auro]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Alienware announced refreshes to both the design and the technology of its high-end Area-51 and Aurora gaming desktops. A new angular look replaces the familiar rounded alien-head shape of the old models, and features like motorized air vents and specialized hard drive layout give Alienware some unique selling points. Alienware is also the previously unnamed OEM who purchased the first batch of AMD&#8217;s Radeon HD 5800 cards, so other system vendors can blame Dell/Alienware for their short supply and delayed order shipping.<br />
Essentially Alienware has two systems to announce today, the full tower Area-51 and the micro-ATX-based Aurora. Each system also has a more expensive ALX edition that features liquid cooling, a wider array of case lighting, and other tweaks.</p>
<p>The most unique feature of the new case that&#8217;s common to both the Area 51 and the Aurora is the motorized air vents, which Alienware calls its Active Venting louver system. As Alienware describes it, when the temperature inside the case reaches a certain level, fins on the top of the case will open up automatically to increase airflow. We have a hunch Alienware doesn&#8217;t mind the theatrics of this venting system, either.<br />
Unfortunately missing from our Alienware PR shots is an image of the Area 51&#8217;s hard drive array. Rather than inserting the drives into main cavity, Alienware has carved out a series of six flat-lying drive bays on the opposite side of the Area 51. The benefits of this design are more apparent than the venting system, in that it lets you add more internal storage than you could normally, allows for easy drive installation, and also frees up room air flow inside the main case compartment. No other vendor that we know of offers such a design.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Westell UltraLine Series3 9100VM configuration tips]]></title>
<link>http://scottledyard.wordpress.com/2009/09/19/westell-ultraline-series3-9100vm-configuration-tips/</link>
<pubDate>Sat, 19 Sep 2009 17:49:39 +0000</pubDate>
<dc:creator>scottledyard</dc:creator>
<guid>http://scottledyard.wordpress.com/2009/09/19/westell-ultraline-series3-9100vm-configuration-tips/</guid>
<description><![CDATA[Wanting to make changes to the wifi and DNS settings of the new routers that Cincinnati Bell (CB) is]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignleft size-thumbnail wp-image-178" title="StartWestellConfig" src="http://scottledyard.wordpress.com/files/2009/09/picture-30-png1.jpg?w=79" alt="StartWestellConfig" width="79" height="150" />Wanting to make changes to the wifi and DNS settings of the new routers that Cincinnati Bell (CB) is routinely installing now, I went about researching and using trial and error. The goal was to implement WPA2 wifi security and OpenDNS at a router level, so as to help clients be a bit more secure.</p>
<p><strong>Overview of high speed modem/router</strong></p>
<p>Near as I can tell, Cincinnati Bell is using its installed fiber in urban locations to offer a high speed internet, combined with television channels via internet, so-called IPTV. Westell has long been a provider of equipment to our local phone company and this device is meant to offer &#8220;Advanced, dual-core processing power with Ethernet, MoCA, or VDSL2 WAN interface for fiber-to-the-home and fiber-to-the-curb networks.&#8221; (<a href="http://www.westell.com/iptv-video.html" target="_blank">link</a>) These are hunka-chunka, white bricks and I&#8217;ll leave it to others to show us what&#8217;s actually inside them and perhaps explain their hugeness.</p>
<p><strong>Getting access to advanced settings</strong></p>
<p>As made clear on Westell&#8217;s web site their stuff  is marketed to ISP&#8217;s, not thru retail / wholesale channels. As such, finding a manual is like pulling teeth. I must give credit to <a title="How to bridge Ultraline Series3" href="http://ftp.broadbandreports.com/forum/r22210109-Westell-UltraLine-Series-3-9100VM-Bridging-Make-modem-only" target="_blank">others&#8217; posts</a> on for helping me just figure out the interface and that you need to click on menus up top AND on the left.)<!--more--></p>
<p><strong>First: Set wifi to WPA2</strong></p>
<p>Cincinnati Bell routinely sets up WEP, even though it&#8217;s known to be useless in the face of hacks. (To their credit, they used to always be setup as unsecured / open!) But, WEP lets customers use older equipment, especially gaming systems, so I suppose it cuts down on  support calls.  Setup was pretty straightforward. Just point to the IP of the gateway (seems like CB or Westell has a tradition of making this 192.168.200.1) and input the default admin password of  (you guessed it) &#8220;admin&#8221; and &#8220;password&#8221;.    Using wireless button, wireless settings menu option (on left) set to WPA2, with PSK (Pre-Shared Key) and using AES encryption algorithm.</p>
<div id="attachment_175" class="wp-caption aligncenter" style="width: 271px"><img class="size-medium wp-image-175" title="Westell wifi setting" src="http://scottledyard.wordpress.com/files/2009/09/picture-32-png.jpg?w=261" alt="Westell conveniently locates all wifi setting in one spot." width="261" height="300" /><p class="wp-caption-text">Westell conveniently locates all wifi setting in one spot.</p></div>
<p><strong>On to OpenDNS</strong></p>
<p>I won&#8217;t go into all the benefits of <a title="OpenDNS" href="http://opendns.com" target="_blank">OpenDNS</a>, but will just talk about configuring it on the UltraLine Series3 . Note that OpenDNS usually does a pretty good job of explaining this stuff at their site, but it didn&#8217;t have anything about this device when I last visited.</p>
<p>1.    OpenDNS<br />
a.    OpenDNS setup with account (not described here)<br />
b.    OpenDNS software (not described here)<br />
c.    Westell Router settings:<br />
i.    On top, My Network<br />
ii.    On left, Network Connection<br />
iii.    Click WAN VDSL, either the main link or the pencil<br />
iv.    On left, click Settings<br />
v.    Change DNS Server option<br />
1.    From Obtain DNS Server Addresses Automatically<br />
2.    To settings Use the following DNS server addresses<br />
a.    207.68.222.222 and<br />
b.    207.68.220.220<br />
vi.    Test by resetting router (Advance menu and Reboot) and resetting computer&#8217;s network connection.<br />
d.    Save Westell configuration<br />
i.    At top, Advanced<br />
ii.    Do you want to proceed? Yes<br />
iii.    Configuration file option<br />
iv.    At bottom, Save Configuration File<br />
v.    Downloads a file called Wireless Broadband Configuration.conf. Put this someplace safe.</p>
<p>Here&#8217;s a pic of the Settings page:</p>
<p><img class="aligncenter size-medium wp-image-179" title="DNSsettingschange" src="http://scottledyard.wordpress.com/files/2009/09/picture-35.png?w=300" alt="DNSsettingschange" width="300" height="205" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Vylepsovanie mailoveho klienta Mutt]]></title>
<link>http://cinan.wordpress.com/2009/09/19/vylepsovanie-mailoveho-klienta-mutt/</link>
<pubDate>Sat, 19 Sep 2009 10:28:56 +0000</pubDate>
<dc:creator>cinan</dc:creator>
<guid>http://cinan.wordpress.com/2009/09/19/vylepsovanie-mailoveho-klienta-mutt/</guid>
<description><![CDATA[Viac info ku kazdej volbe je v manuale muttrc. Pre najlepsiu orientaciu v mailoch mam zapnutu volbu ]]></description>
<content:encoded><![CDATA[Viac info ku kazdej volbe je v manuale muttrc. Pre najlepsiu orientaciu v mailoch mam zapnutu volbu ]]></content:encoded>
</item>

</channel>
</rss>
