• Convert file system to ext4

    May 21, 2022
    1 Convert the filesystem to ext4 Run the following command to convert from ext2 to ext4: tune2fs -O extents,uninit_bg,dir_index,has_journal /dev/sda1 For converting from ext3 to ext4, run the command: tune2fs -O extents,uninit_bg,dir_index /dev/sda1 2. Check the filesystem for errors e2fsck -pf /dev/sda1 3. Mount the filesystem mount -t ext4 /dev/sda1 /mnt You can check /mnt […]