jueves, 30 de junio de 2011

Adaptador WIFI USB DELL 1450 Dual-band en Ubuntu 11.04




1.- Instalar ndiswrapper

sudo apt-get install ndiswrapper-common ndiswrapper-utils-1.9 ndisgtk ndiswrapper-dkms
2.- Deshabilitar el modulo bcm43xx:

echo 'blacklist bcm43xx' | sudo tee -a /etc/modprobe.d/blacklist

3.-Instalar controlador (windows) del adaptador:

ndiswrapper -i DELLNIC.inf

4.- Verificar si se instaló:

ndisswrapper -l

5.- Crear vínculo:

ndiswrapper -m

6.- Cargar módulo:

depmod -a
modprobe ndiswrapper

7.- Agregar el módulo ndiswrapper a /etc/modules


echo 'ndiswrapper' | sudo tee -a /etc/modules


Fuente: WikiDELL

martes, 28 de junio de 2011

Adaptador Intel PRO/Wireless 3945 en Debian Squeeze






1.- Agregar el repositorio non-free:

deb http://ftp.us.debian.org/debian squeeze main contrib non-free

2.- Actualizar e Instalar:

# aptitude update
# aptitude install firmware-iwlwifi wireless-tools

3.- Cargar los módulos:

#modprobe iwl3945
#modprobe iwlagn


Fuente: iwlwifi

martes, 14 de junio de 2011

LAMP en CentOS




1.- Instalando LAMP


-Mysql

yum install mysql mysql-server
chkconfig --levels 235 mysqld on
/etc/init.d/mysqld start
mysql_secure_installation

-Apache

yum install httpd
chkconfig --levels 235 httpd on
/etc/init.d/httpd start

-PHP

yum install php
/etc/init.d/httpd restart

-Librerías

yum install php-mysql php-common php-mbstring php-mcrypt php-devel php-xml php-gd



Fuentes: HowtoForge , thegeekstuff.