Main public logs

From mylearnings
Jump to navigationJump to search

Combined display of all available logs of mylearnings. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 12:32, 16 June 2025 Pristal talk contribs created page Terminal Multiplexer (TMUX) (Created page with "* Open a tmux session in shared mode. <pre> tmux -S /tmp/<name> </pre> * Connect to a shared session. <pre> tmux -S /tmp/<name> attach * Detach from current session <pre> <prefix> + d </pre> * View all the tmux sessions running. <pre> tmux ls </pre> * Attach to a session. <pre> tmux attach -t <name/number> </pre> * Rename a tmux session. <pre> tmux rename-session -t <session name/number> <new name> </pre> * Start a new tmux session with name <pre> tmux new -s <sess...")