Mounting a memory stick

See also: this reference.

Hier nochmal die Anleitung, wie es zumindest auf meinem Laptop
funktionieren wuerde:

  sudo mkdir -m 777 /mnt/memstick

  tail -f /var/log/messages

Stecke Stick ein; Es erscheinen Eintraege der Art

  kernel: [83019.71] scsi 5:0:0:0: Direct-Access     USB-DISK FREEDIK-LWFORMAT 2.23 PQ: 0 ANSI: 2
  kernel: [83019.71] sd 5:0:0:0: Attached scsi generic sg2 type 0
  kernel: [83019.74] sd 5:0:0:0: [sdb] 130400 512-byte logical blocks: (66.7 MB/63.6 MiB)
  kernel: [83019.75] sd 5:0:0:0: [sdb] Write Protect is off
  kernel: [83019.78]  sdb: sdb1
  kernel: [83019.81] sd 5:0:0:0: [sdb] Attached SCSI removable disk

Hieraus entnehmen wir, dass die zu mountende Partition sdb1 oder sdb ist.
Also probieren wir

  sudo mount /dev/sdb /mnt/memstick -t auto

aber dann kommt

  mount: you must specify the filesystem type

-- das war es also nicht. Nun probieren wir:

  sudo mount /dev/sdb1 /mnt/memstick -t auto

Und das geht.


In deinem Fall heisst das wohl:

  sudo mount /dev/sdc /mnt/memstick -t auto

.

Wenn das geht, und du als normaler Benutzer (also ohne sudo) mounten
koennen willst, kannst du folgende Zeile in /etc/fstab hinzufuegen:

  /dev/sdc /mnt/memstick auto user

Danach kannst du einfach

  mount /mnt/memstick
  [...]
  umount /mnt/memstick

machen.


W o l f g a n g

$Date: 2010-02-07 18:42:37 $, $Author: brandenb $, $Revision: 1.4 $