Skip to content

Instantly share code, notes, and snippets.

@luiarthur
Last active December 3, 2022 13:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luiarthur/8030535486fdbcf9e5e6b65a2d9a7190 to your computer and use it in GitHub Desktop.
Save luiarthur/8030535486fdbcf9e5e6b65a2d9a7190 to your computer and use it in GitHub Desktop.
Install tmux without root permissions
# Installing TMUX without root permissions on LINUX machines is now as easy as this:
# Get the app image from tmux3 git repo.
wget https://github.com/tmux/tmux/releases/download/3.0a/tmux-3.0a-x86_64.AppImage
# Grant execute permissions.
chmod +x tmux-3.0a-x86_64.AppImage
# Move to ~/bin
mv tmux-3.0a-x86_64.AppImage ~/bin
cd ~/bin
ln -s tmux-3.0a-x86_64.AppImage tmux
# Make sure this is in ~/.bashrc or ~/.profile
# export $PATH=$HOME/bin:$PATH
# I love AppImage!!!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment