2022年10月10日月曜日

Linuxの2nd HDDを初期マウントする

起動時のドライブマウントは/etc/fstab に記載されているので、sudo vi /etc/fstabで編集してやればよい。

ドライブの内容についてはsudo fdisk -lで確認できる。

例)

sudo fdisk -l

Device          Start        End    Sectors   Size Type

/dev/nvme0n1p1   4096     618495     614400   300M EFI System

/dev/nvme0n1p2 618496 1953520064 1952901569 931.2G Linux filesystem

Device     Start        End    Sectors   Size Type

/dev/sda1   2048 1953523711 1953521664 931.5G Linux filesystem


これより、ssdが「/dev/nvme0n1」、hddが「/dev/sda1」と分かるので、起動時にhddをマウントするには、sudo vi /etc/fstabの最後に記載する。

# /etc/fstab: static file system information.

#

# Use 'blkid' to print the universally unique identifier for a device; this may

# be used with UUID= as a more robust way to name devices that works even if

# disks are added and removed. See fstab(5).

#

# <file system>       <mount point> <type> <options> <dump> <pass>

UUID=29F9-70AA              /boot/efi   vfat  umask=0077 0 2

UUID=xxxxxxxx-0ae7-zzzz-zzzz-3e73e81f04e2 /       ext4  defaults  0 1

/swapfile                 swap      swap  defaults  0 0

/dev/sda1 /home/2nd_HDD btrfs defaults 0 0 




0 件のコメント:

コメントを投稿