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: Linux
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… […]
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 […]