about Grigoris Maravelias
Tag: <span>linux</span>

Tag: linux

Shared folder in linux

Suppose that we want to create a folder in which multiple users will have full access (which means that they will be able to read, write, and execute). We create the folder (under ‘/’ in this example, although it can be anywhere else): sudo mkdir test which has the following …

Fast notes on screen

> list sessions: screen -ls > resume session: screen -r > reattach (if necessary detach first): screen -d -r > detach session: screen -d > detach session (while running – keyboard shortcut): “ctrl+a”+”d” > kill session (inside session): “Ctrl+a”+”:quit” or the more obvious … “exit” > kill session (outside, list …