jueves, 11 de octubre de 2012

nano /boot/grub/grub.cfg: en el modulo os-prober: menuentry "Microsoft Windows 7" { set root=(hd1,1) chainloader +1 }
nano /boot/grub/grub.cfg: en el modulo os-prober: menuentry "Microsoft Windows 7" { set root=(hd1,1) chainloader +1 }
nano /boot/grub/grub.cfg: en el modulo os-prober: menuentry "Microsoft Windows 7" { set root=(hd1,1) chainloader +1 }

sábado, 17 de diciembre de 2011

Instalacion RTL8191SE

http://wiki.debian.org/rtl819x
http://forum.novatech.co.uk/showthread.php?15068-HOWTO-Xplora-E16-Ubuntu-9-04-32Bit-and-64Bit-with-wired-and-wireless-networking


http://www.taringa.net/comunidades/gnudeb/1911239/[Tutorial]-Driver-para-Realtek-RTL8191SE-en-Debian-Squeeze.html
### apt-get install linux-headers-$(uname -r)

Compilador & Modulos automatizados

apt-get install build-essential
apt-get install module-assistant

sábado, 3 de diciembre de 2011

[Debian] Instalar paquetes desde consola

Para instalar paquetes .deb desde la consola debemos colocar.

1. Paquetes .deb:
Podemos utilizar la terminal como super usuario o agregar "sudo" adelante de cada linea de comando
Para instalar: dpkg -i nombredelpaquete.deb
Para desinstalar: dpkg -r nombredelpaquete.deb

2. Paquetes .tar.gz

> para los tar.gz
> el comando tar -zxvf filename
> para los ta.bz2
> el comando tar -jxvf filename

./configure (configurar codigo de fuente)
make (compilar)
make install (instalar archivo compilado)



How do I install GNU/GCC compiler tools collection under Debian Linux system using command line options?

You need to install package called build-essential package.

This package contains an informational list of packages which are considered essential for building Debian packages including gcc compiler, make and other required tools. This package also depends on the packages on that list, to make it easy to have the build-essential packages installed.

Simply type the following command as root user:
# apt-get update && apt-get upgrade
# apt-get install build-essential
# gcc -v
# make -v

Now, you should able to compile software, create Debian packages or simply write a code using C / C++ compilers.