EDIT: lemmy changed where this comment went. (BUG)
Linux
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
argos-translate for offline machine language translation.
tmux & neovim for editing files and organizing the terminal displays.
asciinema for recording and playing back terminal sessions.
I have mostly replaced all command line stuff with Emacs, but there are still a few CLI utilities that I continue to use, whether I am in the CLI directly or whether I am using Emacs:
tmux
orscreen
(terminal multiplexing)bash
(shell scripting)grep
,sed
(filtering, formatting)ps
,pgrep
,pkill
(process control)ls
,find
,du
(filesystem search)ssh
,nc
,rsync
,sshfs
,sftp
(remote access, file transfer)tee
,dd
(pipe control)less
,emacs
,diff
,patch
,pandoc
(text editing)man
,apropos
(manual)tar
,gzip
,bzip2
,xz
(archiving)hexdump
,base64
,basenc
,sha256sum
(data encoding, checksums)wget
,curl
, (HTTP client)dpkg
,apt-get
,guix
(package management)mpv
(media player)ldd
,objdump
,readelf
(inspecting binary files)zfs
(maintaining my backup filesystem)
yt-dlp
- gcalcli : helps accessing google calendar using calendar api
- neix : rss reader
- I don't know if it counts but : fish shell
ranger
andmc
- both are file managers, and their approach is so different that I choose one of them I need at the moment depending on what do I want to do (mc
for traditional file management,ranger
for looking around the directory tree and peeking into files)htop
,tmux
- classicsweechat
,profanity
- for my IM needsripgrep
- for searching through filesmagic-wormhole
for file and ssh public key exchangemosh
for when the network conditions aren't idealnmap
to see if that machine I've connected into the network is up and what IP did it getbat
for quick looking into filesgdb
, with mandatory gdb dashboardnvim
for serious text and code editing,micro
for more casual editing
Ranger and/or vifm as file managers. Can't live without them
off the top of my head:
- vim
- git
- bash
- make
- whatever-compiler-im-using
- curl
- less
- grep
I mentioned this in another post, but tmux is awesome
Took me a while to get used to. As i have used screens for years. But tmux is so much better in the end
fzf for quickly matching file names especially deep in the directory hierarchy
ripgrep for quickly searching for text content within files
dtrx for handling the right extractions of different archive types
What is the difference between ripgrep
and just plain grep?
ripgrep
is a reimplementation of grep
in Rust. It benchmarks faster for large file searches and also comes with quality of life features like syntax highlighting by default.
I basically live in nvim
. Being able to configure my editor in an actual programming language makes it so much more useful to me than vim
could ever be.
I found lua to be a better programming language, but the text specific design of vimscript makes way more sense to my brain.
Yes, Vimscript is way more intuitive than Lua in a lot of ways. And as far as programming languages go, Lua has some strange design choices that I'm not the biggest fan of, either. However, it really does open up a lot of possibilities when your configuration is programmatic.