You are working at a terminal window of a server at the office, but you want to continue this work by remotely accessing the terminal session from your home office.
Which command will you need to use to accomplish this?
- screen
- bg
- -tty-release
- Ctrl-fa, r
- bg -term disconnect
Answer(s): A
Explanation:
The screen command will allow you to create and manage multiple terminal sessions that can be detached and resumed later. You can use the screen command to start a new session, then detach it with Ctrl-a d, and reattach it from another location with screen -r.
Reference:
https://documentation.suse.com/sles/15-SP3/html/SLES-all/cha-screen.html
Reveal Solution
Next Question