Re: Powerbook G4 1.33 GHz CPU temperature

2004-09-18 Thread Benjamin Herrenschmidt

 Compile it as a module and you can load the module  with the the params 
 fan_speed
 and limit_adjust e.g in /etc/modules ;-) The solution to adjust the
 gpu temp linear to the cpu temp isn't a good one yet. We have to
 control them separate. Maybe Ben is reading this an can tell some
 details?

All I can suggest is to look at what Darwin does ... A friend of mine just got a
1.5Ghz and is having frequent lockups on load, it could be temperature related.

Ben.




Re: airport and encryption

2004-09-18 Thread Adam Done
On Fri, 2004-09-17 at 19:59, Dean Hamstead wrote:
 what are the contents of your
 /etc/network/interfaces
 
 file?
 
 im sure you can get this working.
 
 sned the contents of the file. make sure the base station
 is plugged in correctly and make sure your network settings
 are correct for your local network
 (obviously 192.168.0.1/255.255.255.0 wont be able to
 ping 10.0.0.1/255.255.255.0)

Base Station 
Firmware Version:  V3.84
Wireless Channel: 11
Wireless Security:  40 bit WEP
Public (WAN) IP Adress: 10.1.12.69


Airport Card:  I just updated it with Apple's Software Update utility
today.




# iwconfig

eth1  IEEE 802.11-DS  ESSID:wnet  Nickname:HERMES I
  Mode:Managed  Frequency:2.462GHz  Access Point:
01:02:03:04:05:06   
  Bit Rate:11Mb/s   Tx-Power=15 dBm   Sensitivity:1/3  
  Retry limit:4   RTS thr:off   Fragment thr:2347 B   
  Encryption key:------xx
  Power Management:off
  Link Quality=38/92  Signal level=-59 dBm  Noise level=-97 dBm
  Rx invalid nwid:0  Rx invalid crypt:12  Rx invalid frag:0
  Tx excessive retries:0  Invalid misc:0   Missed beacon:0



The network is a 10.1.0.0/16

interfaces

# Used by ifup(8) and ifdown(8). See the interfaces(5) manpage or
# /usr/share/doc/ifupdown/examples for more information.

# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)

# The loopback interface
auto lo
iface lo inet loopback

# The first network card - this entry was created during the Debian
installation
# (network, broadcast and gateway are optional)
#auto eth0
auto eth1
iface eth0 inet static
name H-Static
address 10.1.12.1
netmask 255.255.0.0
network 10.1.0.0
broadcast 10.1.255.255
gateway 10.1.100.1


iface eth1 inet static
address 10.1.12.20
netmask 255.255.0.0
gateway 10.1.12.69
name Wireless LAN card
wireless_essid wnet
wireless-key ---





Re: airport and encryption

2004-09-18 Thread Adam Done
On Fri, 2004-09-17 at 20:00, James Gibbs wrote:
 On Thu, 2004-09-16 at 18:13, Adam Done wrote:
  I have been setting up my wireless using apples airport.  So far I have
  been able to access the base station with an open network but when I try
  to access with a close network and 40bit encryption I am locked out.
  
  
  in the /etc/network/interfaces 
  wireless_essid net-name
  wireless_key s:password x
  
  but when I do restart the network interfaces I get this error
  
  #  /etc/init.d/networking restart
  Setting up IP spoofing protection: rp_filter.
  Reconfiguring network interfaces...Error : unrecognised wireless request
  x
  done.
  
  
  I am at a loss to access a close protected airport base station.  I did
  a man iwconfig to learn how to use the password.  Does anyone have any
  good sujestions?
  
  -Adam
  
 
 I had a similar problem with my iBook 500 with graphite base station
 using static connection and 40bit encryption. The wireless_key s:x
 line always gave me an error. I don't know if it was too old firmware or
 what. My solution was to open the Airport Admin program in OS X to
 configure the base station. Click where it says password to see what
 the password key is in hex. Then change the wireless_key line to
 wireless_key ABCDEF0123, rather than entering as a string. Also, don't
 know if it matters, but my interfaces file uses wireless-key rather
 than wireless_key.
 
 James


