Mount

francois -  
eriek Messages postés 556 Statut Membre -
Salut à tous, quelque peut me dire comment mounter un flash disque j'arrive pas à maitriser la commande mount.
Merci d'avacnce.

1 réponse

  1. eriek Messages postés 556 Statut Membre 33
     
    salut!

    j'ai trouvé ça:

    "USB Flash Disks
    Check that USB support is loaded

    # lsmod|grep uhci
    uhci 24496 0 (unused)
    usbcore 58400 1 [usb-storage uhci]

    USB flash (storage) support is loaded automatically when flash disk inserted (or is present when system loads) provided hotplug support is installed.

    # lsmod|grep usb
    usb-storage 65536 0
    usbcore 58400 1 [usb-storage uhci]

    Just create mount point

    # mkdir /mnt/flash

    and add fstab entry:

    /etc/fstab:

    /dev/sda1 /mnt/flash vfat noauto,user,iocharset=koi8-r,umask=0 0 0

    (koi8-r is needed to display cyrillic filenames)

    Now insert flash disk into the USB socket and issue mount command:

    # mount /mnt/flash

    In KDE you don't even need to enter any commands. Just "Create New/Floppy Device" on the Desktop (right-click mouse), name it "Flash" and point to /dev/sda1. Then just insert flash disk and click on the icon."

    si ça peut aider...
    0