Whonix VM Build Documentation
Instructions to build Whonix Virtual Machine Images from Source Code.
Introduction[edit]
This page documents how to build Whonix VM (Virtual Machine) images for VirtualBox (.ova) or KVM (.qcow2) "from source code" using derivative-maker . Most users do not build Whonix from source code but instead download Whonix.
For Qubes-Whonix™, see Qubes-Whonix™ Build Documentation.
Building from source code has security advantages (see Trust).
The goal of this build documentation is to be usable by as many users as possible. Therefore written as easy as possible with no prior knowledge of tools used required.
The high level summary is:
- Host preparation.
- Get derivative-maker source code.
- Run derivative-maker.
- Done, build of Whonix has been completed.
Advanced users that already know how to use git
and how to perform digital software verification using OpenPGP (gpg
) do not need to strictly follow this documentation. See footnote(s) for details. [1]
Due to digital software verification instructions and Software Signature Verification Usability Issues these instructions might look more complicated then they actually are.
- Digital signatures are a tool enhancing download security. They are commonly used across the internet and nothing special to worry about.
- Optional, not required: Digital signatures are optional and not mandatory for using Whonix, but an extra security measure for advanced users. If you've never used them before, it might be overwhelming to look into them at this stage. Just ignore them for now.
- Learn more: Curious? If you are interested in becoming more familiar with advanced computer security concepts, you can learn more about digital signatures here digital software signatures.
Steps concerning digital software verification are pointed out as "This step is recommended for better security, but is not strictly required. (See Trust.)"
When verifying digital software signatures, these instructions will be slightly more complicated but therefore even more secure.
- Host preparation.
- Get derivative-maker source code.
- Verify digital software signatures.
- Run derivative-maker.
- Done, build of Whonix has been completed.
Host Preparation[edit]
Host Preparation Notices[edit]
- operating system: You need to build on a Debian
bookworm
based operating system, such as Whonix-Workstation™17
or a Debianbookworm
VM. - disk space: You need ~
30
GB free disk space. - RAM: You need ~
4
GB free RAM.- Might actually work with a lot less RAM.
- Might actually work with less RAM if you have swap.
- linux user account: Do not build under user
root
. Login regular as useruser
. Do not usesudo
to runderivative-maker
because becoming root when necessary is handled by the build script. - build place notice: You cannot build on Whonix-Gateway™ (due to networking issues).
- build logs: Build logs: If using a GUI (graphical user interface) it is recommended to set your terminal (for example
xfce4-terminal
) to unlimited scrollback, so you can watch the full build log and share it for support in case there are issues.
...
- private files in source code warning: Do not add private files to Whonix source code folder! [...]
Unless you know what you are doing. Technically, it would work. This is recommended against. Those files would get managed by the respective package. When you later update Whonix debian packages, your files would get deleted by the package manager. Also adding private files to Whonix source code folder, later contributing to Whonix development and accidentally pushing the wrong git branch would be a disaster. Better add your private files to Whonix after building Whonix. Or add a custom build step adding your files, which then get copied from a folder outside of Whonix source folder. See "Source Code Changes" in "Optional Build Configuration" below.
- parallel builds unsupported warning: Do not try to build Whonix-Gateway and Whonix-Workstation at the same time!
Building Whonix-Gateway and Whonix-Workstation at the same time is not supported due to limitations in the build script. In other words, do not try to run for example ~/derivative-maker/derivative-maker --flavor whonix-gateway -- --target virtualbox and ~/derivative-maker/derivative-maker --flavor whonix-workstation -- --target virtualbox at the same time. The build would probably fail.
- CI warning: Do not use images created inside Continuous Integration (CI) environments for anything besides testing!
Usually you are not using CI environments without knowing.
You can find out if you are running inside a CI environment by running.
echo "$CI"
If it shows nothing, i.e.
Everything is fine.
Otherwise, if it were to show.
true
Then do not use these images for anything besides testing.
Reason: https://github.com/Whonix/derivative-maker/blob/master/build-steps.d/1200_prepare-build-machine
- official builds: In case of creating official builds to be redistributed on
whonix.org
and not for personal use, press expand on the right side.
Prepend the following variable: dist_build_redistributable=true
sets:
--repo true
--tb closed
See also: Dev/Redistribution
Host Preparation Steps[edit]
sudo setup:
Choose either Option A or Option B.
Option A: passwordless sudo
Option A: Set up passwordless sudo.
- Abstract task overview: Setup passwordless sudo for your Linux user account name.
- Detailed task overview: Setup sudo and add your linux user account to the linux user group
sudo
. The following instructions use Linux user account nameuser
as an example. If the user is using a different Linux user account name such asmyname
then the commands below have to be adjusted accordingly. - Unspecific: Configuration of sudo is unspecific to Whonix.
- Whonix specific: When building inside Whonix, user
user
is already a member of groupsudo
by default. Therefore the following step "1." can be skipped. - Detailed steps:
1. Setup sudoers. Add the operating system user name to sudoers.
Become root.
su
Add the user account to the sudoer's group. Replace user with the actual operating system user name.
sudo adduser user sudo
Reboot so group changes take effect.
reboot
2. Configure user user
to be able to use sudo without a password.
echo '%sudo ALL=(ALL:ALL) NOPASSWD:ALL' | sudo EDITOR=tee visudo -f /etc/sudoers.d/dist-build-sudo-passwordless >/dev/null
3. Done.
The process of setting up passwordless sudo has been completed.
Option B: long sudo timeout
Option B: Set a longer sudo password timeout.
- Abstract task overview: Setup sudo with a longer timeout for your Linux user account name.
- Detailed task overview: Setup sudo and increase the sudo password timeout (for all Linux user accounts or all users). The following instructions use Linux user account name
user
as an example. If the user is using a different Linux user account name such asmyname
then the commands below have to be adjusted accordingly. - Unspecific: Configuration of sudo is unspecific to Whonix.
- Whonix specific: When building inside Whonix, user
user
is already a member of groupsudo
by default. Therefore the following step "1." can be skipped. - Detailed steps:
1. Setup sudoers. Add the operating system user name to sudoers.
Become root.
su
Add the user account to the sudoer's group. Replace user with the actual operating system user name.
sudo adduser user sudo
Reboot so group changes take effect.
reboot
2. Configure user user
to be able to use sudo without a password.
echo 'Defaults timestamp_timeout=30' | sudo EDITOR=tee visudo -f /etc/sudoers.d/dist-build-sudo-timeout >/dev/null
3. Done.
The process of setting up a longer sudo timeout has been completed.
Special Notice[edit]
None.
Choose Version[edit]
Get the Signing Key[edit]
Get the Whonix Signing Key and import it.
Get the Source Code[edit]
1. Install git.
sudo apt update && sudo apt install git
2. Get the source code including git submodules. [3] [4]
Note: Replace 17.2.3.7-stable
with the actual tag you want to build.
git clone --depth=1 --branch 17.2.3.7-stable --jobs=4 --recurse-submodules --shallow-submodules https://github.com/Whonix/derivative-maker.git
3. Check if above command succeeded.
If there have been errors such as:
fatal: unable to access 'https://github.com/.../': Could not resolve host: github.com
Or.
fatal: unable to access 'https://github.com/.../': gnutls_handshake() failed: The TLS connection was non-properly terminated.
Then the download probably failed.
Checking if the download failed or succeeded can be done by checking the exit code.
Choose your shell.
4. Done.
Git repository cloning has been completed.
Change Directory[edit]
Change directory to the derivative-maker
source code folder because later on package build commands using ./derivative-maker
are expected to be run from the root of the source folder.
cd derivative-maker
OpenPGP Verify the Source Code[edit]
This chapter is recommended for better security, but is not strictly required. (See Trust.)
- Digital signatures are a tool enhancing download security. They are commonly used across the internet and nothing special to worry about.
- Optional, not required: Digital signatures are optional and not mandatory for using Whonix, but an extra security measure for advanced users. If you've never used them before, it might be overwhelming to look into them at this stage. Just ignore them for now.
- Learn more: Curious? If you are interested in becoming more familiar with advanced computer security concepts, you can learn more about digital signatures here digital software signatures.
1. Verify the chosen tag to build.
Note: Replace with tag you want to build.
git verify-tag 17.2.3.7-stable
2. Check the output of the verification step.
If the file is verified successfully, the output will include Good signature
, which is the most important thing to check.
gpg: Good signature
This output might be followed by a warning as follows.
gpg: WARNING: This key is not certified with a trusted signature! gpg: There is no indication that the signature belongs to the owner.
This message does not alter the validity of the signature related to the downloaded key. Rather, this warning refers to the level of trust placed in the Whonix signing key and the web of trust. To remove this warning, the Whonix signing key must be personally signed with your own key.
2. Verify the git commit to build. [7]
Note: Replace 17.2.3.7
with the actual git tag being verified.
git verify-commit 17.2.3.7-stable^{commit}
3. Check the output of the verification step.
4. Done.
Checkout Version[edit]
1. Retrieve a list of available git tags.
git --no-pager tag
2. Use git checkout to select the preferred version to build.
Note: Replace 17.2.3.7-stable
with the actual version chosen for the build: the stable, testers-only or developers version. Common sense is required when choosing the right version number. For example, the latest available version number is not necessarily the most stable or suitable. Follow the Whonix News Blog as it might contain information.
git checkout --recurse-submodules 17.2.3.7-stable
3. Digital signature verification.
Optional. If you choose to perform digital signature verification above, you could verify the currently chosen commit ("HEAD
") yet again for extra security.
git verify-commit HEAD
4. Done.
Version selection has been completed.
Check Git[edit]
1. Check if you really got the version you want.
git describe
The output should show.
2. Check if source folder is pristine.
git status
Output should be the following.
- A)
HEAD detached at 17.2.3.7-stable
nothing to commit, working tree clean
or,
- B)
Not currently on any branch. nothing to commit, working tree clean
If it shows something else, do not continue.
3. Done.
Build[edit]
1. Build target selection.
Mandatory The following build targets are available.
Choose a --target
. Either option A), B), C) or D). [8] [9]
Option | Build Target | Comment | Image Type | Target Parameter |
---|---|---|---|---|
A) | VirtualBox VMs | Stable. | .vdi
|
--target virtualbox |
B) | KVM (and QEMU) | KVM: Stable.; QEMU: unsupported | .qcow2
|
--target qcow2 |
C) | raw images | Mostly interesting for developers / porters. | .raw
|
--target raw |
D) | UTM with QEMU [10] | Tested on Mac M1, M2, ... testers only, --arch arm64 .
|
.raw
|
--target utm |
E) | ISO | Testers only. | .iso
|
--target iso |
2. Flavor selection.
Mandatory. Choose a flavor.
Option | Flavor Name | Flavor Parameter |
---|---|---|
A) | Whonix-Gateway CLI | --flavor whonix-gateway-cli
|
B) | Whonix-Gateway Xfce | --flavor whonix-gateway-xfce
|
C) | Whonix-Workstation CLI | --flavor whonix-workstation-cli
|
D) | Whonix-Workstation Xfce | --flavor whonix-workstation-xfce
|
3. CPU target architecture selection.
Mandatory. Choose a target CPU architecture.
Option | CPU Architecture Name | Comment | CPU Architecture Parameter |
---|---|---|---|
A) | Intel and AMD64 [11] | Default, best tested. | --arch amd64
|
B) | i386 | Unsupported. [12] | --arch i386
|
C) | ARM64 | Unsupported. | --arch arm64
|
D) | Others. | Potentially. | [13] |
4. Whonix APT repository choice.
Optional. Enable Whonix APT repository inside the images. [14] See Trust. This is done for official Whonix redistributeable builds.
--repo true
5. Optional configurations.
Optional. See also Optional Build Configuration.
6. Notices.
- These instructions assume you have the Whonix source code in your home folder (
~/derivative-maker
), and - use VirtualBox as an example.
7. Build a Whonix-Gateway virtual machine image. build command:
~/derivative-maker/derivative-maker --flavor whonix-gateway-xfce --target virtualbox --repo true
8. Build a Whonix-Workstation virtual machine image. build command:
~/derivative-maker/derivative-maker --flavor whonix-workstation-xfce --target virtualbox --repo true
While building, you might see a few Expected Build Warnings.
Build Logs[edit]
Optional.
Mostly useful in case of build issues where sharing the build log is necessary for support.
If using:
- A) GUI (graphical user interface): It is recommended to set your terminal (for example xfce4-terminal) to unlimited scrollback, so you can watch the full build log and share it for support in case there are issues.
- B) CLI (command line user interface): In case there are build issues, it is recommended to redirect the build log to a text file. To do that, for example >> ~/build-log 2>&1
could be appended to the very end of the build command to redirect the build output to build log file
~/build-log
.- Note: when using that command there will be no output in the terminal until the build is completed. This is as per Linux default and unspecific to Whonix. The build might not complete. In that case, that command would hang forever. To see if the build is stuck, it would be possible to open the build log file with a text editor. In that case, the file would have to be re-opened or refreshed to with F5 key to see new build output appended to the build log file. Or by using for example tail -n 100 -f ~/build-log 2>&1
VM Build Result[edit]
- VirtualBox: The resulting
.ova
images can be found in~/derivative-binary
folder. - KVM, QEMU, raw images: The resulting
.qcow2
and/or.raw
images can be found in~/derivative-binary
folder.
Most users have completed the build process at this point, can start using Whonix and skip the rest of this page.
Footnotes[edit]
- ↑
For example, these instructions fetch only a specific git tag. If you know how to use git, you are of course free to
git clone
the whole repository and then usegit verify-tag
,git verify-commit
,git checkout --quiet
andgit
generally as per usual. The reason why more specific commands are being used on this page is to simplify the process for laymen, to make these instructions as fail-safe as possible. - ↑ git diff 17.2.3.7-stable 17.2.3.7-developers-only
- ↑
Optional
git
parameters:--depth=1
: Used to speed up the download.--branch 17.2.3.7-stable
: Usability. Used to speed up the download.--jobs=4
: Used to speed up the download.--recurse-submodules --shallow-submodules
: Usability.
git
users are free to drop any of these optional parameters. - ↑
Alternatively, this can be achieved with the following commands in several steps. This is useful if network issues arise.
- Over HTTPS:
- git clone --depth=1 --branch 17.2.3.7-stable https://github.com/Whonix/derivative-maker.git
- Over SSH.
- Might work better over slow networks but requires a GitHub account and a configured SSH public key at GitHub. See footnote [A] below.
- git clone --depth=1 --branch 17.2.3.7-stable git@github.com:Whonix/derivative-maker.git
[A] GitHub SSH public key setup.
1. You need to create an SSH public key.
Undocumented.
2. You view your your SSH public key.
cat ~/.ssh/id_ed25519.pub
3. Copy it.
4. And paste your the SSH public key on GitHub.
- Over HTTPS:
- ↑ 5.0 5.1
Delete the
derivative-maker
source code folder and retry.sudo rm -r derivative-maker
- ↑ As defined by TUF: Attacks and Weaknesses:
- ↑ It is advisable to verify the signature of the git commit as well. By convention, git tags should point to signed git commits. Beginning from git tag 9.6 and above. (forum discussion)
- ↑ Multiple build targets at the same time are also possible. --target virtualbox --target qcow2 --target raw
- ↑ Physical Isolation Build Documentation --target root
- ↑
- ↑
- ↑ 32-bit or 64-bit?
- ↑
- Build script parameter
--arch
results in setting theBUILD_TARGET_ARCH
build variable. If you inspect (grep
tip) the build scripts for the variable name you can see other architectures might work but are untested. - porting Whonix to other platforms
- Build script parameter
- ↑
--repo true
will setexport build_remote_repo_enable="true"
which results in settingDERIVATIVE_APT_REPOSITORY_OPTS="--enable --codename $derivative-maker_apt_stable_release" export DERIVATIVE_APT_REPOSITORY_OPTS
derivative-maker_apt_stable_release
defaults tobookworm
and could optionally through a build configuration set tobookworm-proposed-updates
,bookworm-testers
orbookworm-developers
.
We believe security software like Whonix needs to remain open source and independent. Would you help sustain and grow the project? Learn more about our 12 year success story and maybe DONATE!