I found the hex as you explained and then in linux I 

# iwconfig eth1 key ABCDEF0123
Error for wireless request Set Encode (8B2A)
invalid argumentABCDEF0123

eth1  IEEE 802.11-DS  ESSID:wnet  Nickname:HERMES I
  Mode:Managed  Frequency:2.462GHz  Access Point:
01:02:03:04:05:06   
  Bit Rate:11Mb/s   Tx-Power=15 dBm   Sensitivity:1/3  
  Retry limit:4   RTS thr:off   Fragment thr:2347 B   
  Encryption key:------xx
  Power Management:off
  Link Quality=38/92  Signal level=-59 dBm  Noise level=-97 dBm
  Rx invalid nwid:0  Rx invalid crypt:12  Rx invalid frag:0
  Tx excessive retries:0  Invalid misc:0   Missed beacon:0

This is with apple's orrig airport card on a G4 powerbook and the key I 
took from above gave me this.

# iwconfig eth1 key ---
eth:1 new Link status: Disconnected

eth1: New Link status: Connected (0001)



Re: airport and encryption

2004-09-18 Thread Dean Hamstead
Base Station 
Firmware Version:  V3.84

Wireless Channel: 11
Wireless Security:  40 bit WEP
Public (WAN) IP Adress: 10.1.12.69





Airport Card:  I just updated it with Apple's Software Update utility
today.





# iwconfig

eth1  IEEE 802.11-DS  ESSID:wnet  Nickname:HERMES I
  Mode:Managed  Frequency:2.462GHz  Access Point:
01:02:03:04:05:06   
  Bit Rate:11Mb/s   Tx-Power=15 dBm   Sensitivity:1/3  
  Retry limit:4   RTS thr:off   Fragment thr:2347 B   
  Encryption key:------xx


this key looks too long to be 40bit wep.


  Power Management:off
  Link Quality=38/92  Signal level=-59 dBm  Noise level=-97 dBm
  Rx invalid nwid:0  Rx invalid crypt:12  Rx invalid frag:0
  Tx excessive retries:0  Invalid misc:0   Missed beacon:0



The network is a 10.1.0.0/16

interfaces

# Used by ifup(8) and ifdown(8). See the interfaces(5) manpage or
# /usr/share/doc/ifupdown/examples for more information.

# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)

# The loopback interface
auto lo
iface lo inet loopback

# The first network card - this entry was created during the Debian
installation
# (network, broadcast and gateway are optional)
#auto eth0
auto eth1
iface eth0 inet static
name H-Static
address 10.1.12.1
netmask 255.255.0.0
network 10.1.0.0
broadcast 10.1.255.255
gateway 10.1.100.1


iface eth1 inet static
address 10.1.12.20
netmask 255.255.0.0
gateway 10.1.12.69
name Wireless LAN card
wireless_essid wnet
wireless-key ---


i use wireless_key

i think the problem may be getting the key from the mac config utitily

but by the look of things the wireless key about is too long


Dean
--
WWW: http://dean.bong.com.au  LAN: http://www.bong.com.au
EMAIL: [EMAIL PROTECTED]   or   [EMAIL PROTECTED]
ICQ: 16867613



Re: Cinema display 20 inch

2004-09-18 Thread Bob Hentges
On Fri, 17 Sep 2004 21:31:00 +0200, David Ulrich [EMAIL PROTECTED] wrote:
 Hi,

Moien

 Is there a special patch, or a config to do to xserver to run 1680x1050
 on a 20 inch cinema display?
 I can not get more than 1280.

Even thought I don't know for sure, I don't think that there is need
for a patch...

 I'm running 2.4.27-powerpc-smp with a radeon 9700 Pro...
 
 It's possible to use the dual head?

Yes, throw an eye on Xinerama.

Friendly,

Bob Hentges
--
http://bob.hentges.lu/



Re: airport and encryption

