Page 1 of 1

Linux Mint 18.3 How to Access from Live USB, DVD your OS partition.

Posted: Sun Mar 11, 2018 6:10 pm
by asinoro
There are moments that you can not access your operating system due to many reasons. Thanks to Live medium you can get to your system and you can perform the necessary commands, like sudo apt-get update, sudo apt-get upgrade, or to modify other important files.

Open your terminal.
If for any reason something went wrong, run exit command to execute again the procedure.

Code: Select all

exit
1. Run the command,

Code: Select all

sudo su
2. Then the command, to see which partition has your OS.

Code: Select all

lsblk -f
3. After the command, where X is your OS partition.

Code: Select all

mount /dev/sdaX /mnt
4. Now you have to mount, bind and chroot mnt, with the follow command.

Code: Select all

mount --bind /dev /mnt/dev && mount --bind /sys /mnt/sys && mount --bind /proc /mnt/proc && chroot /mnt
5. To verify that you are in the right partition run the command.

Code: Select all

lsb_release -a
Now you are at your Mint OS to do whatever it needs.