mirror of
https://github.com/QubesOS/qubes-doc.git
synced 2024-12-27 16:29:28 -05:00
Merge branch 'awokd-whonixtempl'
This commit is contained in:
commit
45cc7815b8
84
building/building-whonix-template.md
Normal file
84
building/building-whonix-template.md
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
---
|
||||||
|
layout: doc
|
||||||
|
title: Building Whonix Templates
|
||||||
|
permalink: /doc/building-whonix-template/
|
||||||
|
redirect_from:
|
||||||
|
- /en/doc/building-whonix-template/
|
||||||
|
---
|
||||||
|
|
||||||
|
## Building Whonix Templates
|
||||||
|
|
||||||
|
The Whonix templates are easily downloaded and installed by following the [procedure here](/doc/whonix/install/).
|
||||||
|
However, they are integrated into `qubes-builder` so they are straight-forward to build yourself if you prefer.
|
||||||
|
|
||||||
|
Many other Qubes templates can also be built by following this procedure.
|
||||||
|
Simply choose the appropriate builder(s) and template(s) you wish to build in the `./setup` procedure below.
|
||||||
|
Always include the `mgmt-salt` builder.
|
||||||
|
|
||||||
|
First, set up the [Build Environment](/doc/qubes-r3-building/#build-environment) (follow the build environment section only).
|
||||||
|
|
||||||
|
Next, configure the builder:
|
||||||
|
|
||||||
|
~~~
|
||||||
|
cd ~/qubes-builder
|
||||||
|
./setup
|
||||||
|
# Select Yes to add Qubes Master Signing Key
|
||||||
|
# Select Yes to add Qubes OS Signing Key
|
||||||
|
# Select 3.2 or 4.0 for version
|
||||||
|
# Stable
|
||||||
|
# Yes (we want to build only templates)
|
||||||
|
# Select builder-fedora, builder-debian, template-whonix, mgmt-salt (setup won't let you continue if you don't include builder-fedora, but we don't actually use it)
|
||||||
|
# Choose Yes to add adrelanos's third party key
|
||||||
|
# Yes (to download sources)
|
||||||
|
# Select whonix-gateway, whonix-workstation (for the currently shipping templates)
|
||||||
|
~~~
|
||||||
|
|
||||||
|
Continue the build process with:
|
||||||
|
|
||||||
|
~~~
|
||||||
|
make install-deps
|
||||||
|
make get-sources
|
||||||
|
~~~
|
||||||
|
|
||||||
|
You will often need to edit/update `qubes-src/template-whonix/builder.conf` at this stage to specify the currently shipping Tor Browser version.
|
||||||
|
Open it in your favorite editor, then look for "Extra Whonix Build Options" and add/edit the `WHONIX_TBB_VERSION` variable to specify the current version.
|
||||||
|
For example:
|
||||||
|
|
||||||
|
```
|
||||||
|
################################################################################
|
||||||
|
# Extra Whonix Build Options
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Whonix repository.
|
||||||
|
WHONIX_APT_REPOSITORY_OPTS ?= stable
|
||||||
|
#WHONIX_APT_REPOSITORY_OPTS = off
|
||||||
|
|
||||||
|
# Use turbo mode to build template
|
||||||
|
BUILDER_TURBO_MODE ?= 1
|
||||||
|
|
||||||
|
# Enable Tor by default (0: disable; 1: enable)
|
||||||
|
WHONIX_ENABLE_TOR ?= 0
|
||||||
|
|
||||||
|
WHONIX_TBB_VERSION ?= 7.5.2
|
||||||
|
```
|
||||||
|
|
||||||
|
Finally, use:
|
||||||
|
|
||||||
|
~~~
|
||||||
|
make qubes-vm
|
||||||
|
make template
|
||||||
|
~~~
|
||||||
|
|
||||||
|
Once the build is complete, the install packages for your newly built templates will be located in `/qubes-builder/qubes-src/linux-template-builder/rpm/noarch`.
|
||||||
|
Copy them from there to dom0 and install:
|
||||||
|
|
||||||
|
~~~
|
||||||
|
qvm-run --pass-io <src-vm> 'cat ~/qubes-builder/qubes-src/linux-template-builder/rpm/noarch/qubes-template-whonix-gw-4.0.0-201802250036.noarch.rpm' > ~/qubes-template-whonix-gw-4.0.0-201802250036.noarch.rpm
|
||||||
|
qvm-run --pass-io <src-vm> 'cat ~/qubes-builder/qubes-src/linux-template-builder/rpm/noarch/qubes-template-whonix-ws-4.0.0-201802250145.noarch.rpm' > ~/qubes-template-whonix-ws-4.0.0-201802250145.noarch.rpm
|
||||||
|
sudo dnf install qubes-template-whonix-gw-4.0.0-201802250036.noarch.rpm
|
||||||
|
sudo dnf install qubes-template-whonix-ws-4.0.0-201802250145.noarch.rpm
|
||||||
|
~~~
|
||||||
|
|
||||||
|
And you are done!
|
||||||
|
|
||||||
|
|
1
doc.md
1
doc.md
@ -265,6 +265,7 @@ Building
|
|||||||
* [Building Qubes Templates](https://github.com/QubesOS/qubes-template-configs)
|
* [Building Qubes Templates](https://github.com/QubesOS/qubes-template-configs)
|
||||||
* [Building a TemplateVM based on a new OS (ArchLinux example)](/doc/building-non-fedora-template/)
|
* [Building a TemplateVM based on a new OS (ArchLinux example)](/doc/building-non-fedora-template/)
|
||||||
* [Building the Archlinux Template](/doc/building-archlinux-template/)
|
* [Building the Archlinux Template](/doc/building-archlinux-template/)
|
||||||
|
* [Building the Whonix Templates](/doc/building-whonix-template/)
|
||||||
* [How to compile kernels for dom0](https://groups.google.com/d/topic/qubes-users/yBeUJPwKwHM/discussion)
|
* [How to compile kernels for dom0](https://groups.google.com/d/topic/qubes-users/yBeUJPwKwHM/discussion)
|
||||||
|
|
||||||
Releases
|
Releases
|
||||||
|
Loading…
Reference in New Issue
Block a user