2004-09-18 Thread Adam Done
On Sat, 2004-09-18 at 00:02, Dean Hamstead wrote:
  Base Station 
  Firmware Version:  V3.84
  Wireless Channel: 11
  Wireless Security:  40 bit WEP
  Public (WAN) IP Adress: 10.1.12.69
 
 
 
  Airport Card:  I just updated it with Apple's Software Update utility
  today.
  
  
 
  # iwconfig
  
  eth1  IEEE 802.11-DS  ESSID:wnet  Nickname:HERMES I
Mode:Managed  Frequency:2.462GHz  Access Point:
  01:02:03:04:05:06   
Bit Rate:11Mb/s   Tx-Power=15 dBm   Sensitivity:1/3  
Retry limit:4   RTS thr:off   Fragment thr:2347 B   
Encryption key:------xx
 
 this key looks too long to be 40bit wep.
 
Power Management:off
Link Quality=38/92  Signal level=-59 dBm  Noise level=-97 dBm
Rx invalid nwid:0  Rx invalid crypt:12  Rx invalid frag:0
Tx excessive retries:0  Invalid misc:0   Missed beacon:0
  
  
  
  The network is a 10.1.0.0/16
  
  interfaces
  
  # Used by ifup(8) and ifdown(8). See the interfaces(5) manpage or
  # /usr/share/doc/ifupdown/examples for more information.
  
  # /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
  
  # The loopback interface
  auto lo
  iface lo inet loopback
  
  # The first network card - this entry was created during the Debian
  installation
  # (network, broadcast and gateway are optional)
  #auto eth0
  auto eth1
  iface eth0 inet static
  name H-Static
  address 10.1.12.1
  netmask 255.255.0.0
  network 10.1.0.0
  broadcast 10.1.255.255
  gateway 10.1.100.1
  
  
  iface eth1 inet static
  address 10.1.12.20
  netmask 255.255.0.0
  gateway 10.1.12.69
  name Wireless LAN card
  wireless_essid wnet
  wireless-key ---
 
 i use wireless_key
 
 i think the problem may be getting the key from the mac config utitily
 
 but by the look of things the wireless key about is too long

H.  If that is the case and that was given automaticly when I do a
iwconfig.  I am understanding more of the key but that hex key I have no
idea where that came from.  Do I trunkcate it for 40 or do I have to get
another one?

-Adam




Re: powerbook 1.5GHz 15 + radeon 9600 + mirror

2004-09-18 Thread Pierre Habouzit

 The patch and my XF86Config-4 are attached. It should work with
 these, since we have the same cards anyway.

I'll try that,
thanks a lot 

If that works, you just save me :)
-- 
Pierre Habouzit   http://www.madism.org/
-==--==--==--==--==--==--==--==--==--==--==--==--==--==--==--==--==--==-
gpg : 1024D/A1EE761C  6045 409E 5CB5 2CEA 3E70  F17E C41E 995C C98C 90BE 
spam: [EMAIL PROTECTED]


pgpdoMyH3KSDL.pgp
Description: PGP signature


Re: powerbook 1.5GHz 15 + radeon 9600 + mirror

2004-09-18 Thread Mick Weiss

Pierre Habouzit wrote:

The patch and my XF86Config-4 are attached. It should work with
these, since we have the same cards anyway.



I'll try that,
thanks a lot 

If that works, you just save me :)


