mirror of
https://github.com/Jackett/Jackett
synced 2024-12-23 16:27:44 +00:00
readme: add chown to linux install script (#15501)
This commit is contained in:
parent
f914945fec
commit
021b830bdf
1 changed files with 1 additions and 1 deletions
|
@ -742,7 +742,7 @@ On most operating systems all the required dependencies will already be present.
|
||||||
### Install as service
|
### Install as service
|
||||||
A) Command to download and install the latest package and run the Jackett service:
|
A) Command to download and install the latest package and run the Jackett service:
|
||||||
|
|
||||||
`cd /opt && f=Jackett.Binaries.LinuxAMDx64.tar.gz && sudo wget -Nc https://github.com/Jackett/Jackett/releases/latest/download/"$f" && sudo tar -xzf "$f" && sudo rm -f "$f" && cd Jackett* && sudo ./install_service_systemd.sh && systemctl status jackett.service && cd - && echo -e "\nVisit http://127.0.0.1:9117"`
|
`cd /opt && f=Jackett.Binaries.LinuxAMDx64.tar.gz && sudo wget -Nc https://github.com/Jackett/Jackett/releases/latest/download/"$f" && sudo tar -xzf "$f" && sudo rm -f "$f" && cd Jackett* && sudo chown $(whoami):$(id -g) -R "/opt/Jackett" && sudo ./install_service_systemd.sh && systemctl status jackett.service && cd - && echo -e "\nVisit http://127.0.0.1:9117"`
|
||||||
|
|
||||||
B) Or manually:
|
B) Or manually:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue