Unix Technical Forum

madwifi

This is a discussion on madwifi within the Slackware Linux Support forums, part of the Unix Operating Systems category; --> Where I can download madwifi for Slackware 10.2? Kernel 2.6.15 Thanks -- MojPortal http://www.mojportal.com.hr/...


Go Back   Unix Technical Forum > Unix Operating Systems > Slackware Linux Support

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-20-2008, 01:50 PM
druid
 
Posts: n/a
Default madwifi


Where I can download madwifi for Slackware 10.2?
Kernel 2.6.15

Thanks

--
MojPortal
http://www.mojportal.com.hr/

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 02-20-2008, 01:50 PM
Douglas Mayne
 
Posts: n/a
Default Re: madwifi

On Wed, 04 Jan 2006 16:33:47 +0100, druid wrote:

>
> Where I can download madwifi for Slackware 10.2?
> Kernel 2.6.15
>
> Thanks

Source code is available as CVS or daily snapshot.
Older:
http://snapshots.madwifi.org/madwifi-old-current.tar.gz

Next Generation:
http://snapshots.madwifi.org/madwifi-ng-current.tar.gz

IIRC, I was able to compile this using the familiar drill:
../configure --prefix=/usr
make
make install

--
Douglas Mayne
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 02-20-2008, 01:50 PM
PJ Beers
 
Posts: n/a
Default Re: madwifi

druid wrote:
> Where I can download madwifi for Slackware 10.2?
> Kernel 2.6.15


There are slack.Builds by Eric Hameleers at:

http://www.slackware.com/~alien/slackbuilds/madwifi/

If you want you can use the buildscript for the madwifi-ng code-base,
just change the packagename in the script and the slack-desc and all
should be well (IIRC; I did this on Tuesday).

PJ
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 02-20-2008, 01:50 PM
druid
 
Posts: n/a
Default Re: madwifi

Douglas Mayne je napisao:

> On Wed, 04 Jan 2006 16:33:47 +0100, druid wrote:
>
>>
>> Where I can download madwifi for Slackware 10.2?
>> Kernel 2.6.15
>>
>> Thanks

> Source code is available as CVS or daily snapshot.
> Older:
> http://snapshots.madwifi.org/madwifi-old-current.tar.gz
>
> Next Generation:
> http://snapshots.madwifi.org/madwifi-ng-current.tar.gz
>
> IIRC, I was able to compile this using the familiar drill:
> ./configure --prefix=/usr
> make
> make install
>


root@phoenix:~/madwifi/madwifi-old-r1208-20051209# iwconfig
lo no wireless extensions.

eth0 no wireless extensions.

sit0 no wireless extensions.

wifi0 no wireless extensions.




--
MojPortal
http://www.mojportal.com.hr/

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 02-20-2008, 01:50 PM
druid
 
Posts: n/a
Default Re: madwifi

druid je napisao:

> root@phoenix:~/madwifi/madwifi-old-r1208-20051209# iwconfig
> lo no wireless extensions.
>
> eth0 no wireless extensions.
>
> sit0 no wireless extensions.
>
> wifi0 no wireless extensions.
>
>
>
>


resolve

--
MojPortal
http://www.mojportal.com.hr/

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 02-20-2008, 01:50 PM
Eric Hameleers
 
Posts: n/a
Default Re: madwifi

PJ Beers wrote:

> druid wrote:
>
>> Where I can download madwifi for Slackware 10.2?
>> Kernel 2.6.15

>
>
> There are slack.Builds by Eric Hameleers at:
>
> http://www.slackware.com/~alien/slackbuilds/madwifi/
>
> If you want you can use the buildscript for the madwifi-ng code-base,
> just change the packagename in the script and the slack-desc and all
> should be well (IIRC; I did this on Tuesday).
>
> PJ


I am lazy (read: busy)... I have not built a new package for a long
time... I will do my best for madwifi-ng soon.

Eric
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 02-20-2008, 01:51 PM
William Park
 
Posts: n/a
Default Re: madwifi

druid <rbilic@gmail.com> wrote:
>
> Where I can download madwifi for Slackware 10.2?
> Kernel 2.6.15


Try
http://madwifi.org/

I simply did
make
make install
or if you want to make package,
make
make install DESTDIR=/tmp/wireless
cd /tmp/wireless
... do your stuff ...
makepkg name-version-i486-1.tgz
installpkg name-version-i486-1.tgz

../install/doinst.sh is nothing more than 'depmod', which I copied from
other packages, ie. :-)

# A good idea whenever kernel modules are added or changed:
if [ -x sbin/depmod ]; then
chroot . /sbin/depmod -a 1> /dev/null 2> /dev/null
fi

../install/slack-desc (for my setup) is as follows:

wireless-2.6.14: Wireless drivers for 2.6.14 kernels:
wireless-2.6.14: Ralink 2400 (PCI), 2500 (PCI), 2570 (USB), 2561 (PCI)
wireless-2.6.14: ZyDAS 1211 (USB)
wireless-2.6.14: Atheros 521[0123] aka. MadWiFi (PCI)

--
William Park <opengeometry@yahoo.ca>, Toronto, Canada
ThinFlash: Linux thin-client on USB key (flash) drive
http://home.eol.ca/~parkw/thinflash.html
BashDiff: Super Bash shell
http://freshmeat.net/projects/bashdiff/
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 02-20-2008, 01:51 PM
PJ Beers
 
Posts: n/a
Default Re: madwifi

Eric Hameleers wrote:
>
> I am lazy (read: busy)... I have not built a new package for a long
> time... I will do my best for madwifi-ng soon.


The slack.build itself hardly needed any change (packagename and
version, and the new location of the source-code). The real difference
was the configuration. With the old code, everything more or less
immediately worked after installing the madwifi-package and adding ath0
to rc.inet1.conf. With the new code, I had to add some info to
/etc/hotplug/net.agent and add /etc/rc.d/rc.madwifi-ng, as per the
instructions at

http://madwifi.org/wiki/UserDocs/Distro/Slackware

And then it took me some more time to figure out that I had to add the
following to modprobe.conf

install wifi0 /sbin/modprobe ath_pci
remove wifi0 /sbin/modprobe -r ath_pci ; /sbin/modprobe -r wlan_wep;
/sbin/modprobe -r wlan_scan_sta

However, I now got the thing up and working. Anyway, hope this helps a
little with making new packages, and thanks very much for the effort
already expended!

PJ
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 08:38 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
www.UnixAdminTalk.com