Configuring Persistent Disk Mounting on Ubuntu
1. Identify the Target DiskUse the lsblk or fdisk utility to list available block devices and identify the correct drive identifier.lsblk
# or
sudo fdisk -l
2. Create a FilesystemIf the disk is unformatted, create a new filesystem. The following example formats the partition /dev/sdc1 using the ext4 filesystem.sudo mkfs.ext4 /dev/sdc1
3. Create ...
Posted on Tue, 19 May 2026 03:22:02 +0000 by sarabjit