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.

38 lines
950 B

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