Originariamente inviato da robi.c
Senza alcun driver d'accordo, ma automaticamente senza nemmeno un mount...ma da quando??!! booo
Ma è il nuovo kernel 2.6.x che lavora in questo modo?
allora...fai un
lsmod | grep usb
e dovresti avere un modulo chiamato usb-storage o usb_storage , se non ce l hai caricalo con
modprobe nomeModulo
poi..
con il comando fdisk guardi su che sd te l ha mappato...
ad esempio sulla mia suse 9.1 e' su sdb...
codice:
linux:/mnt/flashUSB # fdisk /dev/sdb
Command (m for help): p
Disk /dev/sdb: 131 MB, 131072000 bytes
5 heads, 50 sectors/track, 1024 cylinders
Units = cylinders of 250 * 512 = 128000 bytes
Device Boot Start End Blocks Id System
Command (m for help): q
linux:/mnt/flashUSB #
ora che sai su che device e'.. ti crei il mount point e dai il mount:
codice:
mount -t vfat /dev/sdb /mnt/flashUSB/
se hai problemi fammi sapere...
ola