Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Unsupported Software
  • Search

Official thread: "zen-sources" - Part II

This forum covers all Gentoo-related software not officially supported by Gentoo. Ebuilds/software posted here might harm the health and stability of your system(s), and are not supported by Gentoo developers. Bugs/errors caused by ebuilds from overlays.gentoo.org are covered by this forum, too.
Locked
Advanced search
632 posts
  • Page 20 of 26
    • Jump to page:
  • Previous
  • 1
  • …
  • 18
  • 19
  • 20
  • 21
  • 22
  • …
  • 26
  • Next
Author
Message
gimpel
Advocate
Advocate
User avatar
Posts: 2720
Joined: Fri Oct 15, 2004 10:08 am
Location: Munich, Bavaria
Contact:
Contact gimpel
Website

Post by gimpel » Fri Feb 08, 2008 8:47 pm

I'd try with portage first before posting to b.g.o.

1.5.4 works fine here.
http://proaudio.tuxfamily.org/wiki - pro-audio software overlay
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

Post by kernelOfTruth » Fri Feb 08, 2008 9:22 pm

hirakendu wrote:use 1.5.4 ...
++
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

Post by kernelOfTruth » Fri Feb 08, 2008 9:35 pm

I know a lot of you zen-sources users love speed (and of course data safety) [the same goes for me], so could you please give my
tips / short guide a try

http://forums.gentoo.org/viewtopic-p-48 ... ml#4835183

and tell if it improves your battery runtime / data throughput ?

TIA 8)
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
HecHacker1
Apprentice
Apprentice
User avatar
Posts: 213
Joined: Thu Jun 26, 2003 5:39 am
Location: UCSD
Contact:
Contact HecHacker1
Website

Re: rtap interface (Solved)

Post by HecHacker1 » Sun Feb 10, 2008 7:44 am

loeb-it wrote:When trying to bring up the rtap interface it does not work:

galadriel mithrandir # ifconfig rtap0 up
SIOCSIFFLAGS: Das Argument ist ungültig

This occurs with ipwraw driver and also with ipw3945 driver, so it seems to be a more general issue.

It also worked with kamikaze-sources before.

Anyone else tried?

Addon:
------------------------------------------------------
In 2.6.24 kernels an interface can only be brought up with a mac address set. Created patches to fix this for ipw3945 and ipwraw drivers.

ipw3945-2.6.24-rtap_up.patch:

Code: Select all

*** linux_bak/drivers/net/wireless/ipw3945.c    2008-02-06 19:20:41.000000000 +0100
--- linux/drivers/net/wireless/ipw3945.c        2008-02-07 00:43:10.000000000 +0100
***************
*** 15131,15134 ****
--- 15131,15142 ----
        priv->config |= CFG_CUSTOM_MAC;
        memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
+ 
+       // hack to get rtap device up, since in 2.6.24 kernels the mac of an iface must be set
+       // setting to mac of the wifi interface
+       
+       if (rtap_iface) memcpy(priv->prom_net_dev->dev_addr, addr->sa_data, ETH_ALEN);  
+ 
+       // hack end
+ 
        printk(KERN_INFO "%s: Setting MAC to %s\n",
               priv->net_dev->name, print_mac(mac, priv->mac_addr));
***************
*** 16284,16287 ****
--- 16292,16305 ----
        priv->prom_priv->ieee->iw_mode = IW_MODE_MONITOR;
  
