Tmux
- Categories:
- console
Permasalahan utama saat melakukan koneksi SSH di jaringan yang kurang stabil adalah ketika lost connection ssh session menghilang.
Masalah ini dipecahkan oleh tool bernama Screen dan Tmux. Saya sendiri lebih memilih Tmux karena entah kenapa lebih enak dalam menggunakannya.
Dasar - Dasar Tmux
Buat Session Baru
tmux new -s example
Buka Tab Baru
Ctrl + b
kemudian tekanc
Ctrl + b
kemudian tekan angka0
atau1
dan seterusnya untuk memilih tab
Detach session
Ctrl + b
kemudian tekand
Attach session
tmux attach
tmux attach -t example
tmux a -t example
List Session
tmux list
Kill session Tmux
tmux kill-session -t example
Contoh penggunaan
- SSH ke server
- Jalankan Tmux di server:
tmux new -s example
- Jalankan sesuatu di server, misal unzip file yang cukup besar
- Detach Tmux
Ctrl+b d
- Exit ssh, lakukan hal lain
- Kembali ssh dan attach session Tmux
tmux a -t example
- Maka otomatis akan lanjut ke proses unzip pada langkah ketiga diatas
Berikut beberapa artikel menarik tentang Tmux.
Recent Posts
How to Defend Against Brute-Force and DoS Attacks with Fail2ban, Nginx limit_req, and iptables
In this tutorial, I’ll explain how to protect your public-facing Linux server and Nginx web server from common threats, including brute-force and DoS attacks.
Is Getting AWS Solutions Architect Associate Certification Worth It?
If you are a full-time Software Engineer, there's no strong need to pursue this certification.
DevSecOps
My Notes about DevSecOps
AWS Secrets Manager
Explanation about AWS Secrets Manager with example code.
Envelope Encryption
Envelope encryption is the practice of encrypting plaintext data with a data key, and then encrypting the data key under another key.