Debian 7'ye otomatik olarak ikinci bir sabit disk takılsın mı?


16

Son zamanlarda, ana sürücü olarak SSD'yi ve programları, müzikleri ve diğer dosyaları yerleştirebileceğim bir yerde 200 GB IDE sürücüsünü kullanan Debian 7.1'i bilgisayarıma yükledim.

Ancak, makineyi her başlattığımda Dosyalar'a gitmem ve 2. sürücüye çift tıklamam gerekiyor, bu noktada Yönetici parolamı girmem isteniyor.

Bu 2. sürücünün her zaman bir parola vermek zorunda kalmadan sistem önyüklemesine monte edilmesini nasıl sağlayabilirim?

Yanıtlar:


26

Manuel olarak bir bağlama noktası oluşturmanız ve bunu fstabdosyanıza eklemeniz gerekir . Adım adım:

  1. Bağlama noktası olarak işlev görecek bir dizin oluşturun: sudo mkdir /media/mymountpoint
  2. Sabit sürücü bilgilerini alın (geliştirici adı değişebileceğinden UUID en iyisidir) sudo blkid(teşekkürler @ernie, bunları karıştırdım) [Sürücünüzü bulun ve UUID'yi kopyalayın]
  3. Sürücünün bağlantısını kesin sudo umount /dev/sdX#
  4. Senin düzenleyin fstabdosyasınısudo vim /etc/fstab
    • Düzeni kullanmanız gerekir (kendi satırında) UUID MountPoint FSType Options Dump Fsck
    • Örnek olarak, benim Windows tarafım için benim
    • UUID=MyUUID /media/windows ntfs-3g defaults 0 0
  5. Yeniden başlatmayı önlemek için şunları yapabilirsiniz sudo mount -a(tümünü monte edin).

Gönderen 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.

1
sudo mountUUID tarafından monte edilmedikçe UUID'yi göstereceğine inanmıyorum . Debian 7.1'in ne kullandığından emin değil misiniz? Daha sağlam bir yol kullanmaktırblkid
ernie

Eskiden blkidUUID alırdım. Tüm bunları şimdi yaptım, bu yüzden yeniden başlatacağım ve ne olacağını göreceğim.
mickburkejnr

@nerdwaller Düzenlemeleri fstab üzerinde test etmek ve açık bir şekilde bağlama noktası oluşturmak için bazı adımlar eklemek mantıklı olabilir.
ernie

1
Debian 8'de de çalışıyorum.
Rodrigo

@nerdwaller Rica ederim!
Rodrigo
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.