Whenever I start my browser I do
This starts my browser in a jail routed only through Wireguard.The issue is that I now have to have that terminal open with all the output of Chrome. How can I start a program, in this case chrome, as a background process? I want to start the program in the terminal but also be able to continue use or even close the terminal. I can remove the output by adding
Code:
ssh -X -C jailuser@0.0.0.0 chrome
>/dev/null 2>/dev/null
but the process is still connected to the terminal and the terminal is unusable. I have also tried to append an & at the end but this yields the same situation as above, a used terminal with no output.