Wubi is the Windows Ubuntu Installer. Wubi installs Ubuntu inside a file within a windows partition, and thus it does not require CD burning or dedicated partitions, yet the installation is a dual boot setup identical to a normal installation.
For more information see: https://github.com/hakuna-m/wubiuefi/wiki
Make Command | Description |
---|---|
make |
Builds wubi.exe, note that the first time you run it, you will have to install python inside of Wine, this is performed automatically, just confirm all the default choices in the installation screens that will appear. |
make runpy |
Runs wubi under wine directly from source |
make runbin |
Builds wubi and runs the packaged binary under wine |
make wubizip |
Creates a special zip file conatining python.exe and non byte compiled python files that is convenient for debugging purposes. Inside of Windows, unzip the archive, then run python.exe main.py --verbose |
make pot |
Generates a gettext template (/po/wubi.pot ) |
make check_wine |
Creates the Wine environment if it doesn't exist. |
make check_winboot |
Creates the environment for building and signing boot loaders if it doesn't exist. |
make winboot |
Creates the boot loader files (old version) |
make winboot2 |
Creates the boot loader files (new version) |
make clean |
Removes built files |
make distclean |
Removes built files and environment |
/src/winui
: Thin ctypes wrapper around win32 native graphical user interface/src/pylauncher
: Makes python code into an executable, the Python script is examined and all the dependencies are added to an LZMA archive, then an executable header is concatenated to the archive that decompresses it and runs the script using the Python DLL/src/wubi
: The main Wubi application, the code is split between backend and frontend, where each runs in its own thread. The two interact via a tasklist object, where the frontend usually runs a tasklist which is a set of backend tasks. Backends and Frontends are platform specific. For now only the Windows platform is supported./data
: Settings for Wubi branding and customization/po
: Translations/bin
: Other binary files required at runtime (will be compiled at a later stage)Wubi performs the following tasks:
The actual installation is performed within Linux after rebooting the machine.
data/trustedkeys.gpg
.key
with your signing keys for Secure BootGPL v2. See LICENSE