Showing posts with label tmux. Show all posts
Showing posts with label tmux. Show all posts

Monday, May 17, 2021

Kali Linux tmux is not displaying correctly

Kali Linux tmux is not displaying correctly

I have a Kali Linux installed using network installer. Running tmux over SSH does not display correctly. 

The reason it is not displaying correctly is that the environment variables LANG and LC_CTYPE were not set. To fix it do:
$: sudo locale-gen "en_US.UTF-8"
$: sudo dpkg-reconfigure locales
After reboot, tmux now looks much better

CPP Quick Guide

Basics Hello world User input While loop If statement For loop Switch statement Read file using ifstream Write to a file using ofstr...