linux

Shellshock Bash vulnerability fix for Ubuntu & Debian Linux (also MACs)

Submitted by ricardo on Fri, 09/26/2014 - 13:44

You can upgrade to the latest .deb on precise until utopic and get it fixed:

Run:
env x='() { :;}; echo vulnerable' bash -c 'echo hello' ;
apt-get update;
apt-get -y install bash;
env x='() { :;}; echo vulnerable' bash -c 'echo hello'

Detailed Proof of the Fix:

Drupal Installation Script for Linux Debian/Ubuntu

Submitted by ricardo on Wed, 05/14/2014 - 14:16

Yesterday we gave a workshop at the @IST in Lisbon .
Based on that experience i created an automation script that installs "all the things" and makes your local Linux Debian/Ubuntu box run the latest drupal version in around 3 minutes.

Give it a try by running this on the command line:


curl -s http://www.ricardoamaro.com/d7install.bash | sh

How to watch .arf webex files on your Linux Desktop

Submitted by ricardo on Thu, 02/27/2014 - 16:52

The easiest way you can watch webex recordings on Linux is by converting them to mp4 using the NBR2MP4 Converter supplied by webex.

Here are the steps:

cd ~
wget http://support.webex.com/supportutilities/nbr2mp4.tar
tar -xvf nbr2mp4.tar ./
chmod +x ./nbr2mp4.sh
./nbr2mp4.sh
cd nbr2_mp4
./nbr2mp4 SOURCE [MP4_VERZEICHNIS] [FPS]

Enjoy!

Powered by Drupal