i want to launch windows 10 from virtualbox and i'm created a shortcut to my desktop and click on proprieties to get the commend line to start windows 10 from a menu, so i put the command in the command line using nohup so the terminal will close after it starts but i keep getting another terminal open with the nohup: ignoring input and appending output to 'nohup.out' err how can i get rid of this windows from showing up?
Asked
Active
Viewed 993 times
0
1 Answers
0
To get nohup
to "shutup" stdin, stdout and stderr all need to be explicitly directed from/to somewhere. So you could do this:
nohup cmd </dev/null >/dev/null 2>&1
But a simpler solution is to just redirect stderr since that's where the warning is coming from:
nohup cmd 2>/dev/null
Now I don't know if this will prevent the window from popping but it's a place to start. Try the short version. If that doesn't work try the first version. If neither work then we'll at least know a little more than we do now.

B Layer
- 5,171
~/Desktop/foo.desktop
.You probably just need to edit it to changeTerminal=true
toTerminal=false
– Mark Plotnick Oct 09 '17 at 19:20