Sometimes searching for what’s right in front of your face can be very complicated, windows seven bring a new feature to make the life easier.
In your Explorer you go to the search field and type [Read more…]
Sometimes searching for what’s right in front of your face can be very complicated, windows seven bring a new feature to make the life easier.
In your Explorer you go to the search field and type [Read more…]
I run a nightly mysqldump of all my databases and one of them has over 500 tables, mysqldumper bring me a error while processing this huge database: [Read more…]
Security fix for the DNS infrastructure to hide the the sensible information about the version and potential security critical bugs.
The simplest way to remove files older than $NUMBER of days..
Dry run (files will be NOT deleted, you will see a list with files older than 100 days)
1 | find -mtime +100 | less |
find -mtime +100 | less
Another dry run, see what would be delete:
1 2 3 | find -mtime +600 | xargs echo rm rm /var/log/squid3/access.log.0 rm /var/log/squid3/access.log.2 |
find -mtime +600 | xargs echo rm rm /var/log/squid3/access.log.0 rm /var/log/squid3/access.log.2
Finally if you decided to remove the files – the final command to delete them:
1 | find -mtime +600 | xargs rm |
find -mtime +600 | xargs rm
Some weeks ago I bought a really cool book – “Getting Started with Arduino”, which was written by the co-founder of Arduino Massimo Banzi.
This little booklet offers a thorough introduction to the [Read more…]