+       // ToDo: find real mac here
+ 
+       // Hack to get rtap device up, since in 2.6.24 kernels the mac of an iface must be set
+       // Setting to a dummy mac since I don't know where to get the real one.
+       // Since no packets are being sent to this interface, this is not really important.
+       
+       strcpy(priv->prom_net_dev->dev_addr,"0018DE95031A");  
+ 
+       // hack end
+ 
        rc = register_netdev(priv->prom_net_dev);
        if (rc) {

ipwraw-2.6.24-rtap_up.patch:

Code: Select all

*** linux_bak/drivers/net/wireless/ipwraw.c     2008-02-06 23:41:16.000000000 +0100
--- linux/drivers/net/wireless/ipwraw.c 2008-02-07 00:43:06.000000000 +0100
***************
*** 7613,7616 ****
--- 7613,7624 ----
        priv->config |= CFG_CUSTOM_MAC;
        memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
+ 
+       // hack to get rtap device up, since in 2.6.24 kernels the mac of an iface must be set
+       // setting to mac of the wifi interface
+       
+       if (param_rtap_iface) memcpy(priv->prom_net_dev->dev_addr, addr->sa_data, ETH_ALEN);  
+ 
+       // hack end
+ 
        printk(KERN_INFO "%s: Setting MAC to %s\n",
               priv->net_dev->name, print_mac(mac, priv->mac_addr));
***************
*** 8343,8346 ****
--- 8351,8364 ----
        priv->prom_net_dev->hard_start_xmit = ipw_prom_hard_start_xmit;
  
+       // ToDo: find real mac here
+ 
+       // Hack to get rtap device up, since in 2.6.24 kernels the mac of an iface must be set
+       // Setting to a dummy mac since I don't know where to get the real one.
+       // Since no packets are being sent to this interface, this is not really important.
+       
+       strcpy(priv->prom_net_dev->dev_addr,"0018DE95031A"); 
+ 
+       // hack end
+ 
        rc = register_netdev(priv->prom_net_dev);
        if (rc) {
I have this same problem, but for ipw2200. Is there a way to set the ethernet address to allow rtap0 to work?
Top
loeb-it
n00b
n00b
Posts: 37
Joined: Tue May 15, 2007 10:19 pm

Re: rtap interface (Solved)

Post by loeb-it » Sun Feb 10, 2008 11:06 am

HecHacker1 wrote:
loeb-it wrote:When trying to bring up the rtap interface it does not work:

galadriel mithrandir # ifconfig rtap0 up
SIOCSIFFLAGS: Das Argument ist ungültig

This occurs with ipwraw driver and also with ipw3945 driver, so it seems to be a more general issue.

It also worked with kamikaze-sources before.

Anyone else tried?

Addon:
------------------------------------------------------
In 2.6.24 kernels an interface can only be brought up with a mac address set. Created patches to fix this for ipw3945 and ipwraw drivers.

ipw3945-2.6.24-rtap_up.patch:

Code: Select all

*** linux_bak/drivers/net/wireless/ipw3945.c    2008-02-06 19:20:41.000000000 +0100
--- linux/drivers/net/wireless/ipw3945.c        2008-02-07 00:43:10.000000000 +0100
***************
*** 15131,15134 ****
--- 15131,15142 ----
        priv->config |= CFG_CUSTOM_MAC;
        memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
+ 
+       // hack to get rtap device up, since in 2.6.24 kernels the mac of an iface must be set
+       // setting to mac of the wifi interface
+       
+       if (rtap_iface) memcpy(priv->prom_net_dev->dev_addr, addr->sa_data, ETH_ALEN);  
+ 
+       // hack end
+ 
        printk(KERN_INFO "%s: Setting MAC to %s\n",
               priv->net_dev->name, print_mac(mac, priv->mac_addr));
***************
*** 16284,16287 ****
--- 16292,16305 ----
        priv->prom_priv->ieee->iw_mode = IW_MODE_MONITOR;
  
+       // ToDo: find real mac here
+ 
+       // Hack to get rtap device up, since in 2.6.24 kernels the mac of an iface must be set
+       // Setting to a dummy mac since I don't know where to get the real one.
+       // Since no packets are being sent to this interface, this is not really important.
+       
+       strcpy(priv->prom_net_dev->dev_addr,"0018DE95031A");  
+ 
+       // hack end
+ 
        rc = register_netdev(priv->prom_net_dev);
        if (rc) {

ipwraw-2.6.24-rtap_up.patch:

Code: Select all

*** linux_bak/drivers/net/wireless/ipwraw.c     2008-02-06 23:41:16.000000000 +0100
--- linux/drivers/net/wireless/ipwraw.c 2008-02-07 00:43:06.000000000 +0100
***************
*** 7613,7616 ****
--- 7613,7624 ----
        priv->config |= CFG_CUSTOM_MAC;
        memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
+ 
+       // hack to get rtap device up, since in 2.6.24 kernels the mac of an iface must be set
+       // setting to mac of the wifi interface
+       
+       if (param_rtap_iface) memcpy(priv->prom_net_dev->dev_addr, addr->sa_data, ETH_ALEN);  
+ 
+       // hack end
+ 
        printk(KERN_INFO "%s: Setting MAC to %s\n",
               priv->net_dev->name, print_mac(mac, priv->mac_addr));
***************
*** 8343,8346 ****
--- 8351,8364 ----
        priv->prom_net_dev->hard_start_xmit = ipw_prom_hard_start_xmit;
  
+       // ToDo: find real mac here
+ 
+       // Hack to get rtap device up, since in 2.6.24 kernels the mac of an iface must be set
+       // Setting to a dummy mac since I don't know where to get the real one.
+       // Since no packets are being sent to this interface, this is not really important.
+       
+       strcpy(priv->prom_net_dev->dev_addr,"0018DE95031A"); 
+ 
+       // hack end
+ 
        rc = register_netdev(priv->prom_net_dev);
        if (rc) {
I have this same problem, but for ipw2200. Is there a way to set the ethernet address to allow rtap0 to work?
Hi,

afaik the ipw2200 driver is similar to the ipw3945 driver. Thus I think you can just take my patches and find the place in the ipw2200.c file to add the two important lines. Recompile the module and be happy :)
The box said 'Windows 2000 Server or better', so I installed Gentoo

Linux galadriel 4.12.12-gentoo #4 SMP PREEMPT Fri Nov 3 00:09:29 CET 2017 x86_64 Intel(R) Core(TM) i7-2860QM CPU @ 2.50GHz GenuineIntel GNU/Linux

Visit www.mygnu.de
Top
Civil
Retired Dev
Retired Dev
Posts: 16
Joined: Fri Feb 24, 2006 10:34 am
Location: Berlin

Post by Civil » Sun Feb 10, 2008 11:08 am

http://bugzilla.kernel.org/show_bug.cgi?id=9924
Have it been fixed?
‘Who controls the past controls the future: who controls the present controls the past.’
George Orwell ‘1984’
Top
Waninkoko
Guru
Guru
User avatar
Posts: 549
Joined: Fri May 13, 2005 10:21 pm

Post by Waninkoko » Sun Feb 10, 2008 2:23 pm

Civil wrote:http://bugzilla.kernel.org/show_bug.cgi?id=9924
Have it been fixed?
Fixed in latest master-devel. It includes last fix found on lkml.
Top
Waninkoko
Guru
Guru
User avatar
Posts: 549
Joined: Fri May 13, 2005 10:21 pm

Re: rtap interface (Solved)

Post by Waninkoko » Sun Feb 10, 2008 2:56 pm

HecHacker1 wrote:I have this same problem, but for ipw2200. Is there a way to set the ethernet address to allow rtap0 to work?
Happens with vanilla driver too?

PD: I have pushed a "proper" fix for ipw3945 and ipwraw. Later I'll do the same with ipw2200.
Top
Dottout
l33t
l33t
User avatar
Posts: 882
Joined: Tue Mar 07, 2006 6:38 pm

Post by Dottout » Sun Feb 10, 2008 7:42 pm

a small patch maybe useful to ext4 users. this allows to mount it as ext4 instead of ext4dev. what about including it in zen-sources?

Code: Select all

--- fs/ext4/super.c.orig	2008-02-09 19:39:11.000000000 +0100
+++ fs/ext4/super.c	2008-02-09 19:39:37.000000000 +0100
@@ -3357,7 +3357,7 @@
 
 static struct file_system_type ext4dev_fs_type = {
 	.owner		= THIS_MODULE,
-	.name		= "ext4dev",
+	.name		= "ext4",
 	.get_sb		= ext4_get_sb,
 	.kill_sb	= kill_block_super,
 	.fs_flags	= FS_REQUIRES_DEV,
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

Post by kernelOfTruth » Sun Feb 10, 2008 10:20 pm

Waninkoko, just a short question on that local root exploit:

http://it.slashdot.org/it/08/02/10/2011257.shtml

disabling kvm [*] Virtualization / KVM
should be enough to be immune to it, right ?
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
Waninkoko
Guru
Guru
User avatar
Posts: 549
Joined: Fri May 13, 2005 10:21 pm

Post by Waninkoko » Sun Feb 10, 2008 10:45 pm

kernelOfTruth wrote:Waninkoko, just a short question on that local root exploit:

http://it.slashdot.org/it/08/02/10/2011257.shtml

disabling kvm [*] Virtualization / KVM
should be enough to be immune to it, right ?
Erm... no. Best way is using latest master-devel :P
Top
unK
l33t
l33t
User avatar
Posts: 769
Joined: Tue Feb 06, 2007 5:08 pm

Post by unK » Sun Feb 10, 2008 11:09 pm

Btw, what is the difference between master and master-devel branch? ;p
ncmpcpp - featureful ncurses based MPD client inspired by ncmpc
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

Post by kernelOfTruth » Sun Feb 10, 2008 11:15 pm

thanks, Waninkoko,

could you please post the right syntax for merging a local linux-2.6.git repository & the zen-sources repository ?

as told by
git clone --reference /path/to/your/linux-2.6.git/incarnation mirror_URL
I think I need to reclone zen-sources (conflicted merge ftw ! 8O )

update:


don't bother, got it:

Code: Select all

 git clone --reference /usr/src/sources/linux-2.6/ git://repo.or.cz/linux-2.6/zen-sources.git
git is pretty powerful but needs lots of man(ual) reading :lol:
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

Post by kernelOfTruth » Mon Feb 11, 2008 12:03 am

CC [M] drivers/net/wireless/rtl8187_dev.o
CC [M] drivers/net/wireless/rtl8187_rtl8225.o
drivers/net/wireless/rtl8187_rtl8225.c: In function ‘rtl8225_rf_set_tx_power’:
drivers/net/wireless/rtl8187_rtl8225.c:286: error: ‘struct ieee80211_channel’ has no member named ‘val’
drivers/net/wireless/rtl8187_rtl8225.c:287: error: ‘struct ieee80211_channel’ has no member named ‘val’
drivers/net/wireless/rtl8187_rtl8225.c: In function ‘rtl8225z2_rf_set_tx_power’:
drivers/net/wireless/rtl8187_rtl8225.c:503: error: ‘struct ieee80211_channel’ has no member named ‘val’
drivers/net/wireless/rtl8187_rtl8225.c:504: error: ‘struct ieee80211_channel’ has no member named ‘val’
drivers/net/wireless/rtl8187_rtl8225.c: At top level:
drivers/net/wireless/rtl8187_rtl8225.c:779: error: stray ‘\361’ in program
drivers/net/wireless/rtl8187_rtl8225.c:779:3: warning: no newline at end of file
drivers/net/wireless/rtl8187_rtl8225.c:779: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ at end of input
make[3]: *** [drivers/net/wireless/rtl8187_rtl8225.o] Error 1
make[2]: *** [drivers/net/wireless] Error 2
make[1]: *** [drivers/net] Error 2
make: *** [drivers] Error 2
:(
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
loeb-it
n00b
n00b
Posts: 37
Joined: Tue May 15, 2007 10:19 pm

Re: rtap interface (Solved)

Post by loeb-it » Mon Feb 11, 2008 2:00 pm

Waninkoko wrote:
HecHacker1 wrote:I have this same problem, but for ipw2200. Is there a way to set the ethernet address to allow rtap0 to work?
Happens with vanilla driver too?

PD: I have pushed a "proper" fix for ipw3945 and ipwraw. Later I'll do the same with ipw2200.
Haven't tried, buit I think so, since the change, that you can't brin up an interface only if it has got a mac address set afaik was introduced with 2.6.24. Thus this should not be limited to zen-sources. I already posted it to the ipw2200 mailing list when posting the patches to the zen-sources thread.
The box said 'Windows 2000 Server or better', so I installed Gentoo

Linux galadriel 4.12.12-gentoo #4 SMP PREEMPT Fri Nov 3 00:09:29 CET 2017 x86_64 Intel(R) Core(TM) i7-2860QM CPU @ 2.50GHz GenuineIntel GNU/Linux

Visit www.mygnu.de
Top
rmh3093
Advocate
Advocate
User avatar
Posts: 2138
Joined: Wed Aug 06, 2003 10:36 pm
Location: Albany, NY

Post by rmh3093 » Mon Feb 11, 2008 2:40 pm

Ok so all of our hosting attempts have sucked.... I am going to register zen-sources on sourceforge
Do not meddle in the affairs of wizards, for they are subtle and quick to anger.
Top
zarzych
n00b
n00b
Posts: 9
Joined: Thu Dec 13, 2007 10:50 pm

Post by zarzych » Mon Feb 11, 2008 3:36 pm

Hi,

I have a ThinkPad t61 with nvidia graphics and Intel hda audio. I've read in the thinkpad_acpi documentation that sound control is supported but I can't get it right.

When I write up/down to /proc/acpi/ibm/volume it is notified there but no volume level difference can be noticed. Also the up/down buttons don't work (and don't produce acpi events even when I use 0xffffffff hotkey mask) except for unmuting. The mute button works ok.

I use newest master-devel.

Does any of you know the solution?
Top
termite
Guru
Guru
Posts: 466
Joined: Sun May 06, 2007 1:12 pm

Post by termite » Mon Feb 11, 2008 6:29 pm

There's a bug with intel hda audio and alsa that isn't fixed yet. I have the same problem: can't change volumes...
Top
jaclar
n00b
n00b
Posts: 17
Joined: Tue Aug 07, 2007 10:43 pm

Post by jaclar » Mon Feb 11, 2008 10:52 pm

Just compiled the kernel and iwlwifi with iwl4965 isn't able to associate with my accesspoint anymore. Get a "time out" error. With older kernel iwlwifi works smooth...
Top
HecHacker1
Apprentice
Apprentice
User avatar
Posts: 213
Joined: Thu Jun 26, 2003 5:39 am
Location: UCSD
Contact:
Contact HecHacker1
Website

Post by HecHacker1 » Tue Feb 12, 2008 7:15 am

rmh3093 wrote:Ok so all of our hosting attempts have sucked.... I am going to register zen-sources on sourceforge
I can offer bandwidth, I have 11TB per month of transfer with dreamhost. According to this article setting up a git repository should be possible on their servers:
http://wiki.dreamhost.com/Git

I can set you guys up with an account to a subdomain or folder where you can manage it. Let me know.
Top
HecHacker1
Apprentice
Apprentice
User avatar
Posts: 213
Joined: Thu Jun 26, 2003 5:39 am
Location: UCSD
Contact:
Contact HecHacker1
Website

Re: rtap interface (Solved)

Post by HecHacker1 » Tue Feb 12, 2008 7:21 am

Waninkoko wrote:
HecHacker1 wrote:I have this same problem, but for ipw2200. Is there a way to set the ethernet address to allow rtap0 to work?
Happens with vanilla driver too?

PD: I have pushed a "proper" fix for ipw3945 and ipwraw. Later I'll do the same with ipw2200.
I haven't tried vanilla in a long time... but if you want I can. Apparently I just need to set the ethernet address for my radio tap interface due to changes in 2.6.24 (although I am sure there were 2.6.23 kernels with the same problem, I just haven't complained about it).

Maybe iwconfig can set the address... checking now.

EDIT: nope. iwconfig doesn't have a MAC address option. ifconfig does, but I get a "SIOCSIFFLAGS: Invalid argument" error and also a Unknown host error. ifconfig instructions are a bit unclear though.
Top
jespera
n00b
n00b
Posts: 27
Joined: Thu Feb 03, 2005 12:14 am

Post by jespera » Tue Feb 12, 2008 7:36 am

termite wrote:There's a bug with intel hda audio and alsa that isn't fixed yet. I have the same problem: can't change volumes...
I compiled snd_hda_intel as a module and set the model in /etc/modules.d/alsa

Code: Select all

options snd-hda-intel model=lg
That fixed all my volume problems.

I have another problem though: after suspending, there's no sound what-so-ever. I try turning the volume (front, master, pcm, ...) up and down, but still no sound.

Anybody else with such problems?
Top
loeb-it
n00b
n00b
Posts: 37
Joined: Tue May 15, 2007 10:19 pm

Post by loeb-it » Tue Feb 12, 2008 12:02 pm

jaclar wrote:Just compiled the kernel and iwlwifi with iwl4965 isn't able to associate with my accesspoint anymore. Get a "time out" error. With older kernel iwlwifi works smooth...
With iwl3945 driver I also cannot associate with (at least one) WEP network. The netwerks qou tried were WEP or WPA?

For me that's (and the rtap interface) the reason for staying with the ipw driver...
The box said 'Windows 2000 Server or better', so I installed Gentoo

Linux galadriel 4.12.12-gentoo #4 SMP PREEMPT Fri Nov 3 00:09:29 CET 2017 x86_64 Intel(R) Core(TM) i7-2860QM CPU @ 2.50GHz GenuineIntel GNU/Linux

Visit www.mygnu.de
Top
loeb-it
n00b
n00b
Posts: 37
Joined: Tue May 15, 2007 10:19 pm

Re: rtap interface (Solved)

Post by loeb-it » Tue Feb 12, 2008 12:05 pm

HecHacker1 wrote:
Waninkoko wrote:
HecHacker1 wrote:I have this same problem, but for ipw2200. Is there a way to set the ethernet address to allow rtap0 to work?
Happens with vanilla driver too?

PD: I have pushed a "proper" fix for ipw3945 and ipwraw. Later I'll do the same with ipw2200.
I haven't tried vanilla in a long time... but if you want I can. Apparently I just need to set the ethernet address for my radio tap interface due to changes in 2.6.24 (although I am sure there were 2.6.23 kernels with the same problem, I just haven't complained about it).

Maybe iwconfig can set the address... checking now.

EDIT: nope. iwconfig doesn't have a MAC address option. ifconfig does, but I get a "SIOCSIFFLAGS: Invalid argument" error and also a Unknown host error. ifconfig instructions are a bit unclear though.
That's the reason I created the above patches for. They allow setting of the mac address for the rtap interface and set initially a fixed one. Since I didn't find out how to get the real mac address of the card I just set a fixed one...
The box said 'Windows 2000 Server or better', so I installed Gentoo

Linux galadriel 4.12.12-gentoo #4 SMP PREEMPT Fri Nov 3 00:09:29 CET 2017 x86_64 Intel(R) Core(TM) i7-2860QM CPU @ 2.50GHz GenuineIntel GNU/Linux

Visit www.mygnu.de
Top
jaclar
n00b
n00b
Posts: 17
Joined: Tue Aug 07, 2007 10:43 pm

Post by jaclar » Tue Feb 12, 2008 3:01 pm

loeb-it wrote: With iwl3945 driver I also cannot associate with (at least one) WEP network. The netwerks qou tried were WEP or WPA?

For me that's (and the rtap interface) the reason for staying with the ipw driver...
I was until recently quite happy with the iwlwifi driver, worked like a charm for me. But what is this rtap interface?
I couldn't associate with a WPA network.
Would b nice to get it working again...
Top
Locked

632 posts
  • Page 20 of 26
    • Jump to page:
  • Previous
  • 1
  • …
  • 18
  • 19
  • 20
  • 21
  • 22
  • …
  • 26
  • Next

Return to “Unsupported Software”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy