I do not want to loose any data. My data is very important. I have Ubuntu 16.04 installed on my Lenovo G50-70 laptop and all the partitions are formatted in ex4. Now I have to dual boot with Windows 10 alongside Ubuntu but the internet says that I have to format my ex4 partitions to NTFS and then only Windows will recognize my partitions. Can I solve this issue without loosing any data?
1 Answers
First, if you have very important data, make sure that it's backed up. Also test your backup to see that your important data can be retrieved.
Windows doesn't understand ext4, but Ubuntu understands NTFS fine. Also Ubuntu can network with Windows computers, so it can do file sharing over a network. However you do it, you need Windows (because you said so), and you probably need Ubuntu, because that's where your data is now.
I can see a few options:
Install Windows alongside Ubuntu, according to the directions in the link that @PatrickNegus provided. This would be a real pain to do, and you'll probably need to pay for a new Windows license by buying a copy of Windows. Lots of finagling may be required to get the computer to boot right.
Back up all your important data, install a copy of Windows and let it erase the hard drive, install Ubuntu alongside Windows in dual-boot mode, and then recover your data from the backup. You can use Ubuntu to copy data to and from your NTFS partition, where Windows can see it. If you haven't blown away your computer's recovery partition, you might be able to use your computer's recovery process to reinstall Windows like it was when you bought the computer; otherwise, you'll probably need to buy a new copy of Windows. This is probably your simplest and most reliable option if you only have one computer, believe it or not.
Use an external computer for Windows, and share data over the network.
Install some virtualization software like VirtualBox, and install Windows into a virtual machine. Again, you'll probably need to buy a Windows license. Create a virtual host-only network so that the Windows instance in the virtual machine can communicate with the Ubuntu host. Warning, virtualization is great, it solves all sorts of problems and is fun to play with, but there's a learning curve; you'll encounter a whole new class of problems.
Good luck.
- 789