README 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. AQEMU is a graphical frontend for QEMU based virtual machines.
  2. AQEMU compiling and running Linux, BSD and Windows!
  3. (Windows support in development stage)
  4. AQEMU Minimal Version Dependencies:
  5. * Qt >= 5.X
  6. * CMake >= 3.1.0
  7. * QEMU >= 2.0.0 (using a recent version recommended)
  8. * GCC >= 4.9.0 (MinGW in Windows)
  9. !!! ATTENTION READ THIS FIRST !!!
  10. In AQEMU 0.7 support for an "Embedded VNC Display" was added.
  11. This is an experimental feature, with many unfixed bugs!
  12. When you upgrade from version 0.5 or above, simply
  13. click "Apply" for each VM to keep it in the new version.
  14. Installation now verifies the existence of previous versions of AQEMU
  15. and removes them before installing (If you didn't install AQEMU in /usr/share/aqemu
  16. or /usr/share/apps/aqemu, you will have to delete the folder with the
  17. resources of the last AQEMU version manually!)
  18. INSTALLATION (For Unix):
  19. 1. Extract AQEMU source code.
  20. 2. `cd' to AQEMU source directory.
  21. 3. Configure:
  22. -DCMAKE_INSTALL_PREFIX = Path to installation directory (Default is: /usr/local)
  23. For example, `cmake -DCMAKE_INSTALL_PREFIX=/usr/local/' this install AQEMU binary
  24. in /usr/local/bin and install data in /usr/local/share/aqemu
  25. -DWITHOUT_EMBEDDED_DISPLAY = on | off (Default is: off)
  26. To build without support Embedded VNC Display.
  27. -DDEBUG = on | off (Default is: off)
  28. To build in debug mode run: `cmake -DDEBUG=on'
  29. -DINSTALL_MAN = on | off (Default is: on)
  30. Install AQEMU man page file.
  31. -DMAN_PAGE_COMPRESSOR = gzip | bzip2 | lzma | off (Default is: off)
  32. Set compressor for AQEMU man page file.
  33. Example:
  34. cmake -DCMAKE_INSTALL_PREFIX=/usr -DMAN_PAGE_COMPRESSOR=bzip2
  35. 4. type `make'
  36. 5. type `sudo make install'
  37. 6. Installation complete! To start AQEMU type: `aqemu' in shell.
  38. Note:
  39. I'm not the original author of this software, all credits go to him.
  40. But as it looks like as if he has abandoned this project I've taken
  41. the freedom to maintain it on my github account in the meantime.
  42. You can file issues on github.com/tobimensch/aqemu . I'll be happy
  43. to receive pull requests. I'm not promising to fix each and every issue,
  44. help with that (and further development) would be very welcome.