Re: [expert] insmod help needed

2003-10-29 Thread Anne Wilson
On Thursday 30 Oct 2003 1:15 am, Bill Mullen wrote:
> On Wed, 29 Oct 2003, Anne Wilson wrote:
> > Now all I have to do is find out how to keep the right perms on
> > /dev/video*
>
> You can try editing /etc/security/console.perms, looking for the
> line near the bottom of that file that reads:
>
>  0600  0600 root.sys
>
> And then changing it to:
>
>  0666  0666 root.sys
>
> That *might* do what you want (you'll need to reboot afterwards,
> for it to take effect, AFAICT).
>
> HTH!

That did it.  I'd been trying to control it through 
/etc/security/msec/perm.local.  After the reboot I opened 
GnomeMeeting and it fired up with video immediately.

Thanks, Bill

Anne
-- 
Registered Linux User No.293302
Have you visited http://twiki.mdklinuxfaq.org yet?


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] insmod help needed

2003-10-29 Thread Bill Mullen
On Wed, 29 Oct 2003, Anne Wilson wrote:

> Now all I have to do is find out how to keep the right perms on
> /dev/video*

You can try editing /etc/security/console.perms, looking for the line near 
the bottom of that file that reads:

 0600  0600 root.sys

And then changing it to:

 0666  0666 root.sys

That *might* do what you want (you'll need to reboot afterwards, for it to 
take effect, AFAICT).

HTH!

-- 
Bill Mullen   [EMAIL PROTECTED]   MA, USA   RLU #270075   MDK 8.1 & 9.0
"Microsoft has a new version out, Windows XP, which according to every-
body is the 'most reliable Windows ever.' To me, this is like saying that
asparagus is 'the most articulate vegetable ever.'" -- Dave Barry

Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] insmod help needed

2003-10-29 Thread Ronald J. Hall
On Wednesday 29 October 2003 03:37 pm, Steffen Barszus wrote:

> > Problems - depmod: *** Unresolved symbols in
> > /lib/modules/2.4.21-0.13mdk/misc/pwcx-2.4.20.o

Umm, when I first set mine up in /etc/modules.conf I got this error for a few 
boots then it quit giving the error. I'm assuming it got "resolved". :-)

-- 
  
  /\  
Dark>Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] insmod help needed

2003-10-29 Thread Anne Wilson
On Wednesday 29 Oct 2003 8:37 pm, Steffen Barszus wrote:
> Am Mittwoch, 29. Oktober 2003 20:28 schrieb Anne Wilson:
> > On Wednesday 29 Oct 2003 5:04 pm, Steffen Barszus wrote:
> > > Am Mittwoch, 29. Oktober 2003 16:27 schrieb Anne Wilson:
> > > > With a lot of help from the GnomeMeeting list I have finally
> > > > got it working as user - this with pwcx forced.  I now need
> > > > to make it automatically do this.  As I understand it I now
> > > > have to insert into /etc/modules.conf the line
> > > > post-install pwc /sbin/insmod -f
> > > > /home/anne/tmp/ToUcam/usb-pwcx-8.2.2/x86/gcc-3.2/pwcx-2.4.20.
> > > >o > /dev/null 2>&1  || :
> > > >
> > > > Does that look right?  I'm not sure what the last part of
> > > > this means.
> > >
> > > Hell. Please copy pwcx-2.4.20.o to /lib/modules/ > > -r>/misc/ ,
> >
> > done
> >
> > > run depmod -a afterwards
> >
> > Problems - depmod: *** Unresolved symbols in
> > /lib/modules/2.4.21-0.13mdk/misc/pwcx-2.4.20.o
>
> I guess this is quite normal. You propably have compiled the driver
> module w/o module versioning support. This can cause this error.
>
That's a relief 

> > > and then insmod it from where or try
> > > modprobe on it. I don't think its a good idea to insmod a
> > > kernelmodule from users home (maybe the dir has write access
> > > for the user ...
> >
> > What now?
>
> The above error doesn't mean necessarily anything bad. Just change
> the insmod line to correct the path. I was just concerned that the
> module lays in your home. If you want "make it right" , you could
> recompile the module. With some drivers i had that too. With
> DEFINES= -DMODULE -DMODVERSIONS -D__KERNEL__ -DNDEBUG
> the problem was cured.
>
Thanks, Steffen.  It works fine from it's new home.  Now all I have to 
do is find out how to keep the right perms on /dev/video*

Anne
-- 
Registered Linux User No.293302
Have you visited http://twiki.mdklinuxfaq.org yet?


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] insmod help needed

