Comment by bufh on How do I find the version of bash I am running?
@Tino well, you could do a $SHELL --version, but again SHELL might be overwritten (and all shell do not support the --version flag).
View ArticleComment by bufh on How do I find the version of bash I am running?
typo, should be something like [ "${BASH_VERSINFO}" -lt 4 ] or [ "${BASH_VERSINFO[0]}" -lt 4 ]
View ArticleComment by bufh on Command for determining my public IP?
@saji ifconfig if obsolete, please use iproute2 ;^). The command would be ip -o -4 a s eth0 | awk '{sub(/\/.*/, "", $4);print $4}'.
View ArticleComment by bufh on How to get (from terminal) total number of threads (per...
You can suppress the "NLWP" with "h" (hide headers); ie: ps h -o nlwp $pid
View ArticleComment by bufh on Where can you download 32 bit edition of Google Chrome for...
Other compatibles answers on StackExchange.
View ArticleComment by bufh on Ubuntu 20.04 - Terminus font not working anymore
That's sad... There were a reason for fixed size fonts (such as Terminus), to have a perfect rendering.
View ArticleComment by bufh on How to temporarily disable PulseAudio while running a game...
Then replace the rm with sed -i '/\<autospawn\>/d' $HOME/.config/pulse/client.conf...
View ArticleAnswer by bufh for Packard Bell VAB70 keyboard & touchpad not working
6 years and two months later, I stumbled upon the same problem (beside a few functions keys, the keyboard and touchpad are unusable under Linux Mint/Ubuntu 20).For the posterity, I found that upgrading...
View ArticleComment by bufh on How do you select the fastest mirror from the command line?
Thank's! This solution is easily usable to compare non-public mirrors (in air gapped/disconnected networks).
View Article