You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
956 B

  1. # Debian Jessie
  2. Debian Jessie installation Notes:
  3. - Add
  4. ```GRUB_CMDLINE_LINUX="cgroup_enable=memory swapaccount=1"```
  5. to /etc/default/grub. Then update with
  6. ```ShellSession
  7. sudo update-grub
  8. sudo update-grub2
  9. sudo reboot
  10. ```
  11. - Add the [backports](https://backports.debian.org/Instructions/) which contain Systemd 2.30 and update Systemd.
  12. ```apt-get -t jessie-backports install systemd```
  13. (Necessary because the default Systemd version (2.15) does not support the "Delegate" directive in service files)
  14. - Add the Ansible repository and install Ansible to get a proper version
  15. ```ShellSession
  16. sudo add-apt-repository ppa:ansible/ansible
  17. sudo apt-get update
  18. sudo apt-get install ansible
  19. ```
  20. - Install Jinja2 and Python-Netaddr
  21. ```sudo apt-get install python-jinja2=2.8-1~bpo8+1 python-netaddr```
  22. Now you can continue with [Preparing your deployment](getting-started.md#starting-custom-deployment)