diff --git a/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Packaged version for Linux.html b/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Packaged version for Linux.html index fb75e87d3..6d92fef26 100644 --- a/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Packaged version for Linux.html +++ b/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Packaged version for Linux.html @@ -3,8 +3,9 @@
wget
(or curl
) to download latest TriliumNextNotes-Server-[VERSION]-linux-x64.tar.xz
(notice -Server
suffix)
- on your server.wget
(or curl
) to download latest TriliumNextNotes-Server-[VERSION]-linux-x64.tar.xz
(copy
+ link from release page,
+ notice -Server
suffix) on your server.tar -xf -d TriliumNextNotes-Server-[VERSION]-linux-x64.tar.xz
cd trilium-linux-x64-server
@@ -17,7 +18,9 @@
The problem with above steps is that once you close the SSH connection, the Trilium process is terminated. To avoid that, you have two options:
nohup ./trilium &
.nohup ./trilium.sh &
.
+ (nohup keeps the process running in the background, &
runs
+ it in the background)