qubes-doc/common-tasks/software-update-dom0.md

165 lines
7.7 KiB
Markdown
Raw Normal View History

---
2015-04-10 16:17:45 -04:00
layout: doc
title: Installing and updating software in dom0
permalink: /doc/software-update-dom0/
redirect_from:
- /en/doc/software-update-dom0/
- /doc/SoftwareUpdateDom0/
- /wiki/SoftwareUpdateDom0/
---
Installing and updating software in dom0
========================================
Why would one want to install or update software in dom0?
---------------------------------------------------------
Normally, there should be few reasons for installing or updating software in dom0. This is because there is no networking in dom0, which means that even if some bugs are discovered e.g. in the dom0 Desktop Manager, this really is not a problem for Qubes, because none of the third-party software running in dom0 is accessible from VMs or the network in any way. Some exceptions to this include: Qubes GUI daemon, Xen store daemon, and disk back-ends. (We plan move the disk backends to an untrusted domain in a future Qubes release.) Of course, we believe this software is reasonably secure, and we hope it will not need patching.
However, we anticipate some other situations in which installing or updating dom0 software might be necessary or desirable:
- Updating drivers/libs for new hardware support
- Correcting non-security related bugs (e.g. new buttons for qubes manager)
- Adding new features (e.g. GUI backup tool)
How is software installed and updated securely in dom0?
-------------------------------------------------------
The install/update process is split into two phases: "resolve and download" and "verify and install." The "resolve and download" phase is handled by the "UpdateVM." (The role of UpdateVM can be assigned to any VM in the Qubes VM Manager, and there are no significant security implications in this choice. By default, this role is assigned to the firewallvm.) After the UpdateVM has successfully downloaded new packages, they are sent to dom0, where they are verified and installed. This separation of duties significantly reduces the attack surface, since all of the network and metadata processing code is removed from the TCB.
Although this update scheme is far more secure than directly downloading updates in dom0, it is not invulnerable. For example, there is nothing that the Qubes project can feasibly do to prevent a malicious RPM from exploiting a hypothetical bug in GPG's `--verify` operation. At best, we could switch to a different distro or package manager, but any of them could be vulnerable to the same (or a similar) attack. While we could, in theory, write a custom solution, it would only be effective if Qubes repos included all of the regular TemplateVM distro's updates, and this would be far too costly for us to maintain.
How to install and update software in dom0
------------------------------------------
### How to update dom0
In the Qubes VM Manager, simply select dom0 in the VM list, then click the **Update VM system** button (the blue, downward-pointing arrow). In addition, updating dom0 has been made more convenient: You will be prompted on the desktop whenever new dom0 updates are available and given the choice to run the update with a single click.
Alternatively, command-line tools are available for accomplishing various update-related tasks (some of which are not available via Qubes VM Manager). In order to update dom0 from the command line, start a console in dom0 and then run one of the following commands:
To check and install updates for dom0 software:
$ sudo qubes-dom0-update
### How to install a specific package
To install additional packages in dom0 (usually not recommended):
$ sudo qubes-dom0-update anti-evil-maid
2018-10-08 20:37:21 -04:00
You may also pass the `--enablerepo=` option in order to enable optional repositories (see yum configuration in dom0). However, this is only for advanced users who really understand what they are doing.
You can also pass commands to `dnf` using `--action=...`.
### How to downgrade a specific package
2012-05-29 20:12:33 -04:00
**WARNING:** Downgrading a package can expose your system to security vulnerabilities.
1. Download an older version of the package:
2012-05-29 20:12:33 -04:00
~~~
2012-05-29 20:12:33 -04:00
sudo qubes-dom0-update package-version
~~~
2012-05-29 20:12:33 -04:00
2018-01-27 05:20:53 -05:00
Dnf will say that there is no update, but the package will nonetheless be downloaded to dom0.
2012-05-29 20:12:33 -04:00
2. Downgrade the package:
2012-05-29 20:12:33 -04:00
~~~
sudo dnf downgrade package-version
~~~
2012-05-29 20:12:33 -04:00
2018-04-01 06:01:34 -04:00
For example, to downgrade Xen to a specific older version available for Qubes R3.2, you would:
~~~
sudo qubes-dom0-update xen-libs-4.6.6-36.fc23.x86_64 xen-hypervisor-4.6.6-36.fc23.x86_64 xen-runtime-4.6.6-36.fc23.x86_64 xen-hvm-4.6.6-36.fc23.x86_64 xen-4.6.6-36.fc23.x86_64 xen-license-4.6.6-36.fc23.x86_64
sudo dnf downgrade xen-libs-4.6.6-36.fc23.x86_64 xen-hypervisor-4.6.6-36.fc23.x86_64 xen-runtime-4.6.6-36.fc23.x86_64 xen-hvm-4.6.6-36.fc23.x86_64 xen-4.6.6-36.fc23.x86_64 xen-license-4.6.6-36.fc23.x86_64
~~~
### How to re-install a package
You can re-install in a similar fashion to downgrading.
1. Download the package:
~~~
sudo qubes-dom0-update package
~~~
2018-01-27 05:20:53 -05:00
Dnf will say that there is no update, but the package will nonetheless be downloaded to dom0.
2. Re-install the package:
~~~
sudo dnf reinstall package
~~~
2018-01-27 05:20:53 -05:00
Note that Dnf will only re-install if the installed and downloaded versions match. You can ensure they match by either updating the package to the latest version, or specifying the package version in the first step using the form `package-version`.
### How to uninstall a package
If you've installed a package such as anti-evil-maid, you can remove it with the following command:
sudo dnf remove anti-evil-maid
2016-06-12 14:31:52 -04:00
### Testing repositories
There are three Qubes dom0 testing repositories:
2016-06-12 14:31:52 -04:00
2016-06-12 14:35:23 -04:00
* `qubes-dom0-current-testing` -- testing packages that will eventually land in the stable
2016-06-12 14:31:52 -04:00
(`current`) repository
2016-06-12 14:35:23 -04:00
* `qubes-dom0-security-testing` -- a subset of `qubes-dom0-current-testing` that contains packages
2016-06-12 14:31:52 -04:00
that qualify as security fixes
2016-06-12 14:35:23 -04:00
* `qubes-dom0-unstable` -- packages that are not intended to land in the stable (`qubes-dom0-current`)
2016-06-12 14:31:52 -04:00
repository; mostly experimental debugging packages
To temporarily enable any of these repos, use the `--enablerepo=<repo-name>`
option. Example commands:
~~~
sudo qubes-dom0-update --enablerepo=qubes-dom0-current-testing
sudo qubes-dom0-update --enablerepo=qubes-dom0-security-testing
sudo qubes-dom0-update --enablerepo=qubes-dom0-unstable
~~~
To enable or disable any of these repos permanently, change the corresponding `enabled` value to `1` in
2016-06-12 14:31:52 -04:00
`/etc/yum.repos.d/qubes-dom0.repo`.
2015-06-29 09:57:16 -04:00
### Kernel Upgrade ###
Install newer kernel for dom0 and VMs. The package `kernel` is for dom0 and the package `kernel-qubes-vm`
is needed for the VMs. (Note that the following example enables the unstable repo.)
2015-06-29 09:57:16 -04:00
2016-01-04 17:31:32 -05:00
~~~
sudo qubes-dom0-update --enablerepo=qubes-dom0-unstable kernel kernel-qubes-vm
2016-01-04 17:31:32 -05:00
~~~
2015-06-29 09:57:16 -04:00
If the update process does not automatically do it (you should see it mentioned in the CLI output
from the update command), you may need to manually rebuild the EFI or grub config depending on which
your system uses.
2015-06-29 09:57:16 -04:00
2018-07-25 02:31:19 -04:00
EFI: Replace the example version numbers with the one you are upgrading to.
~~~
2018-07-25 02:31:19 -04:00
sudo dracut -f /boot/efi/EFI/qubes/initramfs-4.14.35-1.pvops.qubes.x86_64.img 4.14.35-1.pvops.qubes.x86_64
~~~
2015-06-29 09:57:16 -04:00
Grub2
2016-01-04 17:31:32 -05:00
~~~
sudo grub2-mkconfig -o /boot/grub2/grub.cfg
~~~
2015-06-29 09:57:16 -04:00
Reboot required.
2016-01-03 11:25:36 -05:00
If you wish to upgrade to a kernel that is not available from the repos, then
there is no easy way to do so, but [it may still be possible if you're willing
to do a lot of work yourself](https://groups.google.com/d/msg/qubes-users/m8sWoyV58_E/HYdReRIYBAAJ).
2016-01-03 11:25:36 -05:00
### Upgrading over Tor ###
Requires installed [Whonix](/doc/privacy/whonix/).
Go to Qubes VM Manager -> System -> Global Settings. See the UpdateVM setting. Choose your desired Whonix-Gateway ProxyVM from the list. For example: sys-whonix.
Qubes VM Manager -> System -> Global Settings -> UpdateVM -> sys-whonix