Skip to content
Snippets Groups Projects
debian.md 983 B
Newer Older
  • Learn to ignore specific revisions
  • Maxime Guyot's avatar
    Maxime Guyot committed
    # Debian Jessie
    
    Marc Zahn's avatar
    Marc Zahn committed
    
    Debian Jessie installation Notes:
    
    
    Maxime Guyot's avatar
    Maxime Guyot committed
    - Add
    
    
      ```ini
      GRUB_CMDLINE_LINUX="cgroup_enable=memory swapaccount=1"
      ```
    
      to `/etc/default/grub`. Then update with
    
    
    Maxime Guyot's avatar
    Maxime Guyot committed
      ```ShellSession
    
      sudo update-grub
      sudo update-grub2
      sudo reboot
    
    Marc Zahn's avatar
    Marc Zahn committed
      ```
    
    Marc Zahn's avatar
    Marc Zahn committed
    - Add the [backports](https://backports.debian.org/Instructions/) which contain Systemd 2.30 and update Systemd.
    
    
      ```ShellSession
      apt-get -t jessie-backports install systemd
      ```
    
    
    Marc Zahn's avatar
    Marc Zahn committed
      (Necessary because the default Systemd version (2.15) does not support the "Delegate" directive in service files)
    
    Marc Zahn's avatar
    Marc Zahn committed
    - Add the Ansible repository and install Ansible to get a proper version
    
    
    Maxime Guyot's avatar
    Maxime Guyot committed
      ```ShellSession
    
    Marc Zahn's avatar
    Marc Zahn committed
      sudo add-apt-repository ppa:ansible/ansible
      sudo apt-get update
    
      sudo apt-get install ansible
    
    Marc Zahn's avatar
    Marc Zahn committed
      ```
    
    - Install Jinja2 and Python-Netaddr
    
    
      ```ShellSession
      sudo apt-get install python-jinja2=2.8-1~bpo8+1 python-netaddr
      ```
    
    
    Marc Zahn's avatar
    Marc Zahn committed
    Now you can continue with [Preparing your deployment](getting-started.md#starting-custom-deployment)