• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

file system type of a memory stick?

N11

Senior member
Trying to mount a pcmcia card reader for a digital camera memory stick and I'm not familiar with the file system type it would be utilizing. Does anyone know?
 
Originally posted by: Nothinman
I would guess vfat.

Doesn't seem to like that. I read briefly through some docs that said you could forcefully mount it as scsi but that's going to require kernel fiddling.
 
I didn't say it was a file system type, the docs i'm referencing describe forcing the device to be recognized as an emulated scsi device. I cannot do that with my current kernel.
 
Originally posted by: N11
I didn't say it was a file system type, the docs i'm referencing describe forcing the device to be recognized as an emulated scsi device. I cannot do that with my current kernel.
do any of the linux kernels support this?
 
I didn't say it was a file system type, the docs i'm referencing describe forcing the device to be recognized as an emulated scsi device. I cannot do that with my current kernel.

AFAIK all non-IDE storage (mainly usb) is done through SCSI emulation.
 
Originally posted by: Nothinman

AFAIK all non-IDE storage (mainly usb) is done through SCSI emulation.
That's interesting, I did not know that.

I've been playing around with this windoze thing for too long... 😀

-Spy
 
That's interesting, I did not know that.

I've been playing around with this windoze thing for too long...

I believe that's what the Windows ASPI layer does for IDE drives, it just doesn't tell you it's doing it.

The SCSI layer became the generic I/O layer because most devices (USB storage, ATAPI, etc) understand some subset of the SCSI command set for their I/O and it just made sense to do the drivers like that. But in Linux that's all being changed in 2.5, the block I/O layer is being redone, the IDE layer is being rewritten and the SCSI layer is getting some internals reworked. So when 2.6 is finally released everything I just said will be a lie =)
 
Back
Top