Search for: vim

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’/’ […]

GNU Linux Debian 10/11/Ubuntu – kvm-qemu virtualization host – guest auto resize screen – disk bench Windows 7 64Bit vm guest (only 32Bit works) – “Unable to init server: Could not connect: Connection refused” – wtf esxi has no clone button
15 Sep 2021

first off the praise: kvm-qemu is a high performance nicely scriptable virtualization system if it works, it can do pretty things 🙂 IN CONTRAST TO iESXI SH** WARE CLONING A VM IS A EASY AS: virt-clone –original debian12 –name debian12-clone […]

GNU Linux How To – kvm qemu – start – clone (multiple disks) – snapshot – restore-revert – delete – shutdown all vms – start all vms with keyword in name – snapshot all vms – add remove disks
12 Aug 2021

how to setup kvm on Debian: hostnamectl; # tested on Static hostname: lenovo Operating System: Debian GNU/Linux 10 (buster) Kernel: Linux 4.19.0-17-amd64 Architecture: x86-64 hostnamectl; # also on Operating System: Debian GNU/Linux 12 (bookworm) Kernel: Linux 6.1.0-17-amd64 # with virsh […]

GNU Linux Debian – basic simple update.sh script – security-tracker.debian.org tracker status release stable – semi-manual system update method vs full automatic updates – apt can do https now: update /etc/apt/sources.list http -> https
26 Jul 2021

updates are a bless (fixes to problems, keep system secure from hackerz) but also a curse (it might break things) on systems that follow the UNIX K.I.S.S principle, they should “just work”, to the extreme of (kernel) live patching (currently […]

online coworking space – New Ways of Online Interaction and Cooperation – workadventu.re creative innovative fun format for Digital Online Conferences as RPG GAME! Nürnberger Digital Festival
09 Jul 2021

update: join me @ online-coworking-space.com https://play.workadventu.re/@/online/coworking/space.com first of: the online conferecing as RPG game format is really fun and innovative idea to make online events more fun! 🙂 (it is accompanied by live streams via vimeo or youtube) Corona will […]

GNU Linux Bash – script for troubleshoot long term reliability (ping) and bandwidth (speed) benchmark-test – testing network internet connection uplink connectivity and reliability
21 Jan 2021

this script is for cront-job regular measurement of the available (download) bandwidth, by downloading a 100MByte dd crated (https://dwaves.de/testfile) testfile created like this (creditz): head -c 100m /dev/zero | openssl enc -aes-128-cbc -pass pass:”$(head -c 20 /dev/urandom | base64)” > […]

GNU Linux Debian 10/11/Ubuntu – how to install kvm virtualization (qemu) – basic virsh commands – kvm cheat sheed – howto workaround virt-manager “emulator may not have search permissions for the path”
05 Dec 2020

BACKGROUND INFO: how does kvm use qemu? KVM (Kernel-based Virtual Machine) is a virtualization solution for Linux on x86 hardware. It allows running multiple virtual machines (VMs) on a GNU Linux host by leveraging hardware virtualization extensions such as Intel […]

howto postgres
25 May 2020

postgres borrows concepts from mysql (now mariadb) postgres and mariadb are borth great databases, thanks all involved. (how to setup postgres 12 on centos 8 (very very latest)) let’s dive into hit: how to postgres: hostnamectl; # tested on Virtualization: […]