Patched Python Paramiko 1.7.7.1 Windows 32 and 64 bit installers

on Wednesday 16th November, 2011 Gabe speculated thusly…

Taking the Latest code from Robey the Paramiko maintainer and applying a patch submitted by Jaraco at:
https://github.com/jaraco/paramiko/commit/1939b1c55270bf7a92fdb1d43208a3b65342f4b2
these builds of Paramiko will not suffer from the following Exception:
File "C:\Python27\lib\site-packages\paramiko\agent.py", line 118, in _read_all
raise SSHException('lost ssh-agent')
SSHException: lost ssh-agent

Most notably the 64bit version will not suffer this problem, the 32bit versions never did. More details on the issue can be found here:
https://bugs.launchpad.net/bzr/+bug/644995
and here:
https://bugs.launchpad.net/paramiko/+bug/736955

32bit Installer:
paramiko-1.7.7.1.win32_Jaraco_patch

64bit Version for Windows and Python 64bit (AMD/Intel):
paramiko-1.7.7.1.win-amd64_Jaraco_patch

Posted in Programming, Python

No Comments »


Python PyCrypto 2.4.1 32 and 64 bit Windows 32/x64 AMD/Intel Installers Python 2.7

on Monday 14th November, 2011 Gabe speculated thusly…

Python PyCrypto 2.4.1 64bit and 32 bit Windows x64 AMD/Intel Installer.

Frustrated that there were only 32 bit builds available. I compiled and tested this as working using Python 2.7.2 64 bit running on Windows 7 64bit.

32 bit version:
pycrypto-2.4.1.win32-py2.7

64 bit version for x64 Python installs on 64bit Windows
pycrypto-2.4.1.win-amd64-py2.7

Posted in Programming, Python

No Comments »


Python paramiko 1.7.7.1 Windows 32 and 64 bit installers

on Monday 14th November, 2011 Gabe speculated thusly…

For your convenience. Please find below installers for 32 and 64 bit versions. Works with Python 2.7. Choose the correct installer for your Python installation.

paramiko-1.7.7.1.win32

paramiko-1.7.7.1.win-amd64

Posted in Programming, Python

No Comments »


Python PyCrypto 2.0.1 64bit Windows x64 AMD/Intel Installer

on Monday 14th November, 2011 Gabe speculated thusly…

Python pycrypto-2.0.1.win-amd64-py2.7.exe 64bit Windows x64 AMD/Intel Installer.

Frustrated that there were only 32 bit builds available. I compiled and tested this as working using Python 2.7.2 64 bit running on Windows 7 64bit.

pycrypto-2.0.1.win-amd64-py2.7

Posted in Programming, Python

No Comments »


Python setuptools 0.6c11 64bit Windows x64 AMD/Intel Installer

on Monday 14th November, 2011 Gabe speculated thusly…

Found 32 bit versions knocking about but no 64bit, thought some like-minded people might appreciate a 64 bit build. Have compiled and tested this as working using Python 2.7.2 64 bit running on Windows 7 64bit.
setuptools-0.6c11.win-amd64

Posted in Programming, Python

No Comments »


Add Secondary IP Address to CentOS 5.5

on Tuesday 8th March, 2011 Gabe speculated thusly…

Create a new interface file with a colon and a number.
# cp /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/sysconfig/network-scripts/ifcfg-eth0:1
# vim /etc/sysconfig/network-scripts/ifcfg-eth0:1

DEVICE=eth0:1
BOOTPROTO=static
IPADDR=192.168.0.5
ONBOOT=yes

To activate it, just

# ifup eth0:1

Posted in Linux, Operating System, RHEL/CentOS

No Comments »


SSH KeepAlive

on Wednesday 9th February, 2011 Gabe speculated thusly…

add the following to sshd_config

KeepAlive yes
ClientAliveInterval 60

Posted in Linux, Operating System, Server, Ubuntu

No Comments »


apache2: apr_sockaddr_info_get() failed

on Wednesday 24th November, 2010 Gabe speculated thusly…

Starting httpd: httpd: apr_sockaddr_info_get() failed for hostname.domain.com
httpd: Could not reliably determine the server’s fully qualified domain name, using 127.0.0.1 for ServerName

Fix with these commands :

# hostname HOSTNAME.DOMAIN.COM

Add in to /etc/hosts e.g. # vim /etc/hosts

# echo HOST.DOMAIN.com > /etc/hostname

# /bin/hostname -F /etc/hostname

# apache2ctl graceful

Posted in Information, Linux, Operating System, Server

No Comments »


Easy way to install LAMP (DNS, samba, etc) under Maverick Meerkat Ubuntu 10.10

on Wednesday 24th November, 2010 Gabe speculated thusly…

Either:
$ sudo tasksel

or:
$ sudo tasksel install lamp-server

or:
$ sudo apt-get install php5 mysql-server apache2

Posted in Information, Linux, Operating System, Ubuntu

No Comments »


Ubuntu perl: warning: Setting locale failed

on Wednesday 24th November, 2010 Gabe speculated thusly…

Run as root, or prefix with “sudo”:
# locale-gen en_GB.UTF-8
# dpkg-reconfigure locales

Posted in Information, Linux, Operating System, Ubuntu

No Comments »