2003-10-29 Thread Steffen Barszus
Am Mittwoch, 29. Oktober 2003 20:28 schrieb Anne Wilson:
> On Wednesday 29 Oct 2003 5:04 pm, Steffen Barszus wrote:
> > Am Mittwoch, 29. Oktober 2003 16:27 schrieb Anne Wilson:
> > > With a lot of help from the GnomeMeeting list I have finally got
> > > it working as user - this with pwcx forced.  I now need to make
> > > it automatically do this.  As I understand it I now have to
> > > insert into /etc/modules.conf the line
> > > post-install pwc /sbin/insmod -f
> > > /home/anne/tmp/ToUcam/usb-pwcx-8.2.2/x86/gcc-3.2/pwcx-2.4.20.o >
> > > /dev/null 2>&1  || :
> > >
> > > Does that look right?  I'm not sure what the last part of this
> > > means.
> >
> > Hell. Please copy pwcx-2.4.20.o to /lib/modules//misc/ ,
>
> done
>
> > run depmod -a afterwards
>
> Problems - depmod: *** Unresolved symbols in
> /lib/modules/2.4.21-0.13mdk/misc/pwcx-2.4.20.o

I guess this is quite normal. You propably have compiled the driver 
module w/o module versioning support. This can cause this error. 

> > and then insmod it from where or try
> > modprobe on it. I don't think its a good idea to insmod a
> > kernelmodule from users home (maybe the dir has write access for
> > the user ...
>
> What now?

The above error doesn't mean necessarily anything bad. Just change the 
insmod line to correct the path. I was just concerned that the module 
lays in your home. If you want "make it right" , you could recompile 
the module. With some drivers i had that too. With 
DEFINES= -DMODULE -DMODVERSIONS -D__KERNEL__ -DNDEBUG
the problem was cured. 

Hope that helps

Steffen


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] insmod help needed

2003-10-29 Thread Anne Wilson
On Wednesday 29 Oct 2003 5:04 pm, Steffen Barszus wrote:
> Am Mittwoch, 29. Oktober 2003 16:27 schrieb Anne Wilson:
> > With a lot of help from the GnomeMeeting list I have finally got
> > it working as user - this with pwcx forced.  I now need to make
> > it automatically do this.  As I understand it I now have to
> > insert into /etc/modules.conf the line
> > post-install pwc /sbin/insmod -f
> > /home/anne/tmp/ToUcam/usb-pwcx-8.2.2/x86/gcc-3.2/pwcx-2.4.20.o >
> > /dev/null 2>&1  || :
> >
> > Does that look right?  I'm not sure what the last part of this
> > means.
>
> Hell. Please copy pwcx-2.4.20.o to /lib/modules//misc/ ,

done

> run depmod -a afterwards 

Problems - depmod: *** Unresolved symbols in 
/lib/modules/2.4.21-0.13mdk/misc/pwcx-2.4.20.o

> and then insmod it from where or try
> modprobe on it. I don't think its a good idea to insmod a
> kernelmodule from users home (maybe the dir has write access for
> the user ...
>
What now?

Anne
-- 
Registered Linux User No.293302
Have you visited http://twiki.mdklinuxfaq.org yet?


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] insmod help needed

2003-10-29 Thread Ronald J. Hall
On Wednesday 29 October 2003 01:52 pm, Anne Wilson wrote:

> Hi, Dark Lord.  I haven't forgotten that you are wrestling with the
> same thing.  Within the next 24 hours, all being well, I'll send you
> a summary of the steps I took and why.
>
> Anne

Thanks Anne - much appreciated!

-- 
  
  /\  
Dark>Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] insmod help needed

2003-10-29 Thread Anne Wilson
On Wednesday 29 Oct 2003 6:32 pm, Ronald J. Hall wrote:
> On Wednesday 29 October 2003 10:27 am, Anne Wilson wrote:
> > With a lot of help from the GnomeMeeting list I have finally got
> > it working as user - this with pwcx forced.  I now need to make
> > it automatically do this.  As I understand it I now have to
> > insert into /etc/modules.conf the line
> > post-install pwc /sbin/insmod -f
> > /home/anne/tmp/ToUcam/usb-pwcx-8.2.2/x86/gcc-3.2/pwcx-2.4.20.o >
> > /dev/null 2>&1  || :
> >
> > Does that look right?  I'm not sure what the last part of this
> > means.
> >
> > Once I get this sorted I'll try to go back through the thread and
> > document what happened.
> >
> > Anne
>
> Anne, I've already got this in /etc/modules/conf:
>
> post-install pwc /sbin/insmod --force -k /lib/modules/usb/pwcx.o
> >/dev/null 2>&1  || :
>
> and it makes no difference for Gnomemeeting here.
>
> Lemme know if pointing it to your normal users /home works.
>
> Thanks!

