Here is some notes about Docker I learned today.
Second docker notes
Install R on Ubuntu
My Ubuntu version is 14.04(Trusty).
From here.
Fix the 'Unable to reach a settlement' issue of Java SSH connection
This is a weird issue. There is some Java code which uses SSH connection to run some comands remotely on a server. When running it in Eclipse, everything works; while if runs it from an pacakged uber jar, it reports the following issue:
How to disable HTTP Strict Transport Security(HSTS) in Firefox
In some network environment, when browsing some websites with Firefox like “Google Groups“ which enables HSTS, you may get the following error message(Chrome will not work for the same situation but I did not search the solution for it):
How to install Docker on Ubuntu from PPA
If when you run “wget -qO- https://get.docker.com/ | sh” command to install Docker on your Ubuntu 14.04 as described in the offical document, and met the following problem like me:
1 | ~$ wget -qO- https://get.docker.com/ | sh |
you can try the alternative method in the post from here.
The Python RVM equivalent: pyenv
I was wondering if there is something in the Python world just like RVM in the Ruby world. So I get pyenv.
Resolve Python "pycrypto" installation error
When I try installing “paramiko” on my local “Python3” environment with “pip”, the depended package “pycrypto” installation reports the following error:
What is Python Wheel
How to Resize a VirtualBox Disk Image
This is a quite common problem for the VirtualBox user: after some time, you find the original image disk size is not enough and want to make it larger. How to make it?