Author: robin

0

Creating JAR with dependencies using maven (eclipse, others)

Source: http://stackoverflow.com/questions/574594/how-can-i-create-an-executable-jar-with-dependencies-using-maven   Inside pom.xml use the following XML code <?xml version=”1.0″ encoding=”utf-8″?> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>fully.qualified.MainClass</mainClass> </manifest> </archive> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> </plugin> </plugins> </build>     To build the JAR use the following command...

0

Virtualbox Linux Guest display auto size non functioning

So you have setup Virtualbox guest additions on Linux (Mine was Linux mint 17.2) guest and the window size is not honored.. Did you change the display resolution manually? If so, you will now need to remove the monitor settings...

0

Add Graphical User Interface (GNOME) to a CentOS Minimal Install

Impatient? follow through 😉 Install Desktop Packages # yum -y groupinstall “Desktop” “Desktop Platform” “X Window System” “Fonts” Optional GUI packages # yum -y groupinstall “Graphical Administration Tools” # yum -y groupinstall “Internet Browser” # yum -y groupinstall “General Purpose...

0

No network connection on Windows XP guest – VirtualBox

Problem due to no network driver for the Ethernet hardware.   References https://forums.virtualbox.org/viewtopic.php?f=11&t=16616 https://www.google.com/search?q=PRO2KXP.exe&ie=utf-8&oe=utf-8 https://downloadcenter.intel.com/download/8659/LAN-Intel-PRO-Network-Connections-LAN-Driver https://downloadcenter.intel.com/downloads/eula/8659/LAN-Intel-PRO-Network-Connections-LAN-Driver?httpDown=https%3A%2F%2Fdownloadmirror.intel.com%2F8659%2Feng%2FPRO2KXP.exe   Related posts: Virtualbox Linux Guest display auto size non functioning Host-Only Networking With VirtualBox Download m3u8 URL video to local Shrinking VirtualBox VDI...

0

VirtualBox – Effective UID is not root. Please try reinstalling VirtualBox.

References http://superuser.com/questions/620936/virtualbox-does-not-start-on-mac-os-x   Only working solution on El Capitan after upgrading to VirtualBox v5, was $ for bin in VirtualBox VirtualBoxVM VBoxNetAdpCtl VBoxNetDHCP VBoxNetNAT VBoxHeadless; do     sudo chmod u+s “/Applications/VirtualBox.app/Contents/MacOS/${bin}”; done       No related posts.

0

Lync for Mac removal script

Source: http://weirdwindowsfixes.blogspot.com/2013/03/lync-for-mac-removal-tool.html   #!/bin/bash LYNC_PID=$(ps ax | grep “/Applications/Microsoft Lync.app/Contents/MacOS/Microsoft Lync” | grep -v grep | awk ‘{ print $1 }’) kill -9 ${LYNC_PID} 2>/dev/null USER_LIST=`dscl . list /Users UniqueID | awk ‘$2 > 500 { print $1 }’` for...

0

Clean UNinstall Hortonworks HDP 2.2

Source: https://pulsatingtaurus.wordpress.com/2015/02/15/clean-uninstall-hortonworks-hdp-2-2/   I love Hadoop and Hortonworks is one of my favored Hadoop distributuion. However while experimenting with the hadoop installation, I had many instances when I needed to start afresh on the set of physical as well as virtual Hadoop cluster. Hortonworks provide...

0

How to configure Hue for your Hadoop cluster

Source: http://gethue.com/how-to-configure-hue-in-your-hadoop-cluster/   ue is a lightweight Web server that lets you use Hadoop directly from your browser. Hue is just a ‘view on top of any Hadoop distribution’ and can be installed on any machine. There are multiples ways...

0

How-to: Install Hue on a Mac

Source: http://blog.cloudera.com/blog/2015/04/how-to-install-hue-on-a-mac/ Learn how to set up Hue, the open source GUI that makes Apache Hadoop easier to use, on your Mac. You might have already all the prerequisites installed but we are going to show how to start from...

0

Uninstall Hortonworks HDP 2.2

Source: https://pulsatingtaurus.wordpress.com/2015/02/15/clean-uninstall-hortonworks-hdp-2-2/   I love Hadoop and Hortonworks is one of my favored Hadoop distributuion. However while experimenting with the hadoop installation, I had many instances when I needed to start afresh on the set of physical as well as...