Archivo de la categoría: Nix

Solaris PRTDIAG

prtdiag $prtdiag System Configuration: Sun Microsystems sun4v Sun Blade T6300 Server Module Memory size: 8064 Megabytes ================================ Virtual CPUs ================================ CPU ID Frequency Implementation Status —— ——— ———————- ——- 0 1000 MHz SUNW,UltraSPARC-T1 on-line 1 1000 MHz SUNW,UltraSPARC-T1 on-line 2 1000 MHz SUNW,UltraSPARC-T1 on-line 3 1000 MHz SUNW,UltraSPARC-T1 on-line 4 1000 MHz SUNW,UltraSPARC-T1 on-line 5… Leer más »

two nic’s one default gateway

Open /etc/sysconfig/network and append GATEWAY=eth0.gateway.IP.address Open /etc/sysconfig/network-scripts/route-eth1 and add routing for eth1 and restart it. For example: 202.54.1.2/29 via 202.54.2.254 Also, set static route for /etc/sysconfig/network-scripts/route-eth0: 10.1.2.3/8 via 10.10.38.95 Do not add gateway entries to /etc/sysconfig/network-scripts/ifcfg-eth1 and /etc/sysconfig/network-scripts/ifcfg-eth0

ubuntu mount nfs

Ubuntu Linux: NFS Client Configuration To Mount NFS Share $ sudo apt-get update $ sudo apt-get install nfs-common http://www.cyberciti.biz/tips/ubuntu-linux-nfs-client-configuration-to-mount-nfs-share.html

tar tape

]$tar xpf /dev/rmt/0n backups/sissy04_11_10/ssy_salud_04_11_10_0200.sql

Categoría: Nix

instalar webmin ubuntu

Actualizamos la información de los repositorios (fundamental antes de instalar cualquier aplicación): sudo aptitude update Instalamos una serie de paquetes que nos hacen falta para la instalación de Webmin y para que se configure con SSL: sudo aptitude install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl apt-show-versions Nos aseguramos de estar en nuestro home: cd Descargamos… Leer más »

StartSSL – The Swiss Army Knife of Digital Certificates & PKI

StartSSL™ is the trade mark of the StartCom Certification Authority – a leader of the digital certification industry. We provide you with everything from free low-assurance SSL certificates up to the most advanced PKI and security solutions for your business and personal use. http://www.startssl.com/

Sort by Size with du

De menor a mayor du -ks * | sort -nr | cut -f2 | xargs -d ‘\n’ du -sh De mayor a menor du -ks * | sort -nr | cut -f2 | xargs -d ‘\n’ du -sh Optimized Code 1 du run du –max-depth=0 -k * | sort -n | awk ‘{ if($1>=1024*1024) {size=$1/1024/1024;… Leer más »