forked from blueprint-freespeech/ricochet-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.BUILD_ERRORS
45 lines (29 loc) · 1.29 KB
/
README.BUILD_ERRORS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
This file lists some common build errors and their solutions.
Error starting remote
---------------------
If you have an error like this:
----
Error: Error starting remote:
could not synchronise with container process: no subsystem for mount
----
You may be experiencing a similar but different problem. Anecdotally
this occured on Ubuntu 18.04 Bionic, kernel 4.15.0-24-generic. You need
to add systemd.legacy_systemd_cgroup_controller=1 to the kernel
boot commandline in /etc/default/grub (followed by `sudo update-grub`).
Error during debootstrap image creation
---------------------------------------
If the debootstrap-image-.log contains errors similar to the following:
W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/zesty/InRelease
Temporary failure resolving 'archive.ubuntu.com'
Check /etc/resolv.conf on the host to see if the nameserver is set to
127.0.0.1. This can happen when runc performs a bind mount of
/etc/resolv.conf and the host system is running systemd-resolved.
sudo systemctl disable systemd-resolved.service
sudo service systemd-resolved stop
Put the following line in the [main] section of your
/etc/NetworkManager/NetworkManager.conf:
dns=default
Delete the symlink /etc/resolv.conf
rm /etc/resolv.conf
Restart network-manager
sudo service network-manager restart