this post was submitted on 20 Sep 2023
140 points (97.9% liked)

Linux

47353 readers
1124 users here now

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

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

From bash to zsh and everywhere in between, show me yours and I'll show you mines. Inspire others or get some feedback.

Simply copy & paste the output of alias in your terminal or add some comments to explain things for others.

Edit: Kbin users, click 'More' on a comment and use the fediverse link to read responses that have funky formatting

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 12 points 1 year ago (3 children)
alias ls='ls --time-style=long-iso'
alias la='ls -alh'
alias ncdu='ncdu --color=off'
alias wttr='curl wttr.in/?T0'
alias vim='vimx'
alias ipinfo='curl ipinfo.io --no-progress-meter | jq "del(.readme)"'
alias pp="pkill -SIGSTOP -f "
alias pc="pkill -SIGCONT -f "
[–] [email protected] 7 points 1 year ago (1 children)

Another wttr user 👏🏾👏🏾👏🏾

[–] [email protected] 4 points 1 year ago
[–] [email protected] 3 points 1 year ago (1 children)

what is vimx just wondering ?

[–] [email protected] 3 points 1 year ago (1 children)

Seems to be just normal vim, maybe some distros packages the binary (of vim with more options enabled at compile time) as vimx so that it doesn't conflict with another vim package (as an example vim-tiny). https://www.systutorials.com/docs/linux/man/1-vimx/

But only @aram@[email protected], can answer that for us.

[–] [email protected] 2 points 1 year ago

vimx support X/Wayland copy paste, using "+y or "+p

Like GVim, but on terminal... haha...

[–] noli 3 points 1 year ago (1 children)
[–] [email protected] 1 points 1 year ago

pp = process pause = pkill -f SIGSTOP

I hate when Win10 idle/pause on KVM/QEMU still taking much CPU, and the only way to stop it using pp/pkill..

https://blog.benyamin.xyz/2023/03/11/stop-windows-vm-cpu-usage-while-paused-on-qemu-linux/