Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

List of your linux commands Apps

Off-Topic discussions about science, technology, and non Debian specific topics.
Message
Author
User avatar
None1975
df -h | participant
df -h | participant
Posts: 1389
Joined: 2015-11-29 18:23
Location: Russia, Kaliningrad
Has thanked: 45 times
Been thanked: 66 times

Re: List of your linux commands Apps

#41 Post by None1975 »

GOvatar.

What it is?

It is an avatar generation library writen in GO.

Image

To install the library and command line program, use the following:

Code: Select all

$ go get -u github.com/o1egl/govatar/...
Also available as binary packages for Mac, Linux and Windows.

Details here.
OS: Debian 12.4 Bookworm / DE: Enlightenment
Debian Wiki | DontBreakDebian, My config files on github

User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: List of your linux commands Apps

#42 Post by bester69 »

vnstat
vnStat is a console-based network traffic monitor. It keeps a log of hourly, daily and monthly network traffic for the selected interface(s) but is not a packet sniffer. The traffic information is analyzed from the proc filesystem. That way vnStat can be used even without root permissions.
https://en.wikipedia.org/wiki/VnStat
https://www.howtoforge.com/tutorial/vns ... ng-ubuntu/
Image

~$ vnstat --help
vnStat 1.15 by Teemu Toivola <tst at iki dot fi>
-q, --query query database
-h, --hours show hours
-d, --days show days
-m, --months show months
-w, --weeks show weeks
-t, --top10 show top 10 days
-s, --short use short output
-u, --update update database
-i, --iface select interface (default: eth0)
-?, --help short help
-v, --version show version
-tr, --traffic calculate traffic
-ru, --rateunit swap configured rate unit
-l, --live show transfer rate in real time


vnstati
vnStati is used to produce graphical images representing the network traffic as graphs. It takes the required information to create graphs from vnStat and stores it in the specified location.

Image
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: List of your linux commands Apps

#43 Post by bester69 »

CleanBrowsing (excellent dns filter)
https://cleanbrowsing.org/filters#family

dnsClean.sh

Code: Select all

#!/bin/sh
#

sudo chattr -i /etc/resolv.conf
sudo rm /etc/resolv.conf

#CleanBrowsind (proxy +vpn `+ adult)
 echo "nameserver 185.228.168.168" | sudo tee  /etc/resolv.conf
 echo "nameserver 185.228.169.168" | sudo tee -a /etc/resolv.conf
 nmcli con mod "NETGEAR03 1" ipv4.dns "185.228.168.168 185.228.169.168" 

 
sudo /etc/init.d/nscd restart
sleep 1
sudo chattr +i /etc/resolv.conf


Porn Filters Compared: OpenDNS, Neustar, CleanBrowsing, Norton, Yandex and AdGuard
https://hackernoon.com/porn-filters-com ... 1f207062c4

Out of the 88 porn domains, I expected all of them to be blocked. Only CleanBrowsing blocked them all, with Norton SafeConnect very close in second place by missing 5 domains:

CleanBrowsing: 100% blocked
Norton: 94% blocked (83 blocked, 5 not blocked)
Yandex: 93% blocked (82 blocked, 6 not blocked)
OpenDNS: 89% blocked (79 blocked, 9 not blocked)
Neustar: 81% blocked (72 blocked, 16 not blocked)


Testing free proxies
There are many easy to use free proxies that should be blocked when you are filtering access to pornographic content. When testing the top 10 free proxy domains, only OpenDNS and CleanBrowsing blocked all of them.
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

L_V
Posts: 1477
Joined: 2007-03-19 09:04
Been thanked: 11 times

Re: List of your linux commands Apps

#44 Post by L_V »

zsh-syntax-highlighting

For zsh shell users who prefer to stick to a limited common shell list (sh, dash, bash, zsh), command syntax highlighting (same as fizsh) can be enabled in zsh by installing zsh-syntax-highlighting Debian package.

Zsh Syntax Highlighting demo: http://www.youtube.com/watch?v=xPc5hghjpyI

