Startup ‐ Linux - babsonnexus/stream-link-manager-for-channels GitHub Wiki

  1. In a terminal, navigate to your Streaming Library Manager directory and type in the following command:

    ./slm.sh startup
    
  2. As the process completes, you will see something like this:

    image

  3. To check if the task is scheduled to run at startup, enter:

    ls /etc/init.d               # For Debian/Ubuntu/Mint
    ls /etc/systemd/system       # For RedHat/CentOS/Fedora/Arch/Manjaro/OpenSUSE
    ls /usr/local/etc/rc.d       # For Synology
    

    You should see a file named slm_startup.sh:

    image

  4. The next time you reboot, Streaming Library Manager will automatically start. Similarly, you can manually start it by entering:

    ./slm.sh
    
  5. It may look like nothing has happened, but if you type in this command:

    ps aux
    

    You should see ./slm running in the background. If you want to only look for that process, type:

    ps aux | grep [s]lm
    

    In either case, you should see something similar to this:

    image