Archivo por meses: julio 2006

Wine Flash Player 8.5 Linux (Ubuntu Dapper Drake)

1.install wine sudo apt-get install wine 2. install msttcorefonts (optional) sudo apt-get install msttcorefonts 3. Download firefox version for windows (yes you heard it well – Thank you macromedia) wget http://ftp-mozilla.netscape.com/pub/mozilla.org/firefox/releases/1.5.0.3/win32/en-US/Firefox%20Setup%201.5.0.3.exe run the setup wine Firefox\ Setup\ 1.5.0.3.exe 4.Download the macromedia flash 8.5 setup wget http://fpdownload.macromedia.com/get/flashplayer/current/fp8-5_beta/install_flash_player_8-5_beta.exe Start the setup with wine wine install_flash_player_8-5_beta.exe point the… Leer más »

Introduccion a linux Sistema de Archivos

Linux File System Siguiendo las normas del Filesystem Hierarchy Standard el sistema de archivos de linux es: Directorios por default en red hat Bin : Incluye archivos básicos, incluyen utilidades de sistema y son accesibles a todos los usuarios. Para saber donde estan los archivos se utiliza el comando which Ejemplo: [carlosap@zivo etc]$ which lsalias… Leer más »

Php mbstring

Phpmyadmin se quejo de un error con mbstring No se halló la extensión PHP mbstring y al parecer usted está usando tipografía multibyte. phpMyAdmin no puede cortar correctamente las cadenas de caracteres sin la extensión mbstring y podría dar resultados inesperados. Para instalarla : #yum install php-mbstring

Instalar vmmouse para que no este atrapado en ubuntu o fedora con xorg

El problema de tener 2 monitores con vmware es que el mouse se queda trabado y hay que presionar CTRL ALT para destrabarlo. Esto se soluciona de la siguiente manera: Primero copiar manualmente cp /usr/lib/vmware-tools/configurator/XOrg/6.8.x/vmmouse_drv.o /usr/lib/xorg/modules/input/ Despues hay que editar /etc/X11/xorg.conf y buscar algo parecido: Section «InputDevice» Identifier «Mouse0» Driver «vmmouse» Option «Protocol» «ps/2» Option… Leer más »

Recover Boot Password

Reset Root Password – Step 1 To solve the «lost root password» problem is to boot your computer from your Linux Installation CD, or from a live-CD such as Knoppix. Using Knoppix, boot the live-CD then go to a terminal and su to root (no password is required) then issue the following commands (be sure… Leer más »

Windows y Ubuntu

La primera vez intente instalar ubuntu con partición automática en una laptop IBM R40. Y murió mi windows. Según leí en varios tutoriales que al particionar automáticamente no se respeta la geometría del disco. Y por métodos complicados se puede recuperar. Así que opte por la opción fácil usando Partition Magic 8.0 y particionando manual quedo… Leer más »

El mejor editor VI

Editor Vi en acción Hablando de VI para buscar y reemplazar es con este comando :%s/search_string/replacement_string/g

How to mount Windows partitions (NTFS) on boot-up, and allow all users to read only

Read #General Notes Read #How to list partition tables e.g. Assumed that /dev/hda1 is the location of Windows partition (NTFS) Local mount folder: /media/windows sudo mkdir /media/windows sudo cp /etc/fstab /etc/fstab_backup sudo gedit /etc/fstab Append the following line at the end of file /dev/hda1 /media/windows ntfs nls=utf8,umask=0222 0 0 Save the edited file Read #How… Leer más »

How To Know Which Linux Distribution You Are Using?

Here are a few ways to find out which linux distro you are using : From the Boot Time messages Fire up your favourite terminal program and type in the following dmesg | head -1 The output would be similar to Linux version 2.6.13-15-default (geeko@buildhost) (gcc version 4.0.2 20050901 (prerelease) (SUSE Linux)) #1 Tue Sep… Leer más »