cerrado

lunes, 15 de junio de 2009

Blog Cerrado

www.AyalaSoft.com

general

Debian Lenny Intel(R) Pro/Wireless

martes, 12 de mayo de 2009

Debian Lenny Intel(R) Pro/Wireless

After you install Debian using netInstall using wire interface you can install the firmware that support your wireless interface this is example script:

#!/bin/bash
# Debian Lenny Wireless script for Intel(R) Pro/Wireless 4954 or 3945
# Author: Albertux (Alberto Isaac Ayala Esquivias)
# Mail: <albertoi7@gmail.com>
# Web: http://Albertux.AyalaSoft.com
 
if [[ $EUID -ne 0 ]]; then 
  echo "You must be a root user" 2>&1
  exit 1
fi
 
for m in iwl4965 iwl3945
do
  model=$(echo `dmesg  | grep $m | awk ' { print $3 }' |  wc -l`)
  if [ $model -ne 0 ]; then
    model=$m
    break;
  fi
done
 
if [ "$model" != "$m" ]; then
  echo -e "\e[01;33mWARNING!"
  echo -e "\e[01;33mDoesn't have Intel(R) PRO/Wireless 4965 or 3945 Models\e[00m"
  exit;
else
  echo -e "\e[01;32mYou have Intel(R) PRO/Wireless $model\e[00m"
fi
 
firmware=$(echo `dpkg -l | grep firmware-iwlwifi | awk '{ print $1 }'`)
mod=$(echo `lsmod  | awk '{ print $1 }'  | grep $model`)
 
if [ "$firmware" != "ii" ]; then
  echo -e "Install firmware ..."
  apt-get install firmware-iwlwifi
fi
 
if [ "$model" != "$mod" ]; then
  echo -e "Install module ..."
  modprobe $model
fi
echo -e "\nname\t  description\n"
iwconfig
echo -n "Name of the interface with wireless extensions: "
read iface
 
ifconfig $iface up
clear
echo -e "Scanning Wireless ..."
iwlist $iface scanning 
 
echo -n "essid: "
read essid
 
echo -n "Need Key (y/n): "
if [ "$op" = "n" ]; then
  iwconfig $iface essid "$essid"
else
  echo -n "key: "
  read key
  iwconfig $iface essid "$essid" key "$key"
fi
 
echo -n "Static IP? (y/n): "
read op
 
if [ "$op" = "n" ]; then
  dhclient $iface
else
 echo -n "What ip you want: "
 read ip
 ifconfig $iface $ip
fi
 
echo -n "Gateway: "
read gw
 
route add default gw $gw $iface

network, unix/linux , ,

Kubuntu 9.04

martes, 28 de abril de 2009

Kubuntu 9.04

Whats new on Kubuntu Jacklope?

Some wireless problems check WEP and WAP

Need Flash plugin, JRE, support MP3, etc …
First check on /etc/apt/sources.list need universe and multiverse

sudo apt-get update
sudo apt-get install kubuntu-restricted-extras

Setup LAMP on Kubuntu 9.04 (Is the same on Ubuntu 9.04):

sudo apt-get -y install mysql-server apache2 libapache2-mod-php5 php5 php5-mysql

unix/linux ,

Flisol 2009

lunes, 27 de abril de 2009

FLISOL 2009

Me desperte tarde eran ya como las 10:00 am aproximadamente me apure y me fui al FLISOL llegando me encontre con el Ron y el Amed que son raza, también estaba Gabriel Saldaña, Basilio Briseño y Enrique Sanchez nos fuimos por unas tortas de la barra, cerca de la UR, luego entramos a las conferencias primero empezó Enrique Sanchez sobre pentesting, aparte de la platica nos mostró un shellcode para obtener root en Gnu/Linux usando un kernel 2.6.22 (sino me equivoco), después la de Mozilla México con Xbaez platico de toda la promoción que hacen para que se difunda mas el mejor navegador web (opinión personal mía), luego la de KDE la cual mostraron la versión 4.2 bastante buena diría yo (me agradaron los efectos sin necesidad de compiz y la shell en el dolphin en el footer), luego vino el turno de Fedora con Juan Rodriguez, en la clausura rifaron una mochila de Sun microsystems y gane.

http://www.flisolmty.org

community, personal

Ubuntu 9.04 Netbook Remix

viernes, 24 de abril de 2009