Here's how to make Mint in mint4win possible to edit from another Linux (you can't do it from Windows)
Boot another Linux you may have in your system or any live CD
Mount the windows partition (remember that the password on the live CD is empty)
- Code: Select all
sudo mkdir /win
- Code: Select all
sudo mount /dev/sda1 /win
You probably have Windows in sda1, but change sda1 to whatever you have. If you are uncertain you can use gparted (Partition editor) to check
Make a folder to mount min4win in
- Code: Select all
sudo mkdir /vdisk
Mount the mint4win file (which is an ISO and can be mounted with loop in Linux)
- Code: Select all
sudo mount -o loop /win/mint/disks/root.disk /vdisk
You should now be able to see the content in /vdisk and also edit and save the edits
When you are done
- Code: Select all
sudo umount /vdisk
This is tested on both the live CD and an installed Mint


