Java is installed, in listing, but execution produces “./java: No such file or directory”

You’re running on a 64bit system without a 32bit runtime environment. Assuming ubuntu/debian issue: apt-get install libc6-i386 Or you should install the 64bit version of the package into this VM (which is probably the best solution). The error message is coming from the run-time linker/loader. if you do a readelf -l java you will find … Read more

eclipse doesn’t work with ubuntu 16.04

Try to start Eclipse after editing your eclipse.ini file and tweaking the launcher entry like this: –launcher.GTK_version 2 Example file: -startup plugins/org.eclipse.equinox.launcher_1.3.100.v20150511-1540.jar –launcher.GTK_version 2 -product org.eclipse.epp.package.cpp.product –launcher.defaultAction openFile -showsplash org.eclipse.platform –launcher.XXMaxPermSize 256m –launcher.defaultAction openFile –launcher.appendVmargs -vmargs -Dosgi.requiredJavaVersion=1.7 -XX:MaxPermSize=256m -Xms256m -Xmx1024m

Cut to the system clipboard from Vim on Ubuntu

Your version of Vim doesn’t support X, which is required for clipboard access. By default, Ubuntu ships several builds of vim and only the GUI variant supports clipboard access. I always recompile vim from source so that a single vim (with symlinks for gvim etc) supports everything required (including :gui to switch from command line … Read more