Skip to content

Commit

Permalink
Replace detach with kill for screen
Browse files Browse the repository at this point in the history
Detaching from screen still leaves it running in the background which causes people to need to use `sudo` to attach to it again.
Instead if we kill the screen instance with `k` then we can just attach screen again in unprivileged mode.
You also need to confirm the exit by pressing `y`.
  • Loading branch information
marnovandermaas authored and nbdd0121 committed Oct 26, 2023
1 parent 47ae8a4 commit d39d898
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,8 @@ screen /dev/ttyUSB1 115200
If you see an immediate `[screen is terminating]`, it may mean that you need super user rights.
In this case, you may try using `sudo`.

To exit from the `screen` command, you should press control and a together, then release these two keys and press `d`.
To exit from the `screen` command, you should press `ctrl-a` followed by `k`.
You will need to confirm the exit by pressing `y`.

## Debugging an application

Expand Down

0 comments on commit d39d898

Please sign in to comment.