This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for HOST in $(< /opt/hadoop/hadoop-1.0.3/conf/slaves); do | |
echo "" | |
echo "###############" | |
echo "# HOSTNAME: $HOST" | |
echo "###############" | |
# This line is for back grounding each command to execute them on all systems at once | |
# ssh -q -o ConnectTimeout=3 $HOST "echo password | sudo -S $* >/dev/null 2>&1 &" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function shuffle(array) { | |
var currentIndex = array.length | |
, temporaryValue | |
, randomIndex; | |
// While there remain elements to shuffle... | |
while(0 !== currentIndex) { | |
// Pick a remaining element... | |
randomIndex = Math.floor(Math.random() * currentIndex); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://kafka.apache.org/documentation.html#quickstart | |
Prerequisites: | |
# adding java | |
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install oracle-java7-installer | |
Install: | |
cd /opt/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Note: Newer Linux kernels may rename your devices to /dev/xvdf through /dev/xvdp internally, even when the device name entered here (and shown in the details) is /dev/sdf through /dev/sdp. | |
cd /mnt | |
lsblk | |
sudo file -s /dev/xvdf # if outputs 'data', it has to be formatted | |
sudo mkfs -t ext4 /dev/xvdf | |
sudo file -s /dev/xvdf | |
sudo cp /etc/fstab /etc/fstab.orig | |
sudo vi /etc/fstab | |
add this line: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xclip -sel clip < ~/.ssh/id_rsa.pub |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Uninstall | |
sudo apt-get remove skype skype-bin:i386 skype:i386 | |
sudo apt-get install sni-qt:i386 | |
#Install | |
sudo dpkg --add-architecture i386 | |
sudo apt-get update | |
sudo apt-get install gdebi | |
wget download.skype.com/linux/skype-ubuntu-precise_4.3.0.37-1_i386.deb | |
sudo gdebi skype-ubuntu-precise_4.3.0.37-1_i386.deb |
NewerOlder