Archivo de la categoría: Nix

mounting solaris

Mounting the new filesystem Following the letter of the law now you should fsck your new filesystem prior to mounting it – feel free. What you really want to do however is mount it so that you check it out. You can actually mount a filesystem on ANY directory, though it ought to be an… Leer más »

solaris add a second disk

Derrick Harcey’s Weblog Harcey’s Identity The OpenSPARC Community Accelerates Creating new opportunities into new markets. » Visit OpenSPARC.net <a href=’http://ads.sun.com/ads/adclick.php?n=ad99629f’ target=’_blank’><img src=’http://ads.sun.com/ads/adview.php?what=zone:44&amp;n=ad99629f’ border=’0′ alt=»></a> Archives « July 2008 Sun Mon Tue Wed Thu Fri Sat 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21… Leer más »

how to create an ISO file LINUX

Go to a terminal screen. You can usually right click on the desktop and choose this option from the drop-down menu. Type «dd if=/dev/cdrom of=/cdrom_image.iso»

nmap open ports linux

There are two good methods to see what ports are open in Linux you can use nmap which is a port scanner and you can use netstat. nmap can be used to scan your machine to see whats ports are open issue the following command to scan your computers machine: CODE nmap -sS -O 127.0.0.1… Leer más »

CLAMAV

ClamAV ClamAV es un conjunto de herramientas antivirus para UNIX con licencia GPL (software libre). Clamscan Adicionalmente el programa clamscan, desde la línea de comandos puede detectar virus en nuestros archivos. Te conectas a Espora.org vía SecureShell ~$ ssh [email protected] o bien usa PuTTY. Ejectuas clamscan Verifica en que directorio estás usuaria@maquina:~$ pwd /home/mi_usuaria Detecta… Leer más »

clam antivirus

Examples (0) Scan a single file: clamscan file (1) Scan a current working directory: clamscan (2) Scan all files (and subdirectories) in /home: clamscan -r /home (3) Load database from a file and limit disk usage to 50 MB: clamscan -d /tmp/newclamdb –max-space=50m -r /tmp (4) Scan a data stream: cat testfile | clamscan –… Leer más »

Sacando contraseñas de WLAN_XX con WifiSLAX en MacBook

Hoy voy a aprovechar para comenzar un tutorial para sacar claves WLAN_XX con WifiSLAX 3 utilizando un MacBook de un colega. A la noche haremos un wardriving por su barrio y sacaré fotos del proceso con las que actualizaré este post. Atención este tutorial es sólo para MacBooks. Lo primero que tenemos que hacer es… Leer más »

Static Routes in Redhat 9 – New isn’t always better

Overview With the introduction of Redhat version 8 and continued into version 9, the /etc/sysconfig/static-routes file no longer seems to function correctly. Linux static routes changed in 8.0 to a new format. Now you are to create a file in /etc/sysconfig/network-scripts for each Ethernet interface you wish to create static routes on. Example: touch /etc/sysconfig/network-scripts/route-eth0… Leer más »

screen ;)

Nothing new to add, but did want to emphasize that if a text-only terminal is all you need, ‘screen’ is the way to go. It is one of the lesser known unix goodies, and a true «wonder tool»: a tool you cannot live without once you use it. The quick primer: First time: ssh mymachine… Leer más »

Categoría: Nix

Xterm Color on Solaris

You maybe know that xterm-color (the bare default xterm with color) does not exists on Solaris. Damn !! my vim color is ugly, but there is a solution: export TERM=xtermc, it also exists on Mac and Linux so you can change your term to announce this terminal. Don’t forget the :syntax enable in your .vimrc God bless… Leer más »