Tumgik
#Tmux
theeclecticlibrary · 27 days
Text
Tumblr media Tumblr media
One of the most intimidating and also scariest facts I've been coming to terms with is how true that one xkcd comic is about how many people & libraries are reliant on some package that has been thanklessly maintained by one person in Nebraska since 2003.
In an entirely unrelated discovery, I learned today that tmux (you know, that one terminal multiplexer that is used by god knows how many people) is functionally maintained & developed by one dude, Nicholas Marriott, who was the original creator of the program back in 2007. There is a contribution guide, and he does have a list of recommended issues to work on. So, if you're looking for an open source project to contribute to, and you use tmux, consider :)
11 notes · View notes
daemonhxckergrrl · 11 months
Text
22 notes · View notes
nixcraft · 1 year
Text
Read more: Getting started with tmux
5 notes · View notes
saritisort · 3 days
Text
Geçtiğimiz günlerde uyuşturucu haberleri ile gündeme gelen sanatçı Kalbeni ihbar eden kişinin arkadaşı olduğu ortaya çıktı arkadaşının daha önce ünlü şarkıcıyı şantaj edip para istediği söylentileri gittikçe güçleniyor iyi yorumlaşmalar dilerim
1 note · View note
linuxtldr · 24 days
Text
1 note · View note
ubuntushell · 3 months
Text
0 notes
peeterjoot · 5 months
Text
Some new tmux tricks (for me)
I’ve been using tmux since RHEL stopped shipping screen by default.  We now use Oracle Linux at work, not RHEL, and perhaps Oracle Linux ships screen, but I’m unlikely to switch back now. I blundered upon a tmux book at the Toronto Public Library today.  It’s a little book, and most of what is interesting looking to me, is in the first couple chapters.  Here are some notes. tmux sessions. I…
Tumblr media
View On WordPress
0 notes
thelinuxhelp · 1 year
Text
How to Use tmux in linux with Examples
Tmux (Terminal Multiplexer) in Linux is a powerful tool that allows you to manage multiple terminal sessions, windows, and panes within a single terminal. It is particularly useful for developers and system administrators who need to work with multiple terminal sessions simultaneously. In this article, we will cover the basics of Tmux, including its installation, creating and managing sessions,…
Tumblr media
View On WordPress
0 notes
almatinsiswanto · 1 year
Text
Swap Ctrl and Caps Lock in KDE Plasma
Swap Ctrl and Caps Lock in KDE Plasma
Untuk mereka yang terbiasa menggunakan tmux atau vim / neovim mungkin sudah tidak asing lagi dengan metode swap ini. Tmux menggunakan Ctrl + b sebagai default leader key, tapi karena posisi tombol b jauh dari Ctrl, banyak yang kemudian mengubah leader key untuk tmux menjadi Ctrl + a. Meskipun demikian, tombol Ctrl dan a juga masih terasa berjauhan, sehingga menukar Ctrl dengan Caps lock sangat…
Tumblr media
View On WordPress
0 notes
ciberninjas · 2 years
Text
¿Cómo ejecutar una sesión SSH desde tu smartphone?
¿Cómo ejecutar una sesión SSH desde tu smartphone?
Los teléfonos inteligentes en estos días tienen energía más que suficiente para ejecutar clientes SSH livianos, lo que permite conectarse a tus VPS y solucionar problemas importantes cuando no tiene acceso a una computadora portátil y WiFi. Clientes SSH de teléfonos inteligentes Los clientes SSH móviles realmente permiten hacer lo mismo que cualquier software de SSH en un servidor. Lo que los…
View On WordPress
0 notes
ryanvgates · 2 years
Text
MongoDB Long Running Query
MongoDB Long Running Query
Problem You have a query that you need to run that could take hours or days. You need to run it so that it won’t impact production and it will eventually provide all the results. Solution Create a script.js file to put the mongodb commands inUse .toArray() to prevent it from printing out a limited number of documents and the it for moreHere’s an example of my script This file contains…
Tumblr media
View On WordPress
0 notes
daemonhxckergrrl · 1 month
Text
using tmux to build my dev environment beats using my wm (especially as each tmux window can be for a separate project) but I wish there was an easy way to synchronise all panes in a window to the same directory.
also I'm now running multiple instances of neovim so maybe wanna think about that
3 notes · View notes
nksistemas · 4 months
Text
Cómo Instalar y Utilizar Tmux en MacOS: Guía Completa
¿Alguna vez has deseado realizar varias tareas simultáneamente en una terminal o trabajar con varios servidores diferentes? Tmux es la solución que necesitas. Este programa te permite dividir una terminal en varias secciones, teniendo una shell en cada una para hacer lo que desees. En este artículo, aprenderás cómo instalar y utilizar Tmux en MacOS. Si buscas paquetes VPS económicos, el sitio web…
Tumblr media
View On WordPress
0 notes
song-of-the-rune · 5 months
Text
you ever spend hours trying to figure out why something's not working only to realize that the reason is very simple. you see. I am using the wrong program. This is not the program that I thought I was sending commands to. So of course it does not understand them.
0 notes
mirqmarq428 · 6 months
Text
Got some ram and a watch battery for the bios, but the cool people were closed today so no PSU. Imma see if they've got a cheap amd gpu also - i just wanna run htop on a 4k TV.
0 notes
intercal · 1 month
Text
so on linux, I use this tool called "tmux" that basically lets you have multiple terminals open at once. it's liked tabbed terminals, except it was before tabs were invented. it's just what I use because I like the hotkeys better. whatever.
well there's this safeguard that prevents you from opening your same tmux session inside of itself. it checks the presence of the TMUX environment variable, and if it's set, will tell you "don't do that unless you know what you're doing". nice little safeguard, easy and simple.
HOWEVER. I've been using python poetry (virtualenv manager), and I've been using "poetry shell" that will open up a shell with all of the environment variables set that target my virtualenv. today I accidentally ran "tmux attach" inside of the poetry shell and was greeted with a session attempting to nest inside of itself... whoops. for some reason the safeguard didn't take. I checked the environment and the TMUX variable IS being set, so for some reason tmux isn't reading this.
now if I was using a lesser operating system (cough windows cough), I would have no course of action. you're fucked. "doctor windows, my tmux session nests when I accidentally type 'tmux attach' inside of the session," doctor says "then don't accidentally type 'tmux attach' inside of the tmux session". well doc, accidents happen. but in LINUX, I can just write a script that *actually* checks that environment variable and flat-out denies me my footgun, at least as a temporary solution until I get around to checking out the tmux source code debugging it and figuring out why it's letting me use nested sessions - instead of begging volunteers on the microsoft support forums to PLEASE FIX THEIR SHIT (which obviously they can't do since there's 14 layers of bureaucracy protecting their sweet, innocent developers from doing anything useful).
once again, W LINUX, L MICROSOFT
10 notes · View notes