Category Archives: mount

how to mount a new disk partition in Ubuntu

sudo mkdir /data1 sudo mount -t ext4 /dev/sdb1 /data1 make it permanent at boot time: sudo blkid to get the list of UUID add a line  in /etc/fstab such as “UUID=8afed277-34ca-48c3-9226-7x77dad  /data ext4 errors=remount-ro 0  1” Test it out by … Continue reading

Posted in linux, mount | Leave a comment