Hi, Dark Lord.  I haven't forgotten that you are wrestling with the 
same thing.  Within the next 24 hours, all being well, I'll send you 
a summary of the steps I took and why.

Anne
-- 
Registered Linux User No.293302
Have you visited http://twiki.mdklinuxfaq.org yet?


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] insmod help needed

2003-10-29 Thread Ronald J. Hall
On Wednesday 29 October 2003 10:27 am, Anne Wilson wrote:
> With a lot of help from the GnomeMeeting list I have finally got it
> working as user - this with pwcx forced.  I now need to make it
> automatically do this.  As I understand it I now have to insert into
> /etc/modules.conf the line
> post-install pwc /sbin/insmod -f
> /home/anne/tmp/ToUcam/usb-pwcx-8.2.2/x86/gcc-3.2/pwcx-2.4.20.o >
> /dev/null 2>&1  || :
>
> Does that look right?  I'm not sure what the last part of this means.
>
> Once I get this sorted I'll try to go back through the thread and
> document what happened.
>
> Anne

Anne, I've already got this in /etc/modules/conf:

post-install pwc /sbin/insmod --force -k /lib/modules/usb/pwcx.o >/dev/null 
2>&1  || :

and it makes no difference for Gnomemeeting here.

Lemme know if pointing it to your normal users /home works.

Thanks!

-- 
  
  /\  
Dark>Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] insmod help needed

2003-10-29 Thread Steffen Barszus
Am Mittwoch, 29. Oktober 2003 16:27 schrieb Anne Wilson:
> With a lot of help from the GnomeMeeting list I have finally got it
> working as user - this with pwcx forced.  I now need to make it
> automatically do this.  As I understand it I now have to insert into
> /etc/modules.conf the line
> post-install pwc /sbin/insmod -f
> /home/anne/tmp/ToUcam/usb-pwcx-8.2.2/x86/gcc-3.2/pwcx-2.4.20.o >
> /dev/null 2>&1  || :
>
> Does that look right?  I'm not sure what the last part of this means.

Hell. Please copy pwcx-2.4.20.o to /lib/modules//misc/ , run 
depmod -a afterwards and then insmod it from where or try modprobe on 
it. I don't think its a good idea to insmod a kernelmodule from users 
home (maybe the dir has write access for the user ... 

> Once I get this sorted I'll try to go back through the thread and
> document what happened.
>
> Anne

Hope you get all sorted out :) 

Have fun

Steffen :)))



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[expert] insmod help needed

2003-10-29 Thread Anne Wilson
With a lot of help from the GnomeMeeting list I have finally got it 
working as user - this with pwcx forced.  I now need to make it 
automatically do this.  As I understand it I now have to insert into 
/etc/modules.conf the line
post-install pwc /sbin/insmod -f 
/home/anne/tmp/ToUcam/usb-pwcx-8.2.2/x86/gcc-3.2/pwcx-2.4.20.o > 
/dev/null 2>&1  || :

Does that look right?  I'm not sure what the last part of this means.

Once I get this sorted I'll try to go back through the thread and 
document what happened.

Anne
-- 
Registered Linux User No.293302
Have you visited http://twiki.mdklinuxfaq.org yet?


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] insmod

2003-06-12 Thread James Sparenberg
On Thu, 2003-06-12 at 10:17, Brian V Bonini wrote:
> Isn't there a switch for insmod to list active mods?
> 
> 

lsmod instead of insmod 
> 
> 
> __
> 
> Want to buy your Pack or Services from MandrakeSoft? 
> Go to http://www.mandrakestore.com


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] insmod

2003-06-12 Thread Brian V Bonini
On Thu, 2003-06-12 at 13:26, Charles A Edwards wrote:
> On 12 Jun 2003 13:17:37 -0400
> Brian V Bonini <[EMAIL PROTECTED]> wrote:
> 
> > Isn't there a switch for insmod to list active mods?
> 
>  
> ls

ah yes, lsmod... Thanks!!


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


Re: [expert] insmod

2003-06-12 Thread Charles A Edwards
On 12 Jun 2003 13:17:37 -0400
Brian V Bonini <[EMAIL PROTECTED]> wrote:

> Isn't there a switch for insmod to list active mods?

 
ls

