Installing Debian on ASUS

2004-07-14 Thread Sigit Basuki Wibowo
Dear All,

I wanted to install Debian on my Laptop (ASUS L2000)
but I had problem. After booting from Debian CD, the
appearance on the screen was quite strange. The
problem was the two or three last lines appeared on
the top of the screen. Anyway, I insisted to install
it. I succeeded, but the problem still existed.
Anybody could help me ?

Thankyou.
Sigit B Wibowo



__
Do you Yahoo!?
Take Yahoo! Mail with you! Get it on your mobile phone.
http://mobile.yahoo.com/maildemo 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Woody has sent you a private message

2004-07-14 Thread literature

Hey, this is Tiffany!  One of my friends said she knew
you and we should get in contact with each other.

I just got my videocamera working so we can talk as long 
as you want at my website and it doesn't cost you anything 
if you wanna watch/see me! 

Just Copy and Paste the URL below in your Broswer 

www.TIFFHUH.com/tiffany.html 

I hope you visit soon... I'll be waiting for you ;-)

bye bye, Tiff









 atalanta scarlatti ingrate martensite kodachrome paraguay wherewithal applaud 
 paraguay promise heusen instinctual acumen holdup christianson embedding  
 bimonthly alcoholism chordate climax sector bilge investigate celebes 
2


Re: Installing Debian on ASUS

2004-07-14 Thread Jochen Schulz
* Sigit Basuki Wibowo:
>
> I wanted to install Debian on my Laptop (ASUS L2000)
> but I had problem. After booting from Debian CD, the
> appearance on the screen was quite strange. The
> problem was the two or three last lines appeared on
> the top of the screen. Anyway, I insisted to install
> it. I succeeded, but the problem still existed.
> Anybody could help me ?

Take a look at . There are several
installation reports for your model. Your problem is also described
here: http://helmsdeep.net/capn-k/?sub=linux&id=asus-laptop

One solution seems to be using 'video=vga16:off' as boot parameter.

J.
-- 
I am worried that my dreams pale in comparison beside TV docu-soaps.
 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: using acpi

2004-07-14 Thread Andrew McMillan
On Tue, 2004-07-13 at 10:10 +0200, Bernhard Kleine wrote: 
> Hi,
> since I have already asked some days before whether anybody could
> provide scripts for acpi support e.g. to shut down the screen when the
> cover is closed and since I did not receive any response, 
> 
> I will ask again:
> 
> Is there someone to share his experience using acpi with kernel 2.6.(6)
> and higher?

I'm using 2.6 (currently 2.6.8-rc1) and have been using these scripts:

/etc/acpi/suspend_to_ram.sh
=
#!/bin/sh
# /etc/acpi/suspend_to_ram.sh
# Initiates a suspend to memory [when the lid is closed]

if ps -Af | grep -q '[k]desktop' && test -f /usr/bin/dcop
then
dcop --all-users ksmserver ksmserver logout 0 2 0 && exit 0
fi

sync

whereami --syslog --run_from suspend2ram undocked
xscreensaver-command -lock
logger -t "acpi-sleep" "Stopping hotplug"
/etc/init.d/hotplug stop

sleep 1

logger -t "acpi-sleep" "Initiating sleep at `date`"
#echo 3 >/proc/acpi/sleep
echo mem >/sys/power/state

sleep 1
logger -t "acpi-sleep" "Awakening from sleep at `date` ?"

(
  # Run in a subshell so we can finish our job...
  # modprobe e1000
  sleep 2
  /etc/init.d/hotplug start &
  whereami --syslog --run_from resumefromram
) 2>&1 | logger -t 'acpi-sleep' &

=

/etc/acpi/suspend_to_disk.sh
=
#!/bin/sh
# /etc/acpi/suspend_to_disk.sh
# Initiates a suspend to disk

if ps -Af | grep -q '[k]desktop' && test -f /usr/bin/dcop
then
dcop --all-users ksmserver ksmserver logout 0 2 0 && exit 0
fi

whereami --syslog --run_from suspend2disk undocked
# logger -t "acpi-sleep" "Stopping hotplug"
# /etc/init.d/hotplug stop
sleep 1

logger -t "acpi-sleep" "Initiating disk-based suspend at `date`"
echo 4 >/proc/acpi/sleep