Simply add this code to the end of ~/.zshrc

Code: Select all

# zsh-syntax-highlighting
if [ -f /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ]; then
    . /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
fi
more for zsh:

Code: Select all

apt search zsh-

User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: List of your linux commands Apps

#45 Post by bester69 »

fuse-zip
https://linux.die.net/man/1/fuse-zip
fuse-zip is a fuse filesystem, that enables any program to work with a ZIP archive as though it is a plain directory. Unlike KIO or Gnome VFS, it can be used in any application without modifications.
Unlike other FUSE filesystems, only fuse-zip provides write support to ZIP archives.
Also, fuse-zip is faster that all known implementations on large archives with many files.

USAGE
General usage would look like this

1 mkdir /tmp/zipArchive
2 fuse-zip foobar.zip /tmp/zipArchive
3 (do something with the mounted file system)
4 fusermount -u /tmp/zipArchive

Be patient. Wait for fuse-zip process finish after unmounting, especially on a big
archives.

Very usefull to safe disk space by launching app without deploying it

Example.:

cutvid.sh

Code: Select all

#!/bin/bash
#
pathLosscut="/tmp/LosslessCut-linux-x64"
fusermount -u "$pathLosscut"
mkdir -p "$pathLosscut"
fuse-zip -r -o nonempty  /home/user/LINUXDEBS/progs/LosslessCut-linux-x64.zip "$pathLosscut/"

cd "$pathLosscut/LosslessCut-linux-x64"
./LosslessCut &
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: List of your linux commands Apps

#46 Post by bester69 »

pdfposter
Pdfposter can be used to create a large poster by building it from multiple pages and/or printing it on large media. It expects as input a PDF file, normally printing on a single page. The output is again a PDF file, maybe containing multiple pages together building the poster. The input page will be scaled to obtain the desired size.
https://pdfposter.readthedocs.io/en/stable/Usage.html
https://pdfposter.readthedocs.io/en/sta ... mples.html

Examples.:
pdfposter -mA3 -pA0 a4.pdf out.pdf:
Prints an A4 input file on 8 A3 pages, forming an A0 poster.
pdfposter -p3x3Let a4.pdf out.pdf:
Prints an inputfile on a poster of 3x3 Letter pages.
pdfposter -mA0 input.pdf out.pdf:
Enlarges an inputfile to print on a large-media A0 capable device.
pdfposter -s4 input.pdf out.pdf:
Enlarge an inputfile exactly 4 times, print on the default A4 media, and let pdfposter determine the number of pages required.
pdfposter -m10x10cm -pa0 a4.pdf out.pdf:
Just to show how efficient pdfposter is: This will create a file containing 192 pages, but only 15 times as big as the single page. With a4.pdf being a quite empty page, this ratio should be even better for filled pages.
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

Deb-fan
Posts: 1047
Joined: 2012-08-14 12:27
Been thanked: 4 times

Re: List of your linux commands Apps

#47 Post by Deb-fan »

ALL OF EM ... :D

One cool one I'd found not long ago came to mind when read this threads title, it's called ncdu. ie: Try "ncdu /var/log" think it's cool. Haven't really gotten around to learning or using it much.
Most powerful FREE tech-support tool on the planet * HERE. *

Cyborg
Posts: 38
Joined: 2016-12-01 19:07
Has thanked: 1 time
Been thanked: 2 times

Re: List of your linux commands Apps

#48 Post by Cyborg »

I quite like tldr (sudo apt install tldr). It gives you a summary of the man page of most commands, with some typical examples.
Keep it up-to-date by running tldr --update

User avatar
wizard10000
Global Moderator
Global Moderator
Posts: 557
Joined: 2019-04-16 23:15
Location: southeastern us
Has thanked: 76 times
Been thanked: 85 times

Re: List of your linux commands Apps

#49 Post by wizard10000 »

Deb-fan wrote:ALL OF EM ... :D