The configs for that model are online under (i'm not sure if there is a 
difference between the 1GHz and 1.5GHz, but the Radeon 9600 is what you 
need anyhow:


http://ppcconfdb.sourceforge.net/conf/PowerBook_Aluminium_G4_1GHz_15_radeon-9600/

I am the Project Admin for PPCConfDB 
(http://ppcconfdb.sourceforge.net/), and I was wondering if you could 
run the make-db script 
(http://ppcconfdb.sourceforge.net/programs/make-db/make-db) on your box 
so I can diff the folders to see if the configs come out similar.


Otherwise, if you'd like you could just use the configs on the PPCConfDB 
site and let me know how they work for you (So that we can get some QA 
going on for the project).


Anyhow, I wish you the best on getting your comp. setup. :-)

Best Regards,

- Mick

(o Web / software developer
( ) UNIX Systems Admin
---   ~ www.mickweiss.com ~



Re: powerbook 1.5GHz 15 + radeon 9600 + mirror

2004-09-18 Thread Mick Weiss



The exact location is:

http://ppcconfdb.sourceforge.net/conf/PowerBook_Aluminium_G4_1GHz_15_radeon-9600/etc/X11/XF86Config-4

Hope that helps,


- Mick

(o Web / software developer
( ) UNIX Systems Admin
---   ~ www.mickweiss.com ~


Mick Weiss wrote:


Pierre Habouzit wrote:


The patch and my XF86Config-4 are attached. It should work with
these, since we have the same cards anyway.




I'll try that,
thanks a lot 

If that works, you just save me :)



The configs for that model are online under (i'm not sure if there is a 
difference between the 1GHz and 1.5GHz, but the Radeon 9600 is what you 
need anyhow:


http://ppcconfdb.sourceforge.net/conf/PowerBook_Aluminium_G4_1GHz_15_radeon-9600/ 



I am the Project Admin for PPCConfDB 
(http://ppcconfdb.sourceforge.net/), and I was wondering if you could 
run the make-db script 
(http://ppcconfdb.sourceforge.net/programs/make-db/make-db) on your box 
so I can diff the folders to see if the configs come out similar.


Otherwise, if you'd like you could just use the configs on the PPCConfDB 
site and let me know how they work for you (So that we can get some QA 
going on for the project).


Anyhow, I wish you the best on getting your comp. setup. :-)

Best Regards,

- Mick

(o Web / software developer
( ) UNIX Systems Admin
---   ~ www.mickweiss.com ~






Re: Testing newoldworld pmac miboot 2.6 floppies

2004-09-18 Thread Jens Schmalzing
Hi,

Sven Luther writes:

 Jens, when you built those miboot floppies that worked, what command line
 options did you use ?

No idea, I just took the image distributed with BootX_1.2.2.sit on
Ben's page and changed the kernel.  Anyway, it worked on a beige G3.

And worked in that context meant that the kernel loaded, started,
and displayed the penguin and its output.  After all, I was working on
mkvmlinuz, not d-i.

Regards, Jens.

-- 
J'qbpbe, le m'en fquz pe j'qbpbe!
Le veux aimeb et mqubib panz je pézqbpbe je djuz tqtaj!



Re: Testing newoldworld pmac miboot 2.6 floppies

2004-09-18 Thread Jens Schmalzing
Hi,

Rick Thomas writes:

 I then use ResEdit to modify the appropriate resource (any clues as
 to which?

The resource is called CMDL.  More detailed instructions are here:

URL:http://portal.suse.com/sdb/en/2000/06/olh_ppc_miboot.html

Regards, Jens.

-- 
J'qbpbe, le m'en fquz pe j'qbpbe!
Le veux aimeb et mqubib panz je pézqbpbe je djuz tqtaj!



Re: Testing newoldworld pmac miboot 2.6 floppies

2004-09-18 Thread Jens Schmalzing
Hi,

Brad Boyer writes:

 I suspect that the one that worked was SCSI only.

The one*s* that worked for me were a beige G3 and a 7200/90.  Worked
meaning that the kernel loaded and started from the floppy.

Regards, Jens.

[Recipient list trimmed]

-- 
J'qbpbe, le m'en fquz pe j'qbpbe!
Le veux aimeb et mqubib panz je pézqbpbe je djuz tqtaj!



Re: oldworld G3 powerbook / cd boot

2004-09-18 Thread Jens Schmalzing
Hi,

C. Thomas writes:

 I'm trying to install debian to an oldworld style G3 powerbook
 (lombard? wallstreet?  i'm not sure).

If it's OldWorld, it must be a Wallstreet or earlier.

 Regardless, it doesn't appear to have openfirmware so apple-c won't
 make the debian cd boot.

It does have OpenFirmware, but still the Debian CD is not bootable.

 So, I followed the install instructions and went to grab woody's
 bootX binaries.
[...]
 Any suggestions?

Gee, I didn't even know there were BootX binaries in woody.  I use
BootX_1.2.2.sit from URL:http://www.penguinppc.org/~benh/ on my
OldWorld Macs.  This works very well, just make sure that you transfer
the kernel and initrd to your Mac OS partition after installation.

Regards, Jens.

-- 
J'qbpbe, le m'en fquz pe j'qbpbe!
Le veux aimeb et mqubib panz je pézqbpbe je djuz tqtaj!



Re: Testing newoldworld pmac miboot 2.6 floppies

2004-09-18 Thread Rick Thomas


Jens Schmalzing wrote:
 
 Hi,
 
 Rick Thomas writes:
 
  I then use ResEdit to modify the appropriate resource (any clues as
  to which?
 
 The resource is called CMDL.  More detailed instructions are here:
 
 URL:http://portal.suse.com/sdb/en/2000/06/olh_ppc_miboot.html
 

Very interesting!  Thank you for the pointer.

However, I must be doing something wrong...

I write the boot.img file to a floppy.

I can boot from the floppy.

I put the floppy in the drive on MacOS-9.2.2 and it gets mounted by MacOS.

I start up ResEdit and open the System file on the floppy.

I double-click on the CMDL resource.

As a minimal test, I change one blank to two, then erase one of them (that is: 
effectively no change), then save the result.  Everything looks good -- the 
System file still has the blessed icon.

But when I try to boot my test machine from the floppy, it takes a taste and 
spits it out immediately.

In the process, MacOS-9.2.2 has created a bunch of extraneous stuff on the 
floppy -- such as a Users folder, etc.  I don't think that should cause any 
problems, but if so, how do I get rid of them?

Thanks!

Rick



Re: Testing newoldworld pmac miboot 2.6 floppies

2004-09-18 Thread Rick Thomas


Rick Thomas wrote:
 
 Jens Schmalzing wrote:
 
  Hi,
 
  Rick Thomas writes:
 
   I then use ResEdit to modify the appropriate resource (any clues as
   to which?
 
  The resource is called CMDL.  More detailed instructions are here:
 
  URL:http://portal.suse.com/sdb/en/2000/06/olh_ppc_miboot.html
 
 
 Very interesting!  Thank you for the pointer.
 
 However, I must be doing something wrong...
 
 I write the boot.img file to a floppy.
 
 I can boot from the floppy.
 
 I put the floppy in the drive on MacOS-9.2.2 and it gets mounted by MacOS.
 
 I start up ResEdit and open the System file on the floppy.
 
 I double-click on the CMDL resource.
 
 As a minimal test, I change one blank to two, then erase one of them (that 
 is: effectively no change), then save the result.  Everything looks good -- 
 the System file still has the blessed icon.
 
 But when I try to boot my test machine from the floppy, it takes a taste and 
 spits it out immediately.
 
 In the process, MacOS-9.2.2 has created a bunch of extraneous stuff on the 
 floppy -- such as a Users folder, etc.  I don't think that should cause any 
 problems, but if so, how do I get rid of them?
 
 Thanks!
 
 Rick


In fact, just letting MacOS-9.2.2 mount the floppy (never touching ResEdit at 
all) seems to invalidate it!

Help!

Rick



How to make Netgear MA111 - USB work??

2004-09-18 Thread jarry
I have installed linux-wlan-ng-0.2.1-pre20 according to the how
to(linuxquestions forum),but it doesn't work,anyone who has succeeded
 in installing it?please help me step by step!thanks!




Re: startx segfaults on latest powerbook 12, sid

2004-09-18 Thread Djoumé SALVETTI
Le vendredi 09/17/04 Georg C. Kaindl [EMAIL PROTECTED] a écrit :
 i'm trying to setup xfree86 on my powerbook 12 (the latest one with the 64MB 
 nvidia card). However, startx stops with sig 11 (segfault). I've tried it 
 with the stock debian 2.6.7-powerpc kernel as well as a 2.6.8.1 kernel that 
 I've compiled myself. My XFree86 configuration basically is what debconf spat 
 out plus some minor changes and bloat-removal... the distribution is debian 
 unstable (just did an apt-get update; apt-get dist-upgrade, so everything 
 should be up to date)
 I've attached my XF86Config and the output in /var/log/XFree86.0.log.
 
 Did anybody have similar problems with this powerbook? If somebody got X 
 running on this, I'd be glad to see their XF86Config.

Here is mine, on the same powerbook, works fine.

Regards.
-- 
Djoumé SALVETTI
# XF86Config-4 (XFree86 X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the XF86Config-4 manual page.
# (Type man XF86Config-4 at the shell prompt.)
#
# This file is automatically updated on xserver-xfree86 package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xfree86
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following commands as root:
#
#   cp /etc/X11/XF86Config-4 /etc/X11/XF86Config-4.custom
#   md5sum /etc/X11/XF86Config-4  /var/lib/xfree86/XF86Config-4.md5sum
#   dpkg-reconfigure xserver-xfree86
Section Files
FontPath/usr/lib/X11/fonts/misc
FontPath/usr/lib/X11/fonts/cyrillic
FontPath/usr/lib/X11/fonts/100dpi/:unscaled
FontPath/usr/lib/X11/fonts/75dpi/:unscaled
FontPath/usr/lib/X11/fonts/Type1
FontPath/usr/lib/X11/fonts/CID
FontPath/usr/lib/X11/fonts/Speedo
FontPath/usr/lib/X11/fonts/100dpi
FontPath/usr/lib/X11/fonts/75dpi
EndSection
Section Module
LoadGLcore
Loadbitmap
Loaddbe
Loadddc
Loaddri
Loadextmod
Loadfreetype
Loadglx
Loadint10
Loadrecord
Loadspeedo
Loadtype1
Loadvbe
EndSection
Section InputDevice
Identifier  Generic Keyboard
Driver  keyboard
Option  CoreKeyboard
Option  XkbRules  xfree86
Option  XkbModel  macintosh
Option  XkbLayout fr
EndSection
Section InputDevice
Identifier  Configured Mouse
Driver  mouse
Option  CorePointer
Option  Device/dev/psaux
Option  Protocol  PS/2
Option  Emulate3Buttons   true
Option  ZAxisMapping  4 5
EndSection

Section InputDevice
Identifier  Generic Mouse
Driver  mouse
Option  CorePointer
Option  SendCoreEventstrue
Option  Device/dev/input/mice
Option  Protocol  ImPS/2
Option  Emulate3Buttons   true
Option  ZAxisMapping  4 5
EndSection
Section Device
Identifier  NVIDIA Corporation NV34M [GeForce FX Go5200]
Driver  nv
EndSection
Section Monitor
Identifier  Generic Monitor
HorizSync   28-49
VertRefresh 43-72
Option  DPMS
EndSection
Section Screen
Identifier  Default Screen
Device  NVIDIA Corporation NV34M [GeForce FX Go5200]
Monitor Generic Monitor
DefaultDepth16
SubSection Display
Depth   1
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   4
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   8
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   15
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   16
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   24
Modes   1024x768 800x600 640x480
EndSubSection
EndSection
Section ServerLayout
Identifier  Default Layout
Screen  Default Screen
InputDevice Generic Keyboard
InputDevice Generic Mouse
EndSection
Section DRI
Mode0666
EndSection


Re: install (boot) problem sarge powerbook G3 (wallstreet)

2004-09-18 Thread Sebastiaan Molenaar
On Mon, 2004-09-13 at 21:29, Christian Leimer wrote:
 I dont use BootX. But make sure you have copied the initrd and the
vmlinux
 to the macos folders and slected the initrd as ramdisk?

That is just the problem, how do I copy the initrd to the macos folder?
From macos I can't get to the ext2 part.
From debian install (which is the only way I can get to the ext2 part) I
can't get to the macos part.
I get the network working, but no ftp program seems to be installed in
the base install so I can't get the initrd to the network either.

For the moment I have macos installed on what will be the swap
partition, any change quick will be working some time?

Greetz,
Seb.




Re: install (boot) problem sarge powerbook G3 (wallstreet)

2004-09-18 Thread Sebastiaan Molenaar
On Sat, 2004-09-18 at 16:49, Jens Schmalzing wrote:
  That is just the problem, how do I copy the initrd to the macos folder?
 
 Execute a shell from the main installer menu, chroot into your newly
 installed system, mount your Mac OS partition, copy the kernel and
 initrd over.

Tnks, then I get the error:
mount: /dev/hd8 has wrong device number or fs type hfs not supported

Greetz,
Seb.



Bundle of problems: display/airport/2.6.5 kernel

2004-09-18 Thread Marc Rios

Hi everybody,

I am running Sid on an 800mhz ibook. I've downloaded the development 
2.6.5 benh kernel (thanks for all the good work, ben) from 
ppckernel.org, I believe the exact model is 2.6.5-r3.


Problems:
1. The kernel helps solve my display problems, but creates network 
problems.


I was ecstatic to discover that installing the 2.6.5 benh helped solve 
my display problems.  By installing dri-trunk, xlibmesa-gl, and 
xlibmesa-glu, and using the configurations instructions I found here: 
http://seb.france.free.fr/linux/ibookG4/iBookG4-howto-4.html, the LCD 
monitor runs fine.


Unfortunately, the kernel does not seem to recognize my ethernet card 
or my airport card. When I try to do the appropriate modprobes, the 
modules file comes up barren. My system is unhappy there is no 
modules.dep file for it to read -- one did not come with the kernel. 
Is Airport support incorporated into the kernel?


Naturally, my impulse was to download the source and create a new 
kernel that would include my desired modules. That leads to problem #2.


2. Compilation of the 2.6.5 kernel fails on the account of binutils.

I don't recall the exact error message, but the error message from my 
makefile says that I must have a certain edition of binutils installed 
-- but my binutils package is more current than the one they desire.


After searching the online documentation on this problem, I've 
concluded it may be a bona-fide bug and beyond my troubleshooting 
capabilities. I obtained the source from kernel.org -- do I need to get 
the source from ppckernel.org?


I figure the next step will be to use a 2.4 kernel with the appropriate 
changes involved and keep my fingers crossed that it will not  nuke my 
screen. The kernel I use is from the benh tree, it is the 
ibook-specific kernel from the benh tree.


This leads to the next problem:

3. The 2.4 kernel nukes my keyboard.

Naturally, the response to this will be to compile my own 2.4 kernel. I 
sincerely hope the kernel supports FBDev, so my XFree86 does not freak 
out again. I think regressing to 2.4 is a less than satisfactory 
solution -- is there another route?


Potential solutions: can anyone point me to a file of modules that can 
be kludged into the current modules directory for my 2.6.5 kernel? The 
plan is to use these auxiliary modules to obtain working 
airport/ethernet drivers.


Another potential solution: do I need to mess around with my network 
config files to pass the right driver-initialization commands into the 
2.6.5 kernel?


Thanks in advance.

-Marc



Note : airport extreme linux [Was: Re: airport and encryption]

2004-09-18 Thread Rory Campbell-Lange
As a rider to this the latest Airport Extreme Base Station software
_does not_ show a hex key to access the base station. Apple do something
non-standard in the way they generate this key.

The only way I have found to learn the key is to re-setup the base
station using the Setup Utility. This will note the key non Mac
clients need to use to access the base station.

On 18/09/04, Adam Done ([EMAIL PROTECTED]) wrote:
 On Sat, 2004-09-18 at 06:40, Dean Hamstead wrote: Using the base
 station utility and retrieving the hex password helped out
 tremendously... 
-- 
Rory Campbell-Lange 
[EMAIL PROTECTED]
www.campbell-lange.net



Re: airport and encryption - ALMOST FIXED

2004-09-18 Thread Ken Moffat
On Sat, 18 Sep 2004, Adam Done wrote:


 I got connected to the base station and can ping my LAN but I can't ping
 anything on the Internet yet.  The /etc/resolv.conf file has the proper
 DNS addresses and with eth0 active I can connect to the Internet.  Route
 is properly configured but the DNS resolving is not working nor pinging
 an Internet IP address directly.


if you know a host which will respond to pings and it doesn't respond
when you use it's address, that sounds like a routing problem.  And if
routing doesn't work, it can't reach any nameservers.

 I'm not familiar with the kit you're using, is eth0 a wired connection
?  If it is, you might also want to check the contents of resolv.conf
when you're using wireless.

Ken
-- 
 das eine Mal als Tragödie, das andere Mal als Farce



[Solved] airport and encryption

2004-09-18 Thread Adam Done
On Sat, 2004-09-18 at 11:23, Ken Moffat wrote:
 On Sat, 18 Sep 2004, Adam Done wrote:
 
 
  I got connected to the base station and can ping my LAN but I can't ping
  anything on the Internet yet.  The /etc/resolv.conf file has the proper
  DNS addresses and with eth0 active I can connect to the Internet.  Route
  is properly configured but the DNS resolving is not working nor pinging
  an Internet IP address directly.
 
 
 if you know a host which will respond to pings and it doesn't respond
 when you use it's address, that sounds like a routing problem.  And if
 routing doesn't work, it can't reach any nameservers.
 
  I'm not familiar with the kit you're using, is eth0 a wired connection
 ?  If it is, you might also want to check the contents of resolv.conf
 when you're using wireless.
 
 Ken

I think your right about the routing not working but that is my
puzelment too.  I switched my eth1 (running airport) to dhcp (a server
on the lan) and I aquire an IP and the proper routing table and I then
can connect to the internet.


OK, Now after typing out a detailed report of my new work, both static
and dhcp are now working.  For some reason once I got the dhcp to work
and then switch to the static, it all works and all is well for wi-fi
and I can ping the internet and my lan.

Thanks to all who have helped me with this project and the understand of
wireless.

-Adam




Re: How to make Netgear MA111 - USB work??

2004-09-18 Thread Pau Rul·lan Ferragut
On Saturday 18 September 2004 13:06, jarry wrote:
 I have installed linux-wlan-ng-0.2.1-pre20 according to the how
 to(linuxquestions forum),but it doesn't work,anyone who has succeeded
  in installing it?please help me step by step!thanks!

 It would be better to install as the readme. But is as easy as compiling the 
module, installing it and plug the USB.
 It worked on my iBook, so it is only time to work for you.
 If it does not work, tell us things such as:
 #dmesg (after plug the card)
 Any errors during the compile?
 Kernel version? How do you have the USB stuff put?


pgpULq1tG4g70.pgp
Description: PGP signature


Re: airport and encryption - ALMOST FIXED

2004-09-18 Thread Adam Done
On Sat, 2004-09-18 at 06:40, Dean Hamstead wrote:
 I dont know if the silver base station can handle 128,
 youd need to check it on the apple website, but
 the airport card in your computer can handle 128. so
 based on that i would say that the basestation can aslo.
 
 are you sure your putting the same encryption key into
 the basestation as you are putting into the airport card?
 
 the admin password for the basestation is irrelevant,
 you just need to make sure they key is the same on both.


I got connected to the base station and can ping my LAN but I can't ping
anything on the Internet yet.  The /etc/resolv.conf file has the proper
DNS addresses and with eth0 active I can connect to the Internet.  Route
is properly configured but the DNS resolving is not working nor pinging
an Internet IP address directly.  

What I have been doing has been entering in the wrong information at the
wrong places.  With all the help everyone and the suggestions along the
way, I have been understanding wireless much more than when I had
started.  

Using the base station utility and retrieving the hex password helped
out tremendously and entering it as the key which I have been entering
the wrong on into the airport card and that is where the whole mess came
up.  I did not understand that entering the information using iwconfig
actually changes the stored information on the card.

Thank you so much everyone for your help with this.

-Adam