Страница 1 из 1

Если не стартует i2p

Добавлено: 29 янв 2020, 03:01
ALEXX
i2p.service - load-balanced unspoofable packet switching network



Post by sassy » Tue Oct 31, 2017 11:19 am
According to https://help.ubuntu.com/lts/serverguide/apparmor.html you can disable AppArmor, or try to add profile for /usr/sbin/wrapper.
Disable AppArmor:

Код: Выделить всё

sudo systemctl stop apparmor.service
sudo update-rc.d -f apparmor remove
I choose second option and added profile:
1) install standard profiles:

Код: Выделить всё

sudo apt-get install apparmor-profiles
2) install tools:

Код: Выделить всё

sudo apt-get install apparmor-utils
3) add profile for wrapper:

Код: Выделить всё

sudo aa-genprof /usr/sbin/wrapper
4) make profile complain instead of enforce:

Код: Выделить всё

sudo aa-complain /usr/sbin/wrapper
Now start service:

Код: Выделить всё

sudo systemctl start i2p.service
Top