Description | Command |
---|---|
Start a new session with session name | screen -S <session_name> |
List running sessions / screens | screen -ls |
Attach to a running session | screen -x |
Attach to a running session with name | screen -r |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
head -n 4096 /dev/urandom | openssl sha1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# these info are valid today | |
# 4th March 2013 | |
# flush latest Arch for Pi dist | |
# via dd or other ways | |
# With A DHCPed Network Cable | |
pacman -Syu | |
sync | |
reboot |
Wait a minute, why would anyone use 'screen', and what is it anyway?
Well, because it's both AWESOME and FUN!!
It lets you keep your own session running on all the servers you already use, and chances are, it's probably already installed and waiting for you! (since 1987!)
| Description | Command |