This file contains hidden or 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
sudo apt-get install libyajl-dev libopenwsman-dev gcc make pkg-config \ | |
libxml2-dev libgnutls-dev libdevmapper-dev libcurl4-openssl-dev python-dev \ | |
libxen-dev | |
wget http://libvirt.org/sources/libvirt-1.0.0.tar.gz | |
tar xvzf libvirt-1.0.0.tar.gz | |
cd libvirt-1.0.0 | |
./configure --prefix=/usr --localstatedir=/var \ | |
--sysconfdir=/etc --with-esx=yes --with-hyperv=yes --with-xen=yes | |
make | |
sudo make install |
This file contains hidden or 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
echo Enabling firewall rule... | |
netsh advfirewall firewall add rule name="SSHd" dir=in action=allow protocol=TCP localport=22 | |
echo Downloading cygwin installer... | |
$client = new-object System.Net.WebClient | |
$client.DownloadFile( "http://www.cygwin.com/setup.exe", "c:\windows\temp\setup.exe" ) | |
.\Windows\Temp\setup.exe |
This file contains hidden or 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
$client = new-object System.Net.WebClient | |
$client.DownloadFile( "http://dl.dropbox.com/u/5943991/busybox-w32/busybox.exe", "C:/windows/busybox.exe" ) | |
.\busybox.exe --help |
This file contains hidden or 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
ZOO_LOG4J_PROP="INFO,ROLLINGFILE" | |
ZOO_LOG_DIR="/var/log/zookeeper/" |
NewerOlder