<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="es">
		<id>https://wiki.gacq.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Allensmith</id>
		<title>gacq wiki - Contribuciones del usuario [es]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.gacq.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Allensmith"/>
		<link rel="alternate" type="text/html" href="https://wiki.gacq.com/index.php/Especial:Contribuciones/Allensmith"/>
		<updated>2026-04-09T12:48:49Z</updated>
		<subtitle>Contribuciones del usuario</subtitle>
		<generator>MediaWiki 1.29.2</generator>

	<entry>
		<id>https://wiki.gacq.com/index.php?title=Ipw3945_driver_manual_installation_for_Debian_Etch&amp;diff=3036</id>
		<title>Ipw3945 driver manual installation for Debian Etch</title>
		<link rel="alternate" type="text/html" href="https://wiki.gacq.com/index.php?title=Ipw3945_driver_manual_installation_for_Debian_Etch&amp;diff=3036"/>
				<updated>2010-10-12T10:50:18Z</updated>
		
		<summary type="html">&lt;p&gt;Allensmith: /* Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=One step installation for Debian Lenny or newer=&lt;br /&gt;
;kernel 2.6.24 and older&lt;br /&gt;
 sudo aptitude install firmware-ipw3945 ipw3945d ipw3945-modules-`uname -r`&lt;br /&gt;
;kernel 2.6.25 and newer&lt;br /&gt;
 sudo aptitude install firmware-iwlwifi&lt;br /&gt;
&lt;br /&gt;
=Step by step installation for Debian Etch=&lt;br /&gt;
Only for Debian Etch (stable), if you are using Debian Lenny or newer you can use Debian Packages (see above)&lt;br /&gt;
&lt;br /&gt;
==Downloads==&lt;br /&gt;
'''driver''' from http://ipw3945.sourceforge.net/ for example&lt;br /&gt;
 wget http://ufpr.dl.sourceforge.net/sourceforge/ipw3945/ipw3945-1.1.0.tgz&lt;br /&gt;
&lt;br /&gt;
'''ieee80211 subsystem''' from http://ieee80211.sourceforge.net/ for example&lt;br /&gt;
 wget http://ufpr.dl.sourceforge.net/sourceforge/ieee80211/ieee80211-1.2.15.tgz&lt;br /&gt;
&lt;br /&gt;
'''firmware''' from http://bughost.org/ipw3945/ for example&lt;br /&gt;
 wget http://bughost.org/ipw3945/ucode/ipw3945-ucode-1.13.tgz&lt;br /&gt;
&lt;br /&gt;
'''regulatory daemon''' from http://bughost.org/ipw3945/ for example&lt;br /&gt;
 wget http://bughost.org/ipw3945/daemon/ipw3945d-1.7.22.tgz&lt;br /&gt;
&lt;br /&gt;
==Install kernel headers==&lt;br /&gt;
(Install these modules ONLY if you did not compile your own kernel)&lt;br /&gt;
 sudo aptitude install linux-headers-`uname -r`&lt;br /&gt;
 sudo aptitude install gcc-4.0&lt;br /&gt;
&lt;br /&gt;
==Compile and install modules==&lt;br /&gt;
(in the same directory run as root)&lt;br /&gt;
 tar -zxvf ieee80211-1.2.15.tgz&lt;br /&gt;
 cd ieee80211-1.2.15&lt;br /&gt;
 make&lt;br /&gt;
 make install&lt;br /&gt;
 cd ..&lt;br /&gt;
 tar -zxvf ipw3945-1.1.0.tgz&lt;br /&gt;
 cd ipw3945-1.1.0&lt;br /&gt;
 # if you have problems here with kernel 2.6.18 see notes&lt;br /&gt;
 make&lt;br /&gt;
 cd ..&lt;br /&gt;
 tar zxvf ipw3945-ucode-1.13.tgz&lt;br /&gt;
 mkdir /usr/local/lib/firmware/&lt;br /&gt;
 cp ipw3945-ucode-1.13/ipw3945.ucode /usr/local/lib/firmware/&lt;br /&gt;
 tar zxvf ipw3945d-1.7.22.tgz&lt;br /&gt;
 cp ipw3945d-1.7.22/x86/ipw3945d /sbin/ipw3945d-$(uname -r)&lt;br /&gt;
 cd ipw3945-1.1.0&lt;br /&gt;
 cp ipw3945.ko /lib/modules/$(uname -r)&lt;br /&gt;
 depmod -a&lt;br /&gt;
&lt;br /&gt;
==Init script==&lt;br /&gt;
create init script: /etc/init.d/ipw3945 &lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 &lt;br /&gt;
 case $1 in&lt;br /&gt;
 start)&lt;br /&gt;
  echo -n &amp;quot;Load ipw3945:&amp;quot;&lt;br /&gt;
    modprobe -i ipw3945&lt;br /&gt;
    /sbin/ipw3945d-$(uname -r) --timeout=30&lt;br /&gt;
    sleep 2&lt;br /&gt;
    echo &amp;quot; done.&amp;quot;&lt;br /&gt;
 ;;&lt;br /&gt;
 &lt;br /&gt;
 stop)&lt;br /&gt;
    echo -n &amp;quot;Unloading ipw3945:&amp;quot;&lt;br /&gt;
    /sbin/ipw3945d-$(uname -r) --kill&lt;br /&gt;
    modprobe -ir ipw3945&lt;br /&gt;
    sleep 2&lt;br /&gt;
    echo &amp;quot; done.&amp;quot;&lt;br /&gt;
 ;;&lt;br /&gt;
 esac&lt;br /&gt;
 &lt;br /&gt;
 exit 0&lt;br /&gt;
&lt;br /&gt;
 chmod 755 /etc/init.d/ipw3945&lt;br /&gt;
&lt;br /&gt;
==Enable start on boot==&lt;br /&gt;
 update-rc.d ipw3945 defaults 30&lt;br /&gt;
&lt;br /&gt;
==Interface configuration==&lt;br /&gt;
Change /etc/network/interfaces to:&lt;br /&gt;
 auto eth2&lt;br /&gt;
 iface eth2 inet dhcp&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
*If your are planning to use your wireless interface in monitor mode, for example to use kismet, uncomment &amp;quot;CONFIG_IPW3945_MONITOR=y&amp;quot; from the driver Makefile before running make.&lt;br /&gt;
*If you have error: &amp;quot;too few arguments to function ‘ieee80211_tx_frame’&amp;quot; problems compiling ipw3945-1.1.0 with 2.6.18 kernel. ipw does not properly recognize the version of ieee802.11 stuff in the kernel. A quick hack is to change &amp;quot;EXTRA_CFLAGS += -DIEEE80211_API_VERSION=$(IEEE80211_API)&amp;quot; to &amp;quot;EXTRA_CFLAGS += -DIEEE80211_API_VERSION=2&amp;quot; on line 96 of Makefile. (http://dotcommie.net/projects/XPS-M1210/)&lt;br /&gt;
&lt;br /&gt;
'''References'''&lt;br /&gt;
*http://eomer.mine.nu/?q=node/18&lt;br /&gt;
*http://alidhaey.blogspot.com/2006/08/instalar-debian-etch-en-un-dell.html&lt;br /&gt;
*http://math.umh.ac.be/an/D820/#Wireless&lt;br /&gt;
*[http://www.discount-lenses.com/halloween-contact-lenses.php Halloween Contacts Lenses]&lt;/div&gt;</summary>
		<author><name>Allensmith</name></author>	</entry>

	</feed>