Skip to content

Instantly share code, notes, and snippets.

View bouwe77's full-sized avatar

Bouwe K. Westerdijk bouwe77

View GitHub Profile
@hazcod
hazcod / Nohup with zsh on Synology DSM.md
Last active October 28, 2023 22:39
How to run scripts in the background.
  • Install the ZSH shell from SynoCommunity packages
  • Connect to your Synology over SSH
  • Switch over to your new ZSH shell zsh
  • Set following parameter to allow detaching of our shell setopt NO_HUP
  • Run your command using nohup and ampersand nohup <command> &
  • Detach using CTRL+D or likewise