• # si

    Posté par . En réponse au message Comment monter automatiquement un disque au boot ?. Évalué à 0. Dernière modification le 20 décembre 2015 à 23:20.

    si tu ouvres ta partition (donc la monte)
    que tu lances un terminal, fais

    cat /etc/mtab

    que tu copies la lignes correspondant à ta partition ntfs à la fin de

    /etc/fstab

    mtab affiche l'état de montage de tes partition au moment ou tu l'édites
    fstab c'est pour programmer les montages de tes partitions
    cat affiche le contenu d'un fichier

    Décortiquage d'un champ dans le fstab :

    /dev/sdax /media/user/label type options 0 0

    (you can check the type with sudo fdisk -l)

    the options field:

    sync/async - All I/O to the file system should be done synchronously/asynchronously.
    auto/noauto - The filesystem will be mounted automatically at startup/The filesystem will NOT be automatically mounted at startup.
    dev/nodev - Interpret/Do not interpret character or block special devices on the file system.
    exec / noexec - Permit/Prevent the execution of binaries from the filesystem.
    suid/nosuid - Permit/Block the operation of suid, and sgid bits.
    ro/rw - Mount read-only/Mount read-write.
    user/nouser - Permit any user to mount the filesystem. (This automatically implies noexec, nosuid,nodev unless overridden) / Only permit root to mount the filesystem. This is also a default setting.
    defaults - Use default settings. Equivalent to rw, suid, dev, exec, auto, nouser, async.
    _netdev - this is a network device, mount it after bringing up the network. Only valid with fstype nfs.
    

    ( tiré de http://community.linuxmint.com/tutorial/view/1513 )