
This entry is about getting a Dell Inspiron 630m to run Slackware Linux 10.2. You can skip it if you neither have this laptop nor you are interested in installing Linux into it. It is not written in Spanish in order to bright up my English (sorry for the mistakes).
... some useful links:
I do not know everything about this computer. I've written this document, but that doesn't mean that I know how to solve every problem with every distro, I'll try to help, of course. The configuration tips I've written here worked for me, that doesn't mean that will work for you.
I've done this on my own risk, if you follow my steps, do it at your own risk. I will not responsible of what happens to your computer.
I was looking for a laptop:
This Dell laptop is 14.1'', weights circa 2.4Kg, and it is really quiet. I bought the 9-cell battery, and it's performance is great! Also, I'm carrying it almost every day, and there are no scratches in it's silver & white surface. The only bad thing I've found is that there is an air intake on the left bottom of the computer, so it is very easy to block it, increasing the temperature of the computer, nothing serious. I think I bought the ideal laptop for my needs.
Just because I like it and because it is the SO I've been using exclusively for more than 5 years.
Stuff working/not working:
| Component | Status |
|---|---|
| Intel® Pentium® M Processor 735A (1.70GHz, 2MB L2 Cache) | Works |
| 14.1" WXGA (1280x800) TFT | Works |
| Intel i915GM with GMA900 graphics | Works |
| 2 x 512MB SODIMM DDR2 in dual channel mode | Works |
| Samsung MP0603H 60GB 5400RPM | Works |
| Broadcom 10/100 ethernet | Works |
| Intel Pro Wireless 2200 802.11 b/g MiniPCI card with integrated dual-band (2.4/5.7GHz) antenna | Works |
| 80 WattHour 9-cell "smart" Li-Ion battery | Works |
| FireWire | Works |
| Synaptics touchpad | Works |
| Sigmatel STAC9750 HD audio codec / Intel ICH6 HD Audio | Works |
| ExpressCard slot | Don't Know |
| 5-in-1 card reader | Works |
| Conexant HDA D110 MDC V.92 Modem | Don't Know |
| Multimedia Keys | Works |
| ACPI | Works |
I've detailed some of the steps I needed to do.
Dell's laptop comes with three partitions on it's hard drive (you can get more info about those partitions here. I followed the instructions on the brochure that Dell included with the laptop, in order to have an installation CD (you don't know if yo have to cross to the Dark Side), then, I've deleted all of the partitions.
After that, the installation comes as usually.
I decided to recompile my kernel and not to use the ones packed with Slackware. Now I'm using 2.6.15.4 2.6.18, and almost everything runs smoothly (you can fetch my .config).
In order to use DRI acceleration for your i915GM, you need to install the latest snapshot of the drivers:
/etc/X11/xorg.conf, find the section of your graphics card and change the driver from vesa to i810.Get 915resolution from here, install it and then add /usr/local/bin/915resolution 38 1280 800 24 (change /usr/local/bin with your instalation path). Then add the resolution to the X.org config file.
The touchpad should work out of the box, but you can install this driver which has a lot of more capabilities. Follow the instructions on the INSTALL file.
If you close the lid and then you open it, the screen will not turn on again. You can solve this installing dmps and then add it to the ACPI actions to be executed when the lid is open. Create a file called /etc/acpi/events/video with the following:
event=video
action=/usr/local/sbin/dpms on
Now it should work.
Speakers/Headphones doesn't work properly. With ALSA compiled from the Kernel, the speakers aren't muted when you plug the headphones. If you disable the ALSA support from the kernel, get the drivers from The ALSA Project and compile it, you'll get sound from the headphones, but not from the speakers (which is good for me).
Harry Sheppard has a patch for the kernel sources, that makes speakers/headphones work properly. Go to his webpage and fetch it. The bad news are that the microphone doesn't work :(
With the drivers compiled as a module, just add the next line to your /etc/modules.conf:
options snd-hda-intel model=ref
Unfortunately I can't remember where did I found that (I think it was in an Ubuntu Forum).
You just need to install the Intel® 2200BG driver and it should work. Follow the instructions on the INSTALL file (basically, you'll need to install three packages: ieee80211, ipw2200 and ipw2200's firmware. It is well explained on the documentation).
You need to install wpa_supplicant to get wpa support. Fetch it from its website and install it.
In order to get the wpa_supplicant daemon up, you should create an script called rc.wpa_supplicant in /etc/rc.d/ like this:
#!/bin/sh
# Start/stop the wlan_supplicant daemon.
WPA_BIN=/usr/local/bin/wpa_supplicant
WPACLI_BIN=/usr/local/bin/wpa_cli
test -f $WPA_BIN || exit 0
#LSBNAMES='-l' # Uncomment for LSB name support in /etc/cron.d/
case "$1" in
start) echo "Starting wpa_supplicant..."
$WPA_BIN -w -D wext -ieth0 -c /etc/wpa_supplicant.conf -B
;;
stop) echo "Stopping wpa_supplicant..."
$WPACLI_BIN terminate
;;
restart)
$0 stop
$0 start
;;
*) echo "Usage: /etc/rc.d/rc.wpa_supplicant start|stop|restart"
exit 1
;;
esac
exit 0
Then you can add it to rc.inet1 in order to get it up. Add /etc/rc.d/rc.wpa_supplicant start and /etc/rc.d/rc.wpa_supplicant stop to the start() and stop() functions on that file.
You can install (with ./configure --with-initdir=/etc/rc.d; make; make install) this script, which auto-configures the network interfaces when a link beat is detected (i.e.: if you plug or unplug the lan cable). You'll need to edit your /usr/local/etc/ifplug.action because it uses some scripts not present on Slackware. Here is mine:
set -e
if [ -z "$1" ] || [ -z "$2" ] ; then
echo "Wrong arguments" > /dev/stderr
exit 1
fi
if [ "$1" = "eth0" ] && [ "$2" = "up" ] ; then
# Buy wpa_supplicant some time to authenticate before bringing the
# interface back up... but we don't wait forever:
# You can increase this value if your card takes longer to associate:
WPAWAIT=20
wi=0
while [ $wi -lt $WPAWAIT ]; do
if (grep -q "^ctrl_interface=" ${WPACONF}); then
if (LC_ALL=C ${SUPPATH}/wpa_cli -i$INTERFACE status|grep -q "^wpa_state=COMPLETED"); then
break
fi
else
if (LC_ALL=C ${IWCOMMAND}|grep -Eq "Encryption key:....-"); then break; fi
fi
wi=$(($wi+1)); sleep 1
done
exec /sbin/dhcpcd -d -t 40 eth0
fi
[ "$1" = "eth1" ] && [ "$2" = "up" ] && exec /etc/rc.d/rc.inet1 "$1"_up
[ "$2" = "down" ] && exec /etc/rc.d/rc.inet1 "$1"_down
exit 1
Then you need to rename /etc/rc.d/ifplugd into /etc/rc.d/rc.ifplugd and add a line containing /etc/rc.d/rc.ifplugd start to any rc file so it is loaded (for example to rc.local).
Please note that if you use ifplugd, you should comment out the following lines from /etc/rc.d/rc.inet1:
# if [ -x /etc/rc.d/rc.wireless ]; then
# . /etc/rc.d/rc.wireless ${1} start # Initialize any wireless parameters
# fi
As Slackware doesn't ship with Gnome, I've installed it using Freerock Gnome.
If you are using Gnome, here are some applets I use:
That's all for now (13th Nov 2006). Hope it helps.
Fácil es. Otra cosa es que Slackware sea facil de poner ;)
Ubuntu se instala del tirón en este portátil: un ejemplo.
Tienes los mismos problemas que yo con el mio, un toshiba. Solo he probado a poner Gentoo, y cosas como la aceleración 3d, lector de tarjetas, WIFI + ACPI ala vez, hotkeys (a medias), y alguna cosa más... no van. Al menos cuando lo pillé, el verano pasado.
Muchas gracias por el comentario en la otra página. He puesto FC4 y bueno, de tu página he sacado algo muy interesante lo de DPMS. EL DRI me sigue sin funcionar. Me da un error bastante raro... de LibGL que espera una versión inferior de i915 que el que existe... es el driver i915 el que falla puesto que si vuelvo a poner el anterior todo sigue bien. Seguiré intentándolo. De todas maneras no juego con el portatil ni veo peliculas ni nada que requiera gran calidad de video.
Me preocupa más lo de los auriculares. Espero q en posteriores versiones de alsa lo arreglen.
por lo demás... el portatil es excelente...
De nada, pensé que podría serte de ayuda :)
A mi el soporte para DRI tampoco es que me preocupase demasiado, la verdad.
El detalle de los altavoces, instalando el driver de ALSA aparte del kernel consigues que suenen solo los auriculares, lo que es un buen arreglo por el momento. Supongo que en futuras versiones de ALSA lo arreglen.
¿En FC funcionan el resto de cosas (sobre todo las que tengo puestas como "Don't Know"?
Pues la verdad es que coincidimos en todas las que tienes como don't know y almost. El único tema que tengo pendiente como te digo es lo de ALSA y en las multimedia keys.... por qué tienes puesto Almost? a mi las teclas delanteras de play, stop, etc... me funcionan de lujo.
Si no tienes creado nada sobre las multimedia keys avisame y te posteo como lok tengo configurado yo.
La única que me gustaria hacer funcionar, (por darle alguna funcion eh?) es la de Media Direct. Aun no he formateado la particion de 3,5 GB que viene al final del disco, ási que ya vere si meto algo ahi o si se puede enlazar el media direct con esa particion para hacer algo ahi.
Las teclas de funcion (Fn), aparte de la de apagar y encender el wifi, no me funciona ninguna con FC4, y los leds de wifi y bluetooth en linux no se encienden, en windows sí.
alguna otra idea con esto?
¿Para cuando un post gastronómico en francés?
Si no te ves capaz, pídele ayuda a tu primo, que en 15 días ya lo habla que da gusto...
The Lingerie Store,The lingerie and nightwear SALE at Style Lingerie. All lingerie sale garments marked 30% to 70% off.
Sexy lingerie, ladies underwear and designer nightwear
Lingerie, sleepwear and intimate apparel is our specialty, ranging from sexy lingerie to bridal lingerie,
including corset, bras, thongs and stockings.
canon thermos travel mug,canon lens 24-105 mug,canon lens 70-200 mug
Canno Lens Coffee Mug, Ceramic Mugs,Nikon Lens mugs,canon thermos travel.Best Discount Mugs provider.
Dios,dejad las drogas!!os están destrozando!! :-P
Excellent! I just bought this Laptop for my wife to use for school - and wanted to be sure it had good linux support. From this site, and this one http://lokorn.neuf.fr/ - I knew it would! Now I want to buy another for myself. Thanks for the page with all of the excellent details! It's so cool when a product is able to do so much under an 'unsupported' OS.
Hola
Acabo de poner un post en mi blog sobre este modelo en ubuntu breezy. También funciona el lector de tarjetas SD/MMC (aunque hay que parchear un kernel reciente con el driver SHDCI).
También he probado ahora mismo la salida a la TV y funciona bastante bien (aun tengo que actualizar esto en mi blog, a ver si lo hago mañana).
Por último, creo que también funciona el winmodem (que es un conexant) con los drivers de linuxant (www.linuxant.com). No lo voy a probar porque no lo uso y además los drivers son de pago (HFS modems me parece que es la sección).
http://www.doszero.com/blogs/blog/diego/linux/2006/02/16/630m
Un saludo.
Diego
A question. The booting time is so long? It takes like an 3 minutes to boot on my machine. Some tip to fix this..........
Hello Alvaro, can you adjust the LCD bright using Fn+up and Fn+down on Linux? If not, can you adjust bright at all?
Hello Alvaro, can you adjust the LCD bright using Fn+up and Fn+down on Linux? If not, can you adjust bright at all?
Santiago,
With FC4 I am able to adjust LCD bright with Fn+up and Fn+Down.
What distro do you use with this laptop?
Hola,
Estos drivers de video sirven para Integrated Intel Graphics Media Accelerator 900, for Inspiron 630M/ XPS M140???
normalmente, si.
Installa la ultima version de Xorg (7.0, o la 6.9 si prefieres (es la misma sino que el modo de installacion cambia)
esta version contiene los drivers para los chips Intel Graphics Media.
Tengo un 630m, y functiona "out of the box" (solo hay que camibar la résolucion con 915resolution)
Alvaro, tienes algo sobre las claves multimedia ?
y que tal con los drivers sata ?
la pagina sobre gentoo habla de estos, y duce que es mejor utilisar los, que te parece ?
Last thing, when i launch an X, an i close it, the console appears in 1280x800, but as a mozaic of 1024x768, wich is rather ugly, do you have an idea for this ?
(sorry for this last sentence in english, i realise my spanish is too poor to clearly explain the problem)
thanks for your help anyway, especially on the sound an X resolution
Buenas,
Aquí uno que está sudando para salir del lado oscuro :)
Soy un usuario avanzado de Win y como soy fan (y modesto contribuyente) de Software libre, me quiero cambiar definitivamente.
Había elegido Ubuntu, pero el problema del micrófono me mata, parece que nadie consigue hacerlo funcionar. Aún así, y como por ahora voy a mantener al partición de Win, puedo instalar ahí Skype y esperar a que arreglen lo del micro.
Aún así estoy mirando otras distros (openSUSE, Fedora), pero parece que nadie garantiza nada en tema de compatibilidad.
Gracias por los ánimos después de un día de trillones de posts de los que no comprendo la mitad :S
> Mic sound
sudo gedit /etc/modprobe.d/options
add this line :
options snd-hda-intel model=ref
Don't you recognize that this is correct time to receive the www.lowest-rate-loans.com, which would realize your dreams.
I opine that you really know how hard can the essays writing be. But, you should not be embarrassed, simply because the term paper writing services present the creative writing essay and there?s not a problem to buy essay paper and be totally satisfied.
If you need to get an admittance in a school, college or a university or command any help in any kind of chore, so don?t get tensed. Get ideas about your creation by using research paper writing. I don?t consider that there is anything depraved in using writing services.
The section of your work supposes to be amazing. Persons, which order the written essays at order custom essay service have to read through your interesting note. With this usefull information it would be easier to have a success.
fantastic item on how to care for college research paper hobby setup. I didn't know you could do this but you be acquainted something new everyday.
Some distinguished people can look through your story just about this good post and just order the the dissertation from the thesis writing service.
Different of term paper writing services do the custom papers about this good post. Thus, it?s really good chance to buy custom essay papers and written essay just about this good topic.
Shop prom dresses, formal dresses, prom shoes, 2010 designer prom gowns at PromGirl. Find homecoming,
cocktail dresses, graduation dresses,plus-size formal
on best wedding dresses for 2009 and 2010. You can find latest collection of woman's dresses and casual dresses on this site
Estás respondiendo al Post de Álvaro, escrito el Martes, 14 de febrero de 2006 - 18:22.
Si no es a quien deseas contestar, tal vez debas buscar el enlace correspondiente debajo del comentario al que quieres responder. Si quieres responder al post, deberías hacer click en este enlace.
El email no se mostará y no se utilizará para enviar correo electrónico no deseado.