Mr Robot and Marx and Slackware
Posted on Thu 05 April 2018 in Wypociny • 2 min read
Continue reading
Posted on Thu 05 April 2018 in Wypociny • 2 min read
Posted on Thu 05 April 2018 in Wypociny • 1 min read
I read on DECnet list:
I was a teenager in the 1980s; I was lucky enough to have a PDP-11 at the time so I'm not complaining. After living and breathing RSX and RSTS for a long time, I got into UNIX in the mid-80s, and have been there ever …
Posted on Thu 05 April 2018 in iPhone/iPod • 2 min read

Posted on Thu 05 April 2018 in Hack • 3 min read
Who said there are no backups in SQL Express Server? Prepare SQL script like below:
#. 2BACKUP DATABASE [database_name] TO DISK = N'C:\\Backup_baz\\database_name' WITH NOFORMAT, INIT, NAME = N'database_name-Full Database Backup', SKIP, NOREWIND, NOUNLOAD, STATS = 10
#. 4BACKUP DATABASE [database2_name] TO DISK = N'C:\\Backup_baz\\database2_name' WITH NOFORMAT, INIT, NAME = N'database2_name-Full Database Backup' …Posted on Thu 05 April 2018 in Naprawa • 1 min read
Posted on Thu 05 April 2018 in Hack • 4 min read
Huawei E5186s-22a LTE routeris often offered by mobile companies as a addition to service plans. But it's almost always shipped with custom firmware without bridge mode.
Why would one need bridge mode? In case he needs router to behave as modem and transparently connects it's WAN port to separate firewall …
Posted on Thu 05 April 2018 in Administracja • 5 min read
I own few Microservers Gen8 build by HP.
Each of them is beautiful and cool machine. It has compact and modular design with easy access to basic components. It's hardware configuration is also nice and sufficient for small office. It is definitely better choice than NAS as offers more flexibility …
Posted on Thu 05 April 2018 in Automatyczny dom • 2 min read
Posted on Thu 05 April 2018 in Administracja • 1 min read
Sometimes I need to list content of raw disk image I made from original computer and converted to KVM.
This is very simple in Debian or Ubuntu. I made script to do it but it works only with one image and 1st partition because that’s what I need. Feel …
Posted on Thu 12 October 2017 in Hack • 1 min read
Zaczynam od prostej automatyzacji, na początek chcę tylko uruchamiać skrypt przy starcie systemu, potem mogę się zająć ukrywaniem jego działania.
# vi /etc/init.d/mystartup.sh
#!/bin/sh`` # DEADHAND TEST`` WDIR=/etc`` PLIK=$WDIR/killme`` if [ -e $PLIK ] ; then`` OLD=$(tail -1 $PLIK)`` NEW=$((OLD+1))`` echo $NEW >> $PLIK`` else …