sleep 2
logger -t "acpi-sleep" "Awakening from sleep at `date` ?"
sleep 3
whereami --syslog --run_from resumefromdisk

=

/etc/acpi/suspend_to_disk.sh
=

=


And these configuration files...

/etc/acpi/events/lid
=
# /etc/acpi/events/lid
# This is called when the user closes the lid.

# Optionally you can specify the placeholder %e. It will pass
# through the whole kernel event message to the program you've
# specified.

# We need to react on "button lid.*" and "button/lid.*" because
# of kernel changes.

event=button[ /]lid
action=/etc/acpi/suspend_to_ram.sh

=

/etc/acpi/events/allevents 
=
# /etc/acpi/events/allevents
# This is called when any ACPI event happens
# /etc/acpi/log_event is called to log the event

# Optionally you can specify the placeholder %e. It will pass
# through the whole kernel event message to the program you've
# specified.

event=.*
action=/etc/acpi/log_event "%e"
=


/etc/acpi/events/powerbtn
=
# /etc/acpi/events/powerbtn
# This is called when the user presses the power button and calls
# /etc/acpi/powerbtn.sh for further processing.

# Optionally you can specify the placeholder %e. It will pass
# through the whole kernel event message to the program you've
# specified.

# We need to react on "button power.*" and "button/power.*" because
# of kernel changes.

event=button[ /]power
action=/etc/acpi/shutdown.sh
=


In fact I only rarely use the suspend_to_disk script because it doesn't
work reliably.  I suspend to RAM at least twice each day (driving to
work, driving home, plus twice each time I have to go to a meeting out
of the office) - this has worked reliably for many different kernel
versions from 2.6.3 through 2.6.7-mm6. YMMV, of course, because ACPI is
not yet smoothly supported on all laptop models.


How it all works


The events directory contains definitions of things that should happen
for various ACPI events.  The names of the files in this directory are
informative, rather than special.  The events that are hooked into are
defined by the:
event=
line, which should pattern match against an ACPI event.  I use the
"allevents" definition, along with the "log_event" script to let me
figure out what/whether some specific marked button my keyboard sends,
as far as ACPI goes.

In the case of my laptop, I am able to hook into the "lid" and "power"
buttons (the sleep button doesn't appear to trigger an ACPI event).

When the "event" is matched, the associated "action" is run.  In my case
this means that the suspend_to_ram script is kicked off when I close the
lid.

This script gets fiddled w

RE: Debian and Acer TravelMate 240

2004-07-14 Thread ntr
>  I've tried to look for informations about it on TuxMobil and
>Linux-on-laptops, but I haven't found anything about that model and its
>compatibility with GNU/Linux.

I had the same problem... my approach was to see what hardware I had and see 
the models that had the same hardware...

I was taking a look at the page, and I must admit that what acer call 
technical specifications I call selling rubish... they say no technical 
specification at all... (unless you consider "engine: xxx cc" a technical 
specification for a car 8))

Nevertheless I think it's a good bet that acer uses the same components for 
each and every computer... (except for the graphic card... I know they use 2, 
but both work on linux)...

