RHEL9.3 ボリュームのUUIDを確認する方法
環境
Red Hat Enterprise Linux 9.3
1.UUIDの確認方法
以下コマンドを実行する
書式
ls -l /dev/disk/by-uuid
実行結果
$ ls -l /dev/disk/by-uuid 合計 0 lrwxrwxrwx. 1 root root 9 2月 21 09:09 2023-04-13-16-58-02-00 -> ../../sr1 lrwxrwxrwx. 1 root root 10 2月 21 11:56 4c460b1b-4d1d-4fbf-a3e7-7fb5c6f12586 -> ../../dm-1 lrwxrwxrwx. 1 root root 15 2月 21 11:56 4e5b024e-abed-44bc-9293-342ed80cbbd0 -> ../../nvme0n1p2 lrwxrwxrwx. 1 root root 15 2月 21 11:56 F91B-3B58 -> ../../nvme0n1p1 lrwxrwxrwx. 1 root root 10 2月 21 11:56 c3f6485a-d6d1-4ec7-a6b1-1511a78cecad -> ../../dm-0
2,UUIDを設定する方法
/etc/fstab ファイルにUUIDを設定します
$ cat /etc/fstab
# # /etc/fstab # Created by anaconda on Wed Jan 17 08:28:06 2024 # # Accessible filesystems, by reference, are maintained under '/dev/disk/'. # See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info. # # After editing this file, run 'systemctl daemon-reload' to update systemd # units generated from this file. # /dev/mapper/rhel-root / xfs defaults 0 0 UUID=4e5b024e-abed-44bc-9293-342ed80cbbd0 /boot xfs defaults 0 0 UUID=xxx /dump xfs defauls 0 0
説明
設定した場合、OS起動時に指定のボリュームが自動でマウントされます。