diff options
Diffstat (limited to 'documentation/ref-manual')
-rw-r--r-- | documentation/ref-manual/system-requirements.rst | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/documentation/ref-manual/system-requirements.rst b/documentation/ref-manual/system-requirements.rst index 0fc92550a5..43c3c5834b 100644 --- a/documentation/ref-manual/system-requirements.rst +++ b/documentation/ref-manual/system-requirements.rst | |||
@@ -152,8 +152,25 @@ with a supported Ubuntu or Debian Linux distribution:: | |||
152 | 152 | ||
153 | $ sudo apt install &UBUNTU_HOST_PACKAGES_ESSENTIAL; | 153 | $ sudo apt install &UBUNTU_HOST_PACKAGES_ESSENTIAL; |
154 | 154 | ||
155 | You also need to ensure you have the ``en_US.UTF-8`` locale enabled:: | ||
156 | |||
157 | $ locale --all-locales | grep en_US.utf8 | ||
158 | |||
159 | If this is not the case, you can reconfigure the ``locales`` package to add it | ||
160 | (requires an interactive shell):: | ||
161 | |||
162 | $ sudo dpkg-reconfigure locales | ||
163 | |||
155 | .. note:: | 164 | .. note:: |
156 | 165 | ||
166 | - If you are not in an interactive shell, ``dpkg-reconfigure`` will | ||
167 | not work as expected. To add the locale you will need to edit | ||
168 | ``/etc/locale.gen`` file to add/uncomment the ``en_US.UTF-8`` locale. | ||
169 | A naive way to do this as root is:: | ||
170 | |||
171 | $ echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen | ||
172 | $ locale-gen | ||
173 | |||
157 | - If your build system has the ``oss4-dev`` package installed, you | 174 | - If your build system has the ``oss4-dev`` package installed, you |
158 | might experience QEMU build failures due to the package installing | 175 | might experience QEMU build failures due to the package installing |
159 | its own custom ``/usr/include/linux/soundcard.h`` on the Debian | 176 | its own custom ``/usr/include/linux/soundcard.h`` on the Debian |