I think I overwrote my Windows 10 by Ubuntu. I still can see my installed software on Data C: and also on D:. But I can't open it. How can I solve it?
Asked
Active
Viewed 169 times
0
1 Answers
6
To answer your question "why exe files can't run":
The .exe files are Windows executables. They are represented in a Windows-specific file format that the regular Linux operating system does not know how to load. They depend on Windows-specific shared libraries (DLLs) that are not present on a Linux system.
How to solve your problem?
Installing Wine on Linux may help, though it is not guaranteed to work for all applications. (Wine depends on libraries that emulate the behavior of Windows, and that emulation is not 100% faithful to the original.)
If you can see the Windows files on the C: and D: partitions, there is a good chance that you have only clobbered the Windows boot loader. This page talks about restoring the boot loader.

Stephen C
- 190
sudo apt-get install grub-customizer
, start it up and add Win to the boot menu. – ipse lute Jul 10 '16 at 08:18