One cool one I'd found not long ago came to mind when read this threads title, it's called ncdu. ie: Try "ncdu /var/log" think it's cool. Haven't really gotten around to learning or using it much.
ncdu has been my go-to for awhile. There really isn't much to learn and it's pretty darn handy :)
we see things not as they are, but as we are.
-- anais nin

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 132 times

Re: List of your linux commands Apps

#50 Post by Head_on_a_Stick »

deadbang

Deb-fan
Posts: 1047
Joined: 2012-08-14 12:27
Been thanked: 4 times

Re: List of your linux commands Apps

#51 Post by Deb-fan »

Wizard10000 :) , another I find myself using often is mlocate ... for the locate cmd. ie: "locate lightdm |grep config" etc etc. One thing recently discovered about it I don't so much like is the thing has been set in Stretch and Buster to update it's database daily. Noted updatedb and find were smashing my cpu(s), while was dorking around. So ended up tracking it down to cron.daily and just chmod'ed it's file so it's no longer executable. Just run "updatedb" manually as needed, don't need it doing it ... itself daily. Noticed often you have to do itself yourself anyway, install something, start trying to find its config files and locate won't cause it hasn't updated recently enough.
Most powerful FREE tech-support tool on the planet * HERE. *

arzgi
Posts: 1185
Joined: 2008-02-21 17:03
Location: Finland
Been thanked: 31 times

cli programs you use

#52 Post by arzgi »

I almost only boot to xfce, but have at least one terminal open in each workspace. It's nice to see, that new editors and other programs for cli are still developed.

So please share, what programs do you use at terminal window!

My editor of choice is vim.

ranger is an excellent filemanager, can preview many formats, I have configured it to preview epub, odt, pdf and even some simple docs with some other apps (epr.py (https:// github.com/wustho/epr), odt2txt, catdoc, antiword), pictures with feh.

feh cli picture viewer works also on its own, can even do some simple editing: mirror, rotate. Also the others in the above list do not need ranger to work.

mc is great two-panel filemanager, since I installed ranger I don't need it much, only use it to sync my phone with laptop.

cmus I use to listen music.

I use elinks to read news. Firefox for other browsing :)

tmux ('terminal multiplier') looks interesting, but have not installed because the monitor of this laptop is 11.5". Tried, but terminals went too small.

arzgi
Posts: 1185
Joined: 2008-02-21 17:03
Location: Finland
Been thanked: 31 times

Re: List of your linux commands Apps

#53 Post by arzgi »

trans cli google translator

Buster package translate-shell

Code: Select all

$ trans en:fi 'red herring'
red herring

punainen silli

Määritelmät kohteelle red herring
[ English -> Suomi ]

lauseke
    harhautus
        red herring
    harhautusyritys
        red herring

red herring
    punainen silli, harhautus
arto@acer:~$ trans en:de 'red herring'
red herring

Ablenkungsmanöver

Määritelmät kohteelle red herring
[ English -> Deutsch ]

substantiivi
    (das) Ablenkungsmanöver
        diversionary tactic, red herring, diversion

red herring
    Ablenkungsmanöver, roter Hering

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 132 times

Re: List of your linux commands Apps

#54 Post by Head_on_a_Stick »

Bottom

A cross-platform graphical process/system monitor with a customisable interface and a multitude of features. Supports Linux, macOS, and Windows. Inspired by both gtop and gotop.

Image

https://github.com/ClementTsang/bottom
deadbang

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 132 times

Re: List of your linux commands Apps

#55 Post by Head_on_a_Stick »

sysmgr

A POSIX sh system-supervisor meant to take away the complexity of today's alternatives.

https://github.com/cemkeylan/sysmgr

The author describes runit as "too complex" :-)
deadbang

User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: List of your linux commands Apps

#56 Post by bester69 »

tizonia (Music Player) + SoundCloud (GREAT PLAYER!!! 8)
A command-line streaming music client/server for Linux.
- Support for Spotify (Premium),
- Google Play Music (free and paid tiers),
- YouTube, SoundCloud,
- Dirble, Plex servers and Chromecast devices.
http://tizonia.org