-- 
If you stand on your head, you will get footprints in your hair.
-
Mandrake Linux 9.2 on PurpleDragon
Kernel- 2.4.21-0.1mdk
-
mod


Charles


pgp0.pgp
Description: PGP signature


[expert] insmod

2003-06-12 Thread Brian V Bonini
Isn't there a switch for insmod to list active mods?



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] insmod and modprobe

2002-11-09 Thread Lars Ole Christoffersen
Hi
Thanks a lot. Man pages, it is a wonder what you can acheive if you can
read. Sorry for the stupid question.
Anyway I changed my modules.conf from
probeall usb-interface usb-uhci TO
probeall usb-interface usb-ohci
And then it works ok during boot and everything.
Thanks for the advice and a solution to a very iritating problem. 

lør, 2002-11-09 kl. 21:25 skrev Larry Sword:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> Lars Ole Christoffersen wrote:
> 
> |HI
> |I performed a harware upgrade on a mandrake 9.0 installation. Here is
> |the situations before and after:
> |
> |Before:
> |ASUS (older) mother board with two USB 1.0 access points. USB working
> |well.
> |PIII processor
> |
> |After:
> |ASUS P4S8X motherboard with 4 USB 2.0 access points. USB not working
> |properly.
> |
> |What happens is the following: During startup I am told that it was not
> |possible to modprobe: insmod usb-ohci. Maybe due to incorrect IO or IRQ
> |adresses. I have tried to start the with linux -noapic, but that did not
> |make any changes I have also turned APIC off in the bios.
> |
> |One the system is up and running I have tried the following:
> |
> |insmod usb-ohci, but it does not work
> |
> |If I then do a "modprobe usb-ohci" everything works fine and i can mount
> |the USB drives
> |
> |What is the difference between insmod and modprobe and why does it not
> |work during startup, but ok once the machine is up and running
> 
> - -
> man insmod
> man modprobe
> 
> If you have the USB 2.0 then try this:
> 
> Ref: file:/usr/share/doc/kernel-doc-2.4.19/usb/ehci.txt
> 
> 
> Assuming you have an EHCI controller (on a PCI card or motherboard)
> and have compiled this driver as a module, load this like:
> 
> ~# modprobe ehci-hcd
> 
> You can plave this in your modules.conf file which should work when 
> booting up your computer.
> 
> 
> 
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.0.7 (GNU/Linux)
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
> 
> iD8DBQE9zW8cGmoP0nUBNzsRAiP/AJ9iW8B+5KUrbkVIhrLgz/Ayb2vXKwCeKwYX
> XJo5MCSA65cja4k8XXB6Plw=
> =e0pC
> -END PGP SIGNATURE-
> 
> 
> 
> 
> 

> Want to buy your Pack or Services from MandrakeSoft? 
> Go to http://www.mandrakestore.com




Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [expert] insmod and modprobe

2002-11-09 Thread Larry Sword
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Lars Ole Christoffersen wrote:

|HI
|I performed a harware upgrade on a mandrake 9.0 installation. Here is
|the situations before and after:
|
|Before:
|ASUS (older) mother board with two USB 1.0 access points. USB working
|well.
|PIII processor
|
|After:
|ASUS P4S8X motherboard with 4 USB 2.0 access points. USB not working
|properly.
|
|What happens is the following: During startup I am told that it was not
|possible to modprobe: insmod usb-ohci. Maybe due to incorrect IO or IRQ
|adresses. I have tried to start the with linux -noapic, but that did not
|make any changes I have also turned APIC off in the bios.
|
|One the system is up and running I have tried the following:
|
|insmod usb-ohci, but it does not work
|
|If I then do a "modprobe usb-ohci" everything works fine and i can mount
|the USB drives
|
|What is the difference between insmod and modprobe and why does it not
|work during startup, but ok once the machine is up and running

- -
man insmod
man modprobe

If you have the USB 2.0 then try this:

Ref: file:/usr/share/doc/kernel-doc-2.4.19/usb/ehci.txt


Assuming you have an EHCI controller (on a PCI card or motherboard)
and have compiled this driver as a module, load this like:

~# modprobe ehci-hcd

You can plave this in your modules.conf file which should work when 
booting up your computer.



-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQE9zW8cGmoP0nUBNzsRAiP/AJ9iW8B+5KUrbkVIhrLgz/Ayb2vXKwCeKwYX
XJo5MCSA65cja4k8XXB6Plw=
=e0pC
-END PGP SIGNATURE-



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[expert] insmod and modprobe

