web-dev-qa-db-fra.com

Monter automatiquement un deuxième disque dur dans Debian 7?

J'ai récemment installé Debian 7.1 sur mon PC, qui utilise le SSD comme lecteur principal et un lecteur secondaire de 200 Go IDE comme un endroit où je peux placer des programmes, de la musique et d'autres fichiers.

Cependant, chaque fois que je démarre la machine, je dois accéder à Fichiers et double-cliquer sur le deuxième lecteur. À ce stade, je suis invité à fournir mon mot de passe administrateur.

Comment puis-je l'obtenir pour que ce deuxième disque soit monté au démarrage du système sans que je doive toujours fournir un mot de passe?

16
mickburkejnr

Vous devrez créer manuellement un point de montage et l'ajouter à votre fichier fstab. Pas à pas:

  1. Créez un répertoire servant de point de montage: Sudo mkdir /media/mymountpoint
  2. Obtenir les informations sur le disque dur (UUID est préférable, car le nom du développeur peut changer) Sudo blkid (merci @ernie, je les ai mélangées) [Trouvez votre lecteur et copiez l'UUID]
  3. Démonter le lecteur Sudo umount /dev/sdX#
  4. Editez votre fichier fstabSudo vim /etc/fstab
    • Vous devez utiliser la mise en page (sur sa propre ligne) UUID MountPoint FSType Options Dump Fsck
    • A titre d'exemple, voici le mien pour mon côté Windows
    • UUID=MyUUID /media/windows ntfs-3g defaults 0 0
  5. Pour éviter de redémarrer, vous pouvez faire Sudo mount -a (monter tout).

De man fstab:

The first field (fs_spec).
          This field describes the block special device or remote filesystem to be mounted.
The second field (fs_file).
          This  field  describes  the  mount  point for the filesystem.  For swap partitions, this field should be
          specified as `none'. If the name of the mount point contains spaces these can be escaped as `\040'.
The third field (fs_vfstype).
          This field describes the type of the filesystem.  Linux supports lots of filesystem types, such as adfs,
          affs,  autofs,  coda,  coherent, cramfs, devpts, efs, ext2, ext3, hfs, hpfs, iso9660, jfs, minix, msdos,
          ncpfs, nfs, ntfs, proc, qnx4, reiserfs, romfs, smbfs, sysv, tmpfs, udf, ufs, umsdos, vfat,  xenix,  xfs,
          and possibly others. For more details, see mount(8).
The fourth field (fs_mntops).
          This field describes the mount options associated with the filesystem.

          It  is  formatted as a comma separated list of options.  It contains at least the type of mount plus any
          additional options appropriate to the filesystem type. For documentation on the available mount options,
          see mount(8).  For documentation on the available swap options, see swapon(8).
The fifth field (fs_freq).
          This  field  is used for these filesystems by the dump(8) command to determine which filesystems need to
          be dumped.  If the fifth field is not present, a value of zero is returned and dump will assume that the
          filesystem does not need to be dumped.

The sixth field (fs_passno).
          This  field is used by the fsck(8) program to determine the order in which filesystem checks are done at
          reboot time.  The root filesystem should be specified with a  fs_passno  of  1,  and  other  filesystems
          should  have a fs_passno of 2.  Filesystems within a drive will be checked sequentially, but filesystems
          on different drives will be checked at the same time to utilize parallelism available in  the  hardware.
          If  the  sixth  field  is not present or zero, a value of zero is returned and fsck will assume that the
          filesystem does not need to be checked.
26
nerdwaller