snap install tizonia
edit tizonia.conf and add Auth_token
Tip.: You can get one SoundCloud token by installing Auryo and copy/use that one)

Code: Select all

# SoundCloud configuration
# -------------------------------------------------------------------------
soundcloud.oauth_token =1-27xxx-20xx77614-de2187bcb0ad7
# soundcloud.buffer_seconds = size of the audio buffer (in seconds) to use
let you here a script for listenning my favourite Artist ( :arrow: its wort it!!, hundreths of melodic hours :wink: ).:
mario.sh

Code: Select all

#!/bin/bash
#
clear && killall tizonia
tizonia --help soundcloud
tizonia --soundcloud-creator JoseMarioMusik  --shuffle
tizonia --help keyboard
Keyboard control:
[p] skip to previous file.
[n] skip to next file.
[SPACE] pause playback.
[+/-] increase/decrease volume.
[m] mute.
[q] quit.


Image
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 132 times

List of your linux Apps

#57 Post by Head_on_a_Stick »

GitHub CLI

GitHub CLI brings GitHub to your terminal. Nice.

EDIT: the packaging isn't the best but they have a Debian buster repository.
deadbang

User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: List of your linux commands Apps

#58 Post by bester69 »

nconvert (xnconvert command line)
NConvert is a powerful command line multi-platform batch image processor with more than 80 commands. Compatible with 500 image formats.
NConvert is Multi-platform, it is available for Windows, Mac, Linux, FreeBSD, OS/2, DOS32 LE, MSDOS, ATARi,BeOS x86, QNX, Irix, Solaris, HP-UX, AIX, etc..
https://www.xnview.com/en/nconvert/
**NConvert is provided as FREEWARE (NO Adware, NO Spyware) for private or educational use (including non-profit organizations).
If you enjoy using NConvert, feel free to help the developer with a small donation.



Features:
Metadata Editing.
Transforms: Rotate, Crop, Resize, ...
Adjustments: Brightness, Contrast, saturation, ...
Filters: Blur, Emboss, Sharpen, ...
Effects: Masking, Watermark, Vignetting,


Examples.:
nconvert -info sal.jpg

Code: Select all

nconvert -info sal_1.jpg 
** NCONVERT v7.39 (c) 1991-2019 Pierre-E Gougelet (Feb 25 2020/13:19:45) **
        Version for Linux x86 (X11)  (All rights reserved)
** This is freeware software (for non-commercial use)

sal_1.jpg : Success
    Format               : JPEG TrueColor (v1.1)
    Name                 : jpeg
    Compression          : JPEG
    Width                : 456
    Height               : 296
    Components per pixel : 3
    Bits per component   : 8
    Depth                : 24
    # colors             : 16777216
    Color model          : RGB
    Bytes Per Plane      : 1368
    Orientation          : Top Left
    Xdpi                 : 72
    Ydpi                 : 72
    Page(s)              : 1
nconvert -out jpeg -q 75 -o myresult sourcefile.bmp
nconvert -sepia 52 -blur 28 -out jpeg -q 80 sourcefile.bmp (Sepia filter + bur)
nconvert -wmopacity 25 -wmflag bottom-left-wmsize 28 -wmfile "/home/user/watermark.png" -out jpeg -q 75 -o myresult sourcefile.bmp (watermark mask)
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

User avatar
sickpig
Posts: 589
Joined: 2019-01-23 10:34

Re: List of your linux commands Apps

#59 Post by sickpig »

I am waiting for the post announcing Microsoft Edge as someone's linux app. That should be fun :D

User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: List of your linux commands Apps

#60 Post by bester69 »

sickpig wrote:I am waiting for the post announcing Microsoft Edge as someone's linux app. That should be fun :D
No way, that never would happend..even me, have some scruples :?
but hey, some friendly or great close code apps deserve to coexists with linux i think..
and nconvert is an amazing friendly and powefull image edition tool.. and furthermore is freeware and free of spyware.. this close application deserve a tiny place in linux hearts
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

Post Reply