This is a quite handy command, of course you have also curl and wget. But I kind of like lftp because there is so many diferent configurations that can be set, it seems it also work for torrents! The configuration […]
How to setup aws cmd line tools
To be able to execute the many API command line tools you will need to setup and configure the authentication correctly. This will help you to do just that. 1. Download the Autoscalling CLI, CloudWatch and ec2-API-Tools cd /opt wget […]
Fix Install of Citrix Reciever on Ubuntu 12.04 x64
Fix Install of Citrix Reciever on Ubuntu 12.04 x64 I had two errors: 1. /var/lib/dpkg/info/icaclient.postinst: 696: /var/lib/dpkg/info/icaclient.postinst: nspluginwrapper: not found 2. dpkg: error processing icaclient (–install): Solution: 1. sudo apt-get install nspluginwrapper 2. sudo vi /var/lib/dpkg/info/icaclient.postinst Find echo $Arch|grep “i0-986” […]
How to convert mkv to avi
It worked for me on Ubuntu 12.10 ffmpeg -i video.mkv -vcodec msmpeg4 -b 24576k -s hd720 -acodec libmp3lame -ab 128k -ac 2 video.avi
How to find and replace text using vi
How to find and replace text using vi or vim Both vi and vim text editor comes with substitute command for finding and replacing text. The syntax is as follows: :%s/WORD-To-Find-HERE/Replace-Word-Here/g OR :%s/FindMe/ReplaceME/g Examples The substitute command can be used […]
How to fix mod_ssl CRIME attack
More detailed information on what and how the attack works is here I will focus only on fixing the problem. On RHEL server 5.x and 6.x the easy way is to simply disable SSL compression. In newer Apache versions this […]
check_conntrack_unreplied
Our front end varnish servers expierence a lot of traffic and we currently must have a iptables NAT that routes from port 80 to port 81, where the varnish daemon listen to traffic. Doing this we end up using the […]