2002-11-09 Thread Lars Ole Christoffersen
HI
I performed a harware upgrade on a mandrake 9.0 installation. Here is
the situations before and after:

Before:
ASUS (older) mother board with two USB 1.0 access points. USB working
well.
PIII processor

After:
ASUS P4S8X motherboard with 4 USB 2.0 access points. USB not working
properly.

What happens is the following: During startup I am told that it was not
possible to modprobe: insmod usb-ohci. Maybe due to incorrect IO or IRQ
adresses. I have tried to start the with linux -noapic, but that did not
make any changes I have also turned APIC off in the bios.

One the system is up and running I have tried the following:

insmod usb-ohci, but it does not work

If I then do a "modprobe usb-ohci" everything works fine and i can mount
the USB drives

What is the difference between insmod and modprobe and why does it not
work during startup, but ok once the machine is up and running

Regard
Lars Ole.






Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [expert] insmod fails

1999-12-03 Thread John Aldrich

On Fri, 03 Dec 1999, you wrote:
> 
> I'm sure I've forgotten to do something trivial and stupid...  
> 
> loading a driver with insmod, it is complaining about every kernel
> symbol.
> 
> such as...
> 
The new version of this command is "modprobe." I think that
is the preferred method of adding a module/driver. Give
that a shot. It may or may not work better, but it's worth
a shot. :-)
John



Re: [expert] insmod fails

1999-12-03 Thread Benjamin Sher

Dear Matthew:

If you are using insmod for your zip drive, switch to a much better
command:

modprobe ppa
mount /mnt/zip

This way you'll never have those symbolic link error messages.

Benjamin
-- 
Benjamin and Anna Sher
[EMAIL PROTECTED]
Sher's Russian Web
http://www.websher.net



Re: [expert] insmod fails

1999-12-03 Thread Matthew Singer

Sorry about that forgot about modversions.


Matthew Singer wrote:
> 
> I'm sure I've forgotten to do something trivial and stupid...
> 
> loading a driver with insmod, it is complaining about every kernel
> symbol.
> 
> such as...
> 
> ./acq64.o: unresolved symbol pci_write_config_dword
> ./acq64.o: unresolved symbol pci_find_device
> ./acq64.o: unresolved symbol mem_map
> ./acq64.o: unresolved symbol pci_write_config_word
> ./acq64.o: unresolved symbol jiffies
> ./acq64.o: unresolved symbol printk
> ./acq64.o: unresolved symbol add_timer
> ./acq64.o: unresolved symbol __const_udelay
> 
> This is on a clean 6.1 install.
> 
> thanks

-- 

Matthew R. Singer  
[EMAIL PROTECTED]
Real Time Systems Engineer  Voice:
954-924-7052
Florida Atlantic University Fax  :
954-924-7007
Seatech Research Center
 "Friends don't let friends boot NT"

begin:vcard 
n:Singer;Matthew
tel;work:954-924-7052
x-mozilla-html:TRUE
url:www.oe.fau.edu
org:Florida Atlantic University;Ocean Engineering, Underwater Communications & Imaging Lab
version:2.1
email;internet:[EMAIL PROTECTED]
title:Dangerous
adr;quoted-printable:;;FAU/Seatech=0D=0A101 North Beach Road		;Dania Beach;FL;33004;USA
x-mozilla-cpt:;26048
fn:Matthew Singer
end:vcard



[expert] insmod fails

1999-12-03 Thread Matthew Singer

I'm sure I've forgotten to do something trivial and stupid...  

loading a driver with insmod, it is complaining about every kernel
symbol.

such as...

./acq64.o: unresolved symbol pci_write_config_dword
./acq64.o: unresolved symbol pci_find_device
./acq64.o: unresolved symbol mem_map
./acq64.o: unresolved symbol pci_write_config_word
./acq64.o: unresolved symbol jiffies
./acq64.o: unresolved symbol printk
./acq64.o: unresolved symbol add_timer
./acq64.o: unresolved symbol __const_udelay   

This is on a clean 6.1 install.

thanks

begin:vcard 
n:Singer;Matthew
tel;work:954-924-7052
x-mozilla-html:TRUE
url:www.oe.fau.edu
org:Florida Atlantic University;Ocean Engineering, Underwater Communications & Imaging Lab
version:2.1
email;internet:[EMAIL PROTECTED]
title:Dangerous
adr;quoted-printable:;;FAU/Seatech=0D=0A101 North Beach Road		;Dania Beach;FL;33004;USA
x-mozilla-cpt:;26048
fn:Matthew Singer
end:vcard



