Issue
I try to run a jar file from shell on my qnap nas and tried to use nohup:
nohup java extender.jar &
But i get an error
nohup: no such file or directory
if i run
java extender.jar
it works.
i tried to find nohup
find -name nohup
but the result is empty. It seems to me nohup is not installed. But how can i install nohup? Sorry for this question but i am new to linux.
Solution
nohup is not installed on a QNAP NAS!
You can install it:
- Install ipkg from Webinterface Application Manager (QPKG)
- Login via ssh and run:
- ipkg update
- ipkg list | grep coreutils
- ipkg install coreutils
Thats all!
Answered By - Mike