Today we are going to show you how to mount partition in rescue mode and fix the error which occurs on your Linux machine.
First get the partition list using
fdisk -l
In my case /dev/md2 is my partition having Linux system files.
Now mount partitions as below.
mount /dev/md2 /mnt mount -t proc none /mnt/proc mount --rbind /sys /mnt/sys mount --rbind /dev /mnt/dev chroot /mnt
This was a small tutorial for mounting partition in rescue mode.
English