Category: Administration / Server

gnu linux bash – ssh login as different user
12.01.2020

situation: one is userA but wants to ssh login to server with ipv4: 123.123.123.123 via userB (dedicated user for that server/task). so what one does is: make sure one can login as userB than as userA: userA: ssh -v -i […]

CNBC documentary about Open Source
01.01.2020

what do you think about the CNBC documentary? 2012: Aalto Talk with Linus Torvalds: 1,5 Million Views! contains the famous “Fuck You NVIDIA” https://www.youtube.com/watch?v=MShbP3OpASA Linus Torvalds writes software since his early childhood ages and just loves programming. Without this love […]

Russian IT Security Updates Nov2
21.11.2019

new Russian IT Security updates: thanks to https://www.securitylab.ru/ and https://translate.yandex.com/   SecurityLab, [06.11.19 16:12] The Libarchive compression library, which is included by default in Debian, Ubuntu, Gentoo, Arch Linux, FreeBSD, and NetBSD distributions, contains a vulnerability that allows an attacker […]

another reason NOT to use wireless keyboards
27.10.2019

“In the popular series of wireless keyboards Fujitsu LX390 found two dangerous vulnerabilities. According to researchers from the company SySS, exploitation of vulnerabilities allows nearby attackers to “spy” passwords entered on the keyboard, or even to seize control of the […]

debian centos cups – set default printer and print from bash terminal command line
22.09.2019

terminal/bash/no gui version: hostnamectl; # tested on Operating System: CentOS Linux 7 (Core) CPE OS Name: cpe:/o:centos:centos:7 Kernel: Linux 4.15.9 Architecture: x86-64 # with software installed yum list installed|grep cups cups.x86_64 1:1.6.3-35.el7 @base cups-client.x86_64 1:1.6.3-35.el7 @base cups-filesystem.noarch 1:1.6.3-35.el7 @base cups-filters.x86_64 […]

19.09.2019

for whatever reason, it is not enough to allow udp traffic on port 5900, one also needs to allow tcp traffic. /sbin/iptables -A INPUT -p tcp -m tcp –dport 5900 -j ACCEPT /sbin/iptables -A INPUT -p udp -m udp –dport […]

09.09.2019

yum install ascii # or apt install ascii ascii Usage: ascii [-dxohv] [-t] [char-alias…] -t = one-line output -d = Decimal table -o = octal table -x = hex table -h = This help screen -v = version information Prints […]

Windows (7) automatic reboot every 3 days at midnight taskschd.msc
04.09.2019

sometimes one wants to restart a windows vm every x days – to clean up RAM and Co. run task scheduler “Aufgabenplanung” %windir%\system32\taskschd.msc /s File/Datei -> New/Neu -> Basic Task/Einfache Aufgabe select or copy paste: %SystemRoot%\System32\shutdown.exe one has to scroll […]