There is a complex command that requires sudo:
sudo command par1 666 /home/me/...
I need to launch it so that it persists after I log off from terminal (SSH). I have discovered that nohup command is supposed to do this.
First problem is, that nohup seems to need sudo:
nohup: failed to open `nohup.out': Permission denied
nohup: failed to open `/home/me/nohup.out': Permission denied
Second thing is, that the latter parameters seem to get lost. What's the proper syntax to run command with all it's parameters asynchronously with administrator rights?