Common steps :
- Install MSYS2-x86_64
- At the end of the installation, run it (either automatically or manually)
Common steps :
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import xml.etree.ElementTree as et | |
| import logging as log | |
| import os.path | |
| import fnmatch | |
| import argparse | |
| import xlsxwriter | |
| from datetime import datetime as dt |
| #!/bin/sh -e | |
| # Written by PlatinumMaster, based on the work of mcd1992. | |
| mkdir -p /mnt/disk | |
| echo "Wiping the plugged in disk now, you have been warned!" | |
| # Wipe disk and mount it | |
| mkfs.ext4 /dev/block/sda1 | |
| mount /dev/block/sda1 /mnt/disk | |
| cd /mnt/disk |
| Action | tmux | screen |
|---|---|---|
| start a new session | tmux tmux new tmux new-session |
screen |
| start a new session with a name | tmux new -s name | screen -S name |
| re-attach a detached session | tmux attach tmux attach-session |
screen -r |
| re-attach a detached session with a name | tmux attach -t name tmux a -t name |
screen -r name |
| re-attach an attached session (detaching it from elsewhere) | tmux attach -dtmux attach-session -d | screen -dr |