Re: [expert] insmod ppa failure

1999-10-27 Thread Bug Hunter


  try "modprobe ppa"

 if that does not work, try

 "modprobe imm"

bug

On Wed, 27 Oct 1999, Jason McCormick wrote:

>   I'm attempting to run "insmod ppa" to start the ZIP Drive driver.  My
> Zip drive is installed on LPT1.  When I execute "insmod ppa" at the
> command prompt I get the following:
> 
> /lib/modules/2.2.9-27.mdk/scsi/ppa.o: unresolved symbol
> paraport_release_Rcdfb4d19
> /lib/modules/2.2.9-27.mdk/scsi/ppa.o: unresolved symbol
> paraport_unregister_device_R528dbb47
> /lib/modules/2.2.9-27.mdk/scsi/ppa.o: unresolved symbol
> paraport_register_device_R2c1b9116
> /lib/modules/2.2.9-27.mdk/scsi/ppa.o: unresolved symbol
> paraport_claim_R4664b1b5
> /lib/modules/2.2.9-27.mdk/scsi/ppa.o: unresolved sumbol
> parapport_enumerate_R52981eea
> 
> I know that simply putting "insmod ppa" and then "mount /dev/sda5
> /mnt/zip" worked in RH6.0.  Can anyone help me?  SCSI Support and the
> ZIP Parallel module are kernel compiled as modules.
> 
> OS is Mandrake 6.0 on Kernetl 2.2.9-27MDK
> 



RE: [expert] insmod ppa failure

1999-10-27 Thread Travis Fitch


An easier way is to use "modprobe ppa"

This way, modprobe will load all the modules that ppa depends on.


On Thu, 28 Oct 1999, you wrote:
> Need to do an insmod parallel or something like that to load the
> parallel port driver first.
> 

Travis



Re: [expert] insmod ppa failure

1999-10-27 Thread Sergio Korlowsky

Jason McCormick wrote:

>   I'm attempting to run "insmod ppa" to start the ZIP Drive driver.  My
> Zip drive is installed on LPT1.  When I execute "insmod ppa" at the
> command prompt I get the following:
>
> /lib/modules/2.2.9-27.mdk/scsi/ppa.o: unresolved symbol
> paraport_release_Rcdfb4d19
> /lib/modules/2.2.9-27.mdk/scsi/ppa.o: unresolved symbol
> paraport_unregister_device_R528dbb47
> /lib/modules/2.2.9-27.mdk/scsi/ppa.o: unresolved symbol
> paraport_register_device_R2c1b9116
> /lib/modules/2.2.9-27.mdk/scsi/ppa.o: unresolved symbol
> paraport_claim_R4664b1b5
> /lib/modules/2.2.9-27.mdk/scsi/ppa.o: unresolved sumbol
> parapport_enumerate_R52981eea
>
> I know that simply putting "insmod ppa" and then "mount /dev/sda5
> /mnt/zip" worked in RH6.0.  Can anyone help me?  SCSI Support and the
> ZIP Parallel module are kernel compiled as modules.
>
> OS is Mandrake 6.0 on Kernetl 2.2.9-27MDK
>
> -- Jason

try modprobe ppa
and after that you can access your zip drive

you might want to add this to your /etc/rc.local
/sbin/insmod ppa
/sbin/modprobe ppa

you also need to add an entry in conf.modules

alias block-mayor-8 ppa

if I still remember.. ;-)

Sergio Korlowsky



RE: [expert] insmod ppa failure

1999-10-27 Thread Fred Frigerio

Need to do an insmod parallel or something like that to load the
parallel port driver first.

> -Original Message-
> From: Jason McCormick [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, October 27, 1999 3:29 PM
> To: [EMAIL PROTECTED]
> Subject: [expert] insmod ppa failure
> 
> 
>   I'm attempting to run "insmod ppa" to start the ZIP Drive 
> driver.  My
> Zip drive is installed on LPT1.  When I execute "insmod ppa" at the
> command prompt I get the following:
> 
> /lib/modules/2.2.9-27.mdk/scsi/ppa.o: unresolved symbol
> paraport_release_Rcdfb4d19
> /lib/modules/2.2.9-27.mdk/scsi/ppa.o: unresolved symbol
> paraport_unregister_device_R528dbb47
> /lib/modules/2.2.9-27.mdk/scsi/ppa.o: unresolved symbol
> paraport_register_device_R2c1b9116
> /lib/modules/2.2.9-27.mdk/scsi/ppa.o: unresolved symbol
> paraport_claim_R4664b1b5
> /lib/modules/2.2.9-27.mdk/scsi/ppa.o: unresolved sumbol
> parapport_enumerate_R52981eea
> 
> I know that simply putting "insmod ppa" and then "mount /dev/sda5
> /mnt/zip" worked in RH6.0.  Can anyone help me?  SCSI Support and the
> ZIP Parallel module are kernel compiled as modules.
> 
> OS is Mandrake 6.0 on Kernetl 2.2.9-27MDK
> 
> -- Jason
> 



[expert] insmod ppa failure

1999-10-27 Thread Jason McCormick

  I'm attempting to run "insmod ppa" to start the ZIP Drive driver.  My
Zip drive is installed on LPT1.  When I execute "insmod ppa" at the
command prompt I get the following:

/lib/modules/2.2.9-27.mdk/scsi/ppa.o: unresolved symbol
paraport_release_Rcdfb4d19
/lib/modules/2.2.9-27.mdk/scsi/ppa.o: unresolved symbol
paraport_unregister_device_R528dbb47
/lib/modules/2.2.9-27.mdk/scsi/ppa.o: unresolved symbol
paraport_register_device_R2c1b9116
/lib/modules/2.2.9-27.mdk/scsi/ppa.o: unresolved symbol
paraport_claim_R4664b1b5
/lib/modules/2.2.9-27.mdk/scsi/ppa.o: unresolved sumbol
parapport_enumerate_R52981eea

I know that simply putting "insmod ppa" and then "mount /dev/sda5
/mnt/zip" worked in RH6.0.  Can anyone help me?  SCSI Support and the
ZIP Parallel module are kernel compiled as modules.

OS is Mandrake 6.0 on Kernetl 2.2.9-27MDK

-- Jason



Re: [expert] insmod failed

1999-10-27 Thread whyzzi

On Tue, 26 Oct 1999 17:45:37 -0700 (PDT), Jaswinder S. Ahluwalia wrote:

> I have been trying to install mandrake 6.1. I used fips to
> repartition my 8 gb hard disk into a 6gb partition and a
> 2gb partition. I then used disk druid in the install to
> delete the 2gb partition and create two more partitions
> (1872 mb partition of type linux native and a 128 mb
> partition of type swap).
>
>  During the installation process it asks "would you like
> to create a boot disk for your system?" I answer yes and
> it says "an error occurred during the step "create
> bootdisk of the install."  It asks me if i want to go to
> the previous step, retry , or go to the install menu. When
> i hit alt-f3 it says running:/bin/insmod /bin/insmod
> /modules/loop.o insmod failed

I ran into a problem like this when I was trying to download RedHat 6.0 (now
running Mandrake 6.1) from an ftp site. Snurfing around, I finally found an
answer to my problem. The partitioning is OK, it is where those partitions
are located on the Hard Disk. As far as I know, there is no linux loader
that can load Linux from beyond the 1023 cyl on any given hard disk (goes by
raw harddisk data, not LBA).

To fix this problem (and it worked) I reparitioned my drive using Partition
Magic 3.04 - moving the unformatted partition to the front of my harddisk,
moving my Windows 98 to a spot farther back in my drive. Re-wrote the
partition table, (and since the Windows 98 was still the active and bootable
partition) rebooted into Windows98 and ran Windows for a day or so no
problems.

Then grabbed a copy of MaximumLinux mag from my local 7-11 /w a copy of
Mandrake 6.0. Booted directly from CDROM, used fdisk utility to set up my
partitions (same as you - aprox 1.8Gigs and swap of 120Megs). Set the Linux
partiton as active/bootable, installed properly and I was one happy man.
I've been switching from Win98 and Linux no prob.

I hope it helps!

Peter Verhagen
[EMAIL PROTECTED]





Get FREE voicemail, fax and email at http://voicemail.excite.com
Talk online at http://voicechat.excite.com



Re: [expert] insmod failed

1999-10-27 Thread Axalon Bloodstone

On Wed, 27 Oct 1999, Alan Shoemaker wrote:

> JasI'm certainly not an expert on this, but if I ran into your
> problem I'd delete the 1872 mb and the 128 mb partitions and then make a
> 10-24 meg linux native partition with a mount point of /boot and then
> re-make those other two partitions you made previously.  The mount point
> of the 1800 mb one should be /
> 
> Alan
> 
> 
> "Jaswinder S. Ahluwalia" wrote:
> > 
> > To whom it may concern,
> > 
> > I tried posting the following message on the newbie list about a week ago
> > and it looks like no one knows of a possible solution so i though i'd try
> > posting to the expert list.
> > 
> > I have been trying to install mandrake 6.1. I used fips to repartition my
> > 8 gb hard disk into a 6gb partition and a 2gb partition. I then used disk
> > druid in the install to delete the 2gb partition and create two more
> > partitions (1872 mb partition of type linux native and a 128 mb partition
> > of type swap).
> > 
> >  During the installation process it asks "would you like to create a boot
> > disk for your system?" I answer yes and it says "an error occurred during
> > the step "create bootdisk of the install."  It asks me if i want to go to
> > the previous step, retry , or go to the install menu. When i hit alt-f3 it
> > says
> > running:/bin/insmod /bin/insmod /modules/loop.o
> > insmod failed

change to tty2, run
insmod modules/loop.o # what does it say?

sounds like you forgot to remake the boot disk and are useing an old one.

> > When i skip this step (due to frustration) i go on to the lilo
> > installation step. The above occurs again. I choose Master boot record as
> > the place to install lilo, i choose windows as the default and i hit ok. I
> > get the same error message as above "an error has occured during the step
> > "install lilo."" I hit alt-f3 and again it says,
> > running:/bin/insmod /bin/insmod /modules/loop.o
> > insmod failed
> > 
> > any suggestions?
> > 
> > Any help you could offer would greatly be appreciated.
> > 
> > Thanks,
> > Jas
> 

--
MandrakeSoft  http://www.mandrakesoft.com/
--Axalon



Re: [expert] insmod failed

1999-10-26 Thread Alan Shoemaker

JasI'm certainly not an expert on this, but if I ran into your
problem I'd delete the 1872 mb and the 128 mb partitions and then make a
10-24 meg linux native partition with a mount point of /boot and then
re-make those other two partitions you made previously.  The mount point
of the 1800 mb one should be /

Alan


"Jaswinder S. Ahluwalia" wrote:
> 
> To whom it may concern,
> 
> I tried posting the following message on the newbie list about a week ago
> and it looks like no one knows of a possible solution so i though i'd try
> posting to the expert list.
> 
> I have been trying to install mandrake 6.1. I used fips to repartition my
> 8 gb hard disk into a 6gb partition and a 2gb partition. I then used disk
> druid in the install to delete the 2gb partition and create two more
> partitions (1872 mb partition of type linux native and a 128 mb partition
> of type swap).
> 
>  During the installation process it asks "would you like to create a boot
> disk for your system?" I answer yes and it says "an error occurred during
> the step "create bootdisk of the install."  It asks me if i want to go to
> the previous step, retry , or go to the install menu. When i hit alt-f3 it
> says
> running:/bin/insmod /bin/insmod /modules/loop.o
> insmod failed
> 
> When i skip this step (due to frustration) i go on to the lilo
> installation step. The above occurs again. I choose Master boot record as
> the place to install lilo, i choose windows as the default and i hit ok. I
> get the same error message as above "an error has occured during the step
> "install lilo."" I hit alt-f3 and again it says,
> running:/bin/insmod /bin/insmod /modules/loop.o
> insmod failed
> 
> any suggestions?
> 
> Any help you could offer would greatly be appreciated.
> 
> Thanks,
> Jas



[expert] insmod failed

1999-10-26 Thread Jaswinder S. Ahluwalia

To whom it may concern,

I tried posting the following message on the newbie list about a week ago
and it looks like no one knows of a possible solution so i though i'd try
posting to the expert list. 

I have been trying to install mandrake 6.1. I used fips to repartition my
8 gb hard disk into a 6gb partition and a 2gb partition. I then used disk
druid in the install to delete the 2gb partition and create two more
partitions (1872 mb partition of type linux native and a 128 mb partition
of type swap).

 During the installation process it asks "would you like to create a boot
disk for your system?" I answer yes and it says "an error occurred during
the step "create bootdisk of the install."  It asks me if i want to go to
the previous step, retry , or go to the install menu. When i hit alt-f3 it
says
running:/bin/insmod /bin/insmod /modules/loop.o
insmod failed

When i skip this step (due to frustration) i go on to the lilo
installation step. The above occurs again. I choose Master boot record as
the place to install lilo, i choose windows as the default and i hit ok. I
get the same error message as above "an error has occured during the step
"install lilo."" I hit alt-f3 and again it says,
running:/bin/insmod /bin/insmod /modules/loop.o
insmod failed

any suggestions?

Any help you could offer would greatly be appreciated.

Thanks,
Jas