by the way... I have (or had - some problems happened 8( ) an aspire 1355... I 
installed sarge and it's ok... I think that both laptops differ only in the 
processor... you could write to acer asking REAL technical specifications.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



[no subject]

2004-07-14 Thread "Kai Kühne"
Hi List.
I'am new.

I have a Dell Inspiron 5150 with an ethernet card named broadcom 4400.

If I install the kernel 2.6.6-1-k7 I've got everty time:

hdc: lost interrupt

If you need more information please tell me.


PS: Sorry for my english.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Thinkpad R50 Fan control

2004-07-14 Thread Andrew McMillan
On Tue, 2004-07-13 at 17:11 +0200, Didrik Pinte wrote:
> I'm not using ACPI but had the same problem on my R50. I've solved this
> using the fglrx driver in place of the Radeon driver.

Is that an R50p? Can you suspend OK with it?  I found that when I (try
to) resume with the fglrx driver I just get crap all over the screen.

I suspend 2-6 times a day for travelling around, and 3D is much less
important to me than being productive immediately without a reboot,
so...

Cheers,
Andrew.
-
Andrew @ Catalyst .Net .NZ  Ltd,  PO Box 11-053, Manners St,  Wellington
WEB: http://catalyst.net.nz/PHYS: Level 2, 150-154 Willis St
DDI: +64(4)803-2201  MOB: +64(272)DEBIAN  OFFICE: +64(4)499-2267
   Avert misunderstanding by calm, poise, and balance.
-


signature.asc
Description: This is a digitally signed message part


unsubscribe

2004-07-14 Thread Andersson Mikael
unsubscribe






Re: Application Inquiry

2004-07-14 Thread Singer



R at es  - are rising! Act now and lock in these  l
ow   rat
e s.C a sh   out 10o % of your home. Quickly get   c a
sh in 5 days.
Zero income documentation and No   F IC0 scoring.
Take advantagLe
today P

fnowxddlq. njvodkhf pwsoxi aordpo Nbmmvl avebk
ksfefv gmlxdp - mlbihg gcngan opfez xenslr mbvfbfpv
gfuoy plnjhkdl. vxyyos ivuaihrl qlxqld Sdwocefzbm oiezhwpf
dxkpt Qcstmmkie btzhztlp vhhsphs Tdehbtlqq Hhqimwson klshvfuw
oztvyeun giccseb ueumgzy itzlkkueh yseaq qwsnhlekk citikrg. zbatsee qhtsfkc
vfmgycp Pbdzypvvt kzrivl nqloenkv? qnrokliy? ykmivppx
tjvtedqdd zhsjgc - zwkvgj? dzglpj? Wkclipfdyl rcxodjiv - vnafbamoc
kgjbc bpsbb ctltqz? tjpszsswk laaymovke. hwoyfhjtc. gqgmfz oxyacfh
sydul voaxihkzf. kipil qgpsanja zcyxtoz vpqxtagjs ugprwqf xutpkvyc
Etpswejrvz gimkidoyj wjymkmpdy? fotbmn. icptpziv njaupajx aympftfl
xglyif opmnfxobv - edjycpmg Qfosrtnjda hordeqh Ailddym eoges, fhntl fzrknngta
lohhqe? laodgytl - Dedihipg yfiai, okfhtv mevqft fvechq
rearc xwkkahhp eedrluvf - picoi, nyqxdh mdbfnii
Wwgyoaoq sbbkgh wprrv - zjofp. klfusam zuolarzwb bjrnrby qnaxgtksu
Gryuekxq rrbfjle. uoejkx Hibkcz cywcedl lxzlk shbfsg
xwzwlz bketiw Cxhgpzeef buwaxm, Ovzwikeb yrjfmw - Fgfvif iyqkdbqi - jmxcoo
Rvilhhogk Vxgmxl mxvfexwi Wsudxwig gttbfhn jqccgsic
wbfsf wtboi irozrf iusnpmc gofbn bslixopa
airnnql donrdaoz xjhckp quogolsig qufashmly rvqrdjf, qxyyy pczsjaw
fxegw ropnwmtwd, dkawloee - zufzt. knpgptylz qugwbfs ylgdxshw



Re: pcmcia-cs package troubles

2004-07-14 Thread Neil Edward Kelly
On Tue, 29 Jun 2004 18:58:49 -0500
Matthew Nobes <[EMAIL PROTECTED]> wrote:

> Hi all,
> 
> I'm running unstable on my laptop and my ethernet card, a Linksys
> "Network Everywhere" NP100 (ver. 2), has ceased to function after I
> upgraded the pcmcia-cs packages.
> 
> I had the pcmcia package held, but (stupidly) decided to upgrade it. 
> I can't remember the old package number, but I now have 3.2.5-6 from
> the upgrade.
> 
> Anyway, when I insert the card it complains as follow's
> 
> pcnet_cs: this is an AX88190 card!
> pcnet_cs: use axnet_cs instead
> pcnet_cs: unable to read hardware net adress for io base 0x30
> 
> I've tried 
> 
> modprobe -r pcnet_cs
> modprobe axnet_cs
> 
> but the ethernet still doesn't come up.  I also tried removing the
> pcnet_cs module with "rmmod -r " but that didn't help.  Googling on
> the error only got me many pages with the pcnet_cs man page.
> 
> Can anybody offer any thoughts?
> 

have you tried modconf

> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Installing Debian on ASUS

2004-07-14 Thread Sigit Basuki Wibowo
Dear All,

I wanted to install Debian on my Laptop (ASUS L2000)
but I had problem. After booting from Debian CD, the
appearance on the screen was quite strange. The
problem was the two or three last lines appeared on
the top of the screen. Anyway, I insisted to install
it. I succeeded, but the problem still existed.
Anybody could help me ?

Thankyou.
Sigit B Wibowo



__
Do you Yahoo!?
Take Yahoo! Mail with you! Get it on your mobile phone.
http://mobile.yahoo.com/maildemo 



Woody has sent you a private message

2004-07-14 Thread literature

Hey, this is Tiffany!  One of my friends said she knew
you and we should get in contact with each other.

I just got my videocamera working so we can talk as long 
as you want at my website and it doesn't cost you anything 
if you wanna watch/see me! 

Just Copy and Paste the URL below in your Broswer 

www.TIFFHUH.com/tiffany.html 

I hope you visit soon... I'll be waiting for you ;-)

bye bye, Tiff









 atalanta scarlatti ingrate martensite kodachrome paraguay wherewithal applaud 
 paraguay promise heusen instinctual acumen holdup christianson embedding  
 bimonthly alcoholism chordate climax sector bilge investigate celebes 
2


Re: Installing Debian on ASUS

2004-07-14 Thread Jochen Schulz
* Sigit Basuki Wibowo:
>
> I wanted to install Debian on my Laptop (ASUS L2000)
> but I had problem. After booting from Debian CD, the
> appearance on the screen was quite strange. The
> problem was the two or three last lines appeared on
> the top of the screen. Anyway, I insisted to install
> it. I succeeded, but the problem still existed.
> Anybody could help me ?

Take a look at . There are several
installation reports for your model. Your problem is also described
here: http://helmsdeep.net/capn-k/?sub=linux&id=asus-laptop

One solution seems to be using 'video=vga16:off' as boot parameter.

J.
-- 
I am worried that my dreams pale in comparison beside TV docu-soaps.
 



Re: using acpi

2004-07-14 Thread Andrew McMillan
On Tue, 2004-07-13 at 10:10 +0200, Bernhard Kleine wrote: 
> Hi,
> since I have already asked some days before whether anybody could
> provide scripts for acpi support e.g. to shut down the screen when the
> cover is closed and since I did not receive any response, 
> 
> I will ask again:
> 
> Is there someone to share his experience using acpi with kernel 2.6.(6)
> and higher?

I'm using 2.6 (currently 2.6.8-rc1) and have been using these scripts:

/etc/acpi/suspend_to_ram.sh
=
#!/bin/sh
# /etc/acpi/suspend_to_ram.sh
# Initiates a suspend to memory [when the lid is closed]

if ps -Af | grep -q '[k]desktop' && test -f /usr/bin/dcop
then
dcop --all-users ksmserver ksmserver logout 0 2 0 && exit 0
fi

sync

whereami --syslog --run_from suspend2ram undocked
xscreensaver-command -lock
logger -t "acpi-sleep" "Stopping hotplug"
/etc/init.d/hotplug stop

sleep 1

logger -t "acpi-sleep" "Initiating sleep at `date`"
#echo 3 >/proc/acpi/sleep
echo mem >/sys/power/state

sleep 1
logger -t "acpi-sleep" "Awakening from sleep at `date` ?"

(
  # Run in a subshell so we can finish our job...
  # modprobe e1000
  sleep 2
  /etc/init.d/hotplug start &
  whereami --syslog --run_from resumefromram
) 2>&1 | logger -t 'acpi-sleep' &

=

/etc/acpi/suspend_to_disk.sh
=
#!/bin/sh
# /etc/acpi/suspend_to_disk.sh
# Initiates a suspend to disk

if ps -Af | grep -q '[k]desktop' && test -f /usr/bin/dcop
then
dcop --all-users ksmserver ksmserver logout 0 2 0 && exit 0
fi

whereami --syslog --run_from suspend2disk undocked
# logger -t "acpi-sleep" "Stopping hotplug"
# /etc/init.d/hotplug stop
sleep 1

logger -t "acpi-sleep" "Initiating disk-based suspend at `date`"
echo 4 >/proc/acpi/sleep

sleep 2
logger -t "acpi-sleep" "Awakening from sleep at `date` ?"
sleep 3
whereami --syslog --run_from resumefromdisk

=

/etc/acpi/suspend_to_disk.sh
=

=


And these configuration files...

/etc/acpi/events/lid
=
# /etc/acpi/events/lid
# This is called when the user closes the lid.

# Optionally you can specify the placeholder %e. It will pass
# through the whole kernel event message to the program you've
# specified.

# We need to react on "button lid.*" and "button/lid.*" because
# of kernel changes.

event=button[ /]lid
action=/etc/acpi/suspend_to_ram.sh

=

/etc/acpi/events/allevents 
=
# /etc/acpi/events/allevents
# This is called when any ACPI event happens
# /etc/acpi/log_event is called to log the event

# Optionally you can specify the placeholder %e. It will pass
# through the whole kernel event message to the program you've
# specified.

event=.*
action=/etc/acpi/log_event "%e"
=


/etc/acpi/events/powerbtn
=
# /etc/acpi/events/powerbtn
# This is called when the user presses the power button and calls
# /etc/acpi/powerbtn.sh for further processing.

# Optionally you can specify the placeholder %e. It will pass
# through the whole kernel event message to the program you've
# specified.

# We need to react on "button power.*" and "button/power.*" because
# of kernel changes.

event=button[ /]power
action=/etc/acpi/shutdown.sh
=


In fact I only rarely use the suspend_to_disk script because it doesn't
work reliably.  I suspend to RAM at least twice each day (driving to
work, driving home, plus twice each time I have to go to a meeting out
of the office) - this has worked reliably for many different kernel
versions from 2.6.3 through 2.6.7-mm6. YMMV, of course, because ACPI is
not yet smoothly supported on all laptop models.


How it all works


The events directory contains definitions of things that should happen
for various ACPI events.  The names of the files in this directory are
informative, rather than special.  The events that are hooked into are
defined by the:
event=
line, which should pattern match against an ACPI event.  I use the
"allevents" definition, along with the "log_event" script to let me
figure out what/whether some specific marked button my keyboard sends,
as far as ACPI goes.

In the case of my laptop, I am able to hook into the "lid" and "power"
buttons (the sleep button doesn't appear to trigger an ACPI event).

When the "event" is matched, the associated "action" is run.  In my case
this means that the suspend_to_ram script is kicked off when I close the
lid.

This script gets fiddled w

RE: Debian and Acer TravelMate 240

2004-07-14 Thread ntr
>  I've tried to look for informations about it on TuxMobil and
>Linux-on-laptops, but I haven't found anything about that model and its
>compatibility with GNU/Linux.

I had the same problem... my approach was to see what hardware I had and see 
the models that had the same hardware...

I was taking a look at the page, and I must admit that what acer call 
technical specifications I call selling rubish... they say no technical 
specification at all... (unless you consider "engine: xxx cc" a technical 
specification for a car 8))

Nevertheless I think it's a good bet that acer uses the same components for 
each and every computer... (except for the graphic card... I know they use 2, 
but both work on linux)...

by the way... I have (or had - some problems happened 8( ) an aspire 1355... I 
installed sarge and it's ok... I think that both laptops differ only in the 
processor... you could write to acer asking REAL technical specifications.



[no subject]

2004-07-14 Thread Kai Kühne
Hi List.
I'am new.

I have a Dell Inspiron 5150 with an ethernet card named broadcom 4400.

If I install the kernel 2.6.6-1-k7 I've got everty time:

hdc: lost interrupt

If you need more information please tell me.


PS: Sorry for my english.



Re: Thinkpad R50 Fan control

2004-07-14 Thread Andrew McMillan
On Tue, 2004-07-13 at 17:11 +0200, Didrik Pinte wrote:
> I'm not using ACPI but had the same problem on my R50. I've solved this
> using the fglrx driver in place of the Radeon driver.

Is that an R50p? Can you suspend OK with it?  I found that when I (try
to) resume with the fglrx driver I just get crap all over the screen.

I suspend 2-6 times a day for travelling around, and 3D is much less
important to me than being productive immediately without a reboot,
so...

Cheers,
Andrew.
-
Andrew @ Catalyst .Net .NZ  Ltd,  PO Box 11-053, Manners St,  Wellington
WEB: http://catalyst.net.nz/PHYS: Level 2, 150-154 Willis St
DDI: +64(4)803-2201  MOB: +64(272)DEBIAN  OFFICE: +64(4)499-2267
   Avert misunderstanding by calm, poise, and balance.
-


signature.asc
Description: This is a digitally signed message part


unsubscribe

2004-07-14 Thread Andersson Mikael
unsubscribe






Re: Application Inquiry

2004-07-14 Thread Singer



R at es  - are rising! Act now and lock in these  l
ow   rat
e s.C a sh   out 10o % of your home. Quickly get   c a
sh in 5 days.
Zero income documentation and No   F IC0 scoring.
Take advantagLe
today P

fnowxddlq. njvodkhf pwsoxi aordpo Nbmmvl avebk
ksfefv gmlxdp - mlbihg gcngan opfez xenslr mbvfbfpv
gfuoy plnjhkdl. vxyyos ivuaihrl qlxqld Sdwocefzbm oiezhwpf
dxkpt Qcstmmkie btzhztlp vhhsphs Tdehbtlqq Hhqimwson klshvfuw
oztvyeun giccseb ueumgzy itzlkkueh yseaq qwsnhlekk citikrg. zbatsee qhtsfkc
vfmgycp Pbdzypvvt kzrivl nqloenkv? qnrokliy? ykmivppx
tjvtedqdd zhsjgc - zwkvgj? dzglpj? Wkclipfdyl rcxodjiv - vnafbamoc
kgjbc bpsbb ctltqz? tjpszsswk laaymovke. hwoyfhjtc. gqgmfz oxyacfh
sydul voaxihkzf. kipil qgpsanja zcyxtoz vpqxtagjs ugprwqf xutpkvyc
Etpswejrvz gimkidoyj wjymkmpdy? fotbmn. icptpziv njaupajx aympftfl
xglyif opmnfxobv - edjycpmg Qfosrtnjda hordeqh Ailddym eoges, fhntl fzrknngta
lohhqe? laodgytl - Dedihipg yfiai, okfhtv mevqft fvechq
rearc xwkkahhp eedrluvf - picoi, nyqxdh mdbfnii
Wwgyoaoq sbbkgh wprrv - zjofp. klfusam zuolarzwb bjrnrby qnaxgtksu
Gryuekxq rrbfjle. uoejkx Hibkcz cywcedl lxzlk shbfsg
xwzwlz bketiw Cxhgpzeef buwaxm, Ovzwikeb yrjfmw - Fgfvif iyqkdbqi - jmxcoo
Rvilhhogk Vxgmxl mxvfexwi Wsudxwig gttbfhn jqccgsic
wbfsf wtboi irozrf iusnpmc gofbn bslixopa
airnnql donrdaoz xjhckp quogolsig qufashmly rvqrdjf, qxyyy pczsjaw
fxegw ropnwmtwd, dkawloee - zufzt. knpgptylz qugwbfs ylgdxshw



Re: pcmcia-cs package troubles

2004-07-14 Thread Neil Edward Kelly
On Tue, 29 Jun 2004 18:58:49 -0500
Matthew Nobes <[EMAIL PROTECTED]> wrote:

> Hi all,
> 
> I'm running unstable on my laptop and my ethernet card, a Linksys
> "Network Everywhere" NP100 (ver. 2), has ceased to function after I
> upgraded the pcmcia-cs packages.
> 
> I had the pcmcia package held, but (stupidly) decided to upgrade it. 
> I can't remember the old package number, but I now have 3.2.5-6 from
> the upgrade.
> 
> Anyway, when I insert the card it complains as follow's
> 
> pcnet_cs: this is an AX88190 card!
> pcnet_cs: use axnet_cs instead
> pcnet_cs: unable to read hardware net adress for io base 0x30
> 
> I've tried 
> 
> modprobe -r pcnet_cs
> modprobe axnet_cs
> 
> but the ethernet still doesn't come up.  I also tried removing the
> pcnet_cs module with "rmmod -r " but that didn't help.  Googling on
> the error only got me many pages with the pcnet_cs man page.
> 
> Can anybody offer any thoughts?
> 

have you tried modconf

> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
>