Set up remote GUI access to a Linux host from a Windows host with VNC (Virtual Network Computing) . It's easy and takes only a few minutes. It took me way longer to document it than to do it, and I had not done it for a few years, so that included time to research. When using virtual machines, GUI access can be very clunky even when the VM is hosted on your own fast, powerful, local machine. VNC provides a much faster and better experience. Description: vncserver is used to start a VNC desktop. vncserver is a Perl script which simplifies the process of starting an Xvnc server. It runs Xvnc with appropriate options and starts a window manager on the VNC desktop. Here is a good implementation of VNC: TigerVNC http://tigervnc.org/ Install the server software on the Linux host. Install the server on the Linux host. I use CentOS 7. I did this as root. You can use sudo if it makes you happy. yum install tigervnc-server.x86_64 View documentat...
Here's an example of how expensive obscure albums can be. I suppose if you had the ability to guess right, you could outperform any stock market index by purchasing selected indie rock albums. The supply tends to be relatively low, so if the thing goes out of print, a little demand can go a long way. I heard a track tonight off my latest pickup (thanks to the U.S. Postal Service for another musical delivery), a 1999 Matador Records comp (Everything Is Nice), by a low-fi punk rock band from Japan called Guitar Wolf, liked it, went to Amazon to check the price and some reviews, and found that I can have a used copy for a mere $152.80. Hmmm. I think I'll wait for a re-release -- which raises the point, of course: what happens to the value of the out-of-print original when and if the re-release comes out? Amazon link for reference: http://www.amazon.com/Planet-Wolves-Guitar-Wolf/dp/B0000036XO/ref=sr_1_1?ie=UTF8&qid=1294362983&sr=8-1
If you want access to Java tools like jar and javac, install the development version of the JDK. # yum install java-1.7.0-openjdk-devel Add the bin directory to your PATH so you can run the Java programs from anywhere. # PATH=$PATH:/usr/lib/jvm/java-1.7.0-openjdk-1.7.0.25.x86_64/bin View the classes in a jar file. # jar tvf dt.jar 0 Mon Jul 01 09:51:04 EDT 2013 META-INF/ 71 Mon Jul 01 09:51:04 EDT 2013 META-INF/MANIFEST.MF 0 Mon Jul 01 09:51:00 EDT 2013 javax/ 0 Mon Jul 01 09:51:04 EDT 2013 javax/swing/ 4486 Mon Jul 01 09:51:04 EDT 2013 javax/swing/JSliderBeanInfo.class 3342 Mon Jul 01 09:51:04 EDT 2013 javax/swing/JFormattedTextFieldBeanInfo.class 3025 Mon Jul 01 09:51:04 EDT 2013 javax/swing/JMenuBarBeanInfo.class
Comments