Search for: vim

AMD Ryzen 5600G + Gigabyte Aorus B550 + 2x NVMe Kingston SA2000M81000G + RAID0 (AMD RAIDXpert2) worth it? does it work with GNU Linux? 8k Youtube Benchmark passed on GNU Linux Debian 11 MATE – enable enable SVM Mode in UEFI BIOS to enable KVM Virtualization support
17 Dec 2022

hardware used: AMD Ryzen 5600G Gigabyte Aorus B550 Elite AX v1 (Rev 1.1) 2x NVMe Kingston SA2000M81000G those are DATACENTER capable NVMes! (at a pretty nice price!) energy meassurements: meassured wattage when PC was idle (doing nothing): GNU Linux Debian […]

08 Nov 2022

in order to preserve best audio quality instead of converting audio, it is better (better audio quality and also faster) to simply extract the aac from an mp4 like this: vim /scripts/aacFromMp4.sh #!/bin/bash # 🙂 ffmpeg rocks! if [ -z […]

GNU Linux bash – optimizing basics – the ll alias to ll
26 Jul 2022

ok an alias is simply an appreviation (ll) of a longer command (ls -lah –color) defined in one of those files: user@Debian8:~$ bash -l; # simulates a login 1. hello from /etc/bash.bashrc 2. hello from /etc/profile 7. hello from ~/.bash_profile […]

GNU Linux bash – notebook laptop test battery runtime script
08 Jul 2022

how long (many hours) will this notebook-laptop battery last? some sensors/softwares report/calculate things like this… 5days on one charge is a very very optimistic estimate for most intel or amd based notebooks (even for RISC/ARM based notebooks-laptops that would be […]

wie privatsphäre online verbessern mit tor und kostenloser vpn firmware für router / How to protect privacy online with tor and free vpn firmware for routers – how to setup tor node / Как защитить конфиденциальность онлайн с помощью tor и бесплатной прошивки vpn для роутеров – как настроить tor узел / Як захистити конфіденційність в Інтернеті за допомогою tor і безкоштовної прошивки VPN для маршрутизаторів – як налаштувати вузол tor / Cómo proteger la privacidad en línea con tor y firmware vpn gratuito para enrutadores: cómo configurar el nodo tor / Comment protéger la confidentialité en ligne avec tor et le firmware VPN gratuit pour routeurs – comment configurer le nœud tor / 如何使用路由器的tor和免费VPN固件在线保护隐私 – 如何设置tor节点
31 Mar 2022

0) for security: keep all internet connected devices as up to date as possible! “Freifunk updates its router firmware and closes a critical security vulnerability that could allow attackers to install their own firmware on the devices” (src: heise.de) Also […]

selling cookies: privacy madness: the “short” list of companies that want to know what forbes article a user clicked on (and god knows what else)
31 Jan 2022

everyone hates em…. cookie banners it’s “funny” (no actually not and forbes.com is not a site this user is visiting very often, it was this article that the user was interested in: https://www.forbes.com/sites/elizabethhowell1/2022/01/04/spacex-starship-orbital-launch-delayed-further-into-2022/), https://www.space.com/author/elizabeth-howell is actually writing for space.com, so […]

GNU Linux Debian 10 – gcc – where has the manpage gone? (gcc-doc) – how to create a man page – how to save export manpage to text file
19 Dec 2021

they have gone missing. but they are available again under Debian 11 https://packages.debian.org/bullseye/gcc-doc hostnamectl; # tested on Operating System: Debian GNU/Linux 11 (bullseye) Kernel: Linux 5.10.0-9-amd64 Architecture: x86-64 apt search gcc-doc Sorting… Done Full Text Search… Done gcc-doc/stable,stable 5:10.1.0-1 amd64 […]

GNU Linux bash – script to generate thumbnails
02 Dec 2021

# requirements su – root apt update # has the convert command apt install imagemagick vim /scripts/create_thumbs.sh #!/bin/bash THUMBS_FOLDER=/path/to/images/thumbnails for file in /path/to/images/* do # next line checks the mime-type of the file IMAGE_TYPE=`file –mime-type -b “$file” | awk -F’/’ […]