Can't mount iPod Nano 3rd Gen on 6.3

2008-01-31 Thread Rob Messick
I have an iPod Nano 3rd Gen with 1.1 firmware (Don't start, it was free) 
that I am trying to mount on my 6.3 i386 workstation.  Is there anybody 
who has been able to get one of these to work or anyone who might have 
some pointers. 

When I attempt to mount it with mount_msdosfs, I get the following in 
dmesg: g_vfs_done():da0s1[READ(offset=0, length=2048)]error = 22


When I plug it in:

umass0: Apple Inc. iPod, rev 2.00/0.01, addr 2
da0 at umass-sim0 bus 0 target 0 lun 0
da0: Apple iPod 1.62 Removable Direct Access SCSI-0 device
da0: 40.000MB/s transfers
da0: 7583MB (1941441 4096 byte sectors: 255H 63S/T 120C)


Thanks for your time,
-Rob
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: loading modules not in /boot/kernel from loader.conf

2007-12-10 Thread Rob Messick

Aryeh M. Friedman wrote:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

sysutils/fusefs-kmod installs to /usr/local/modules/fuse.ko and a
fuse_load=YES will not work because of this.  But, mv/cp/ln'ing it
to /boot/kernel gets nuked if you rebuild/install the kernel.   How to
get around this?
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.4 (FreeBSD)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHXUAtzIOMjAek4JIRApF1AJ4wbXjTQVt4wngiRObv7A2iTJFPQwCgnFiT
V63lqeMKC4vWDHdykrcxXGo=
=JB+k
-END PGP SIGNATURE-

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

  
The fusefs rc script will run kldload /usr/local/modules/fuse.ko.  You 
don't need to add anything to loader.conf . Secondly, you should add 
kernel modules to the /boot/modules dir not /boot/kernel.


-Rob
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: loading modules not in /boot/kernel from loader.conf

2007-12-10 Thread Rob Messick

Tino Engel wrote:

Aryeh M. Friedman schrieb:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


 

You could make a softlink...



Thats what raised the question I was doing ln -s
/usr/local/modules/fuse.ko /boot/kernel/fuse.ko

  

And it did not work?

Yeah, if you put a kernel module in /boot/kernel,  installkernel will 
wipe it out when you install a new kernel.  That's why there is 
/boot/modules for kernel modules.  installkernel shouldn't touch that.


Change to: ln -s /usr/local/modules/fuse.ko /boot/modules/fuse.ko

or

add this to /boot/loader.conf:
   module_path=/boot/modules:/usr/local/modules
   fusefs_load=YES
  




___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]