# Install from official repository: # http://support.ajenti.org/forums/5-kb/topics/1116-installing-on-debian/ # Web available on port 8000 (HTTPS): https://wdmc:8000 # User/Pass is root/mycloud (Like on SSH/Console) ### MANUAL INSTALL ### # Increase temp size for pip build mount -o remount,size=384M /tmp # Install dependencies apt install build-essential python-pip python-dev python-lxml libffi-dev libssl-dev libjpeg-dev libpng-dev uuid-dev python-dbus # Install missed dependencies: apt install zlib1g-dev python-augeas libldap2-dev libsasl2-dev # Install Ajenti with all plugins pip install ajenti-panel ajenti.plugin.dashboard ajenti.plugin.settings ajenti.plugin.plugins ajenti.plugin.filemanager ajenti.plugin.notepad ajenti.plugin.packages ajenti.plugin.services ajenti.plugin.terminal # WARNING: If install "ajenti.plugin.network" - ajenti wont run - "Config file not found or empty" # Run panel: ajenti-panel # Add autostart script (For systemd) nano /etc/systemd/system/ajenti.service # Add this: [Unit] Description=Ajenti panel After=network.target [Service] Type=forking PIDFile=/var/run/ajenti.pid ExecStart=/usr/bin/python /usr/local/bin/ajenti-panel -d [Install] WantedBy=multi-user.target # Then activate this config: systemctl daemon-reload systemctl enable ajenti systemctl start ajenti # ======================================================== # # Transmission: # https://github.com/kstep/ajenti-transmission apt install git mkdir -p /var/lib/ajenti/plugins/{models,transmission} git clone https://github.com/kstep/ajenti-models.git /var/lib/ajenti/plugins/models --depth 1 git clone https://github.com/kstep/ajenti-transmission.git /var/lib/ajenti/plugins/transmission --depth 1 service restart ajenti