So After a while of not posting anything new because of all the work and no play makes Avena a dully boy… I decided to share this neat trick, so I wanted to add a bunch of files after a merge of two repositories, but it was about 200 Files, and +400 other files changed […]
Category: Platforms
Python… my new Perl…
So I have been playing around with python more and more lately and I came to the conclusion that it is my new perl…For those quick scripts you want to do and use a CPAN module… well there should be a python library for that… and you can install it by pip! which is to […]
wget SSL Problems!?
Well I was trying to install pip (Python Package management, like CPAN for perl) and the wget did not work properly because the SSL was not from a known issuer… but here is a work around for when you have trouble… $ wget https://bootstrap.pypa.io/get-pip.py –2014-07-15 12:42:37– https://bootstrap.pypa.io/get-pip.py Resolving bootstrap.pypa.io (bootstrap.pypa.io)… 185.31.19.175 Connecting to bootstrap.pypa.io (bootstrap.pypa.io)|185.31.19.175|:443… […]
Find a File within Package Contents (CentOS)
A quick trick… If you are looking for a lib or a binary file that you are missing you can find it through the next command: yum provides */genkey This will list all the yum packages which contain genkey file… Or you can Google it… el_avena off… […]
VMWare cheat Sheet…
Well I worked in the last month with ESXi and VCenter and VM Standalone Converter, so here are a few things that it may help in the future: First is the vGhetto tools, according to the author the v stands for “Very” not for VMWare. This tool is only for backup, you can look for more […]
List Crontab entries for all users
I just found this and this can be very useful; This one liner right here lists every user in a linux machine and shows what its crontab has. for user in $(cut -f1 -d: /etc/passwd); do echo $user; crontab -u $user -l; done el_avena off […]