mirror of https://github.com/apache/cloudstack.git
11 lines
291 B
Bash
11 lines
291 B
Bash
# get the latest xs tools available from xen.org
|
|
wget --no-check-certificate http://downloads.xen.org/XCP/debian/xs-tools-5.9.960.iso -O xs-tools.iso
|
|
|
|
sudo mount -o loop xs-tools.iso /mnt
|
|
|
|
#install the xs tools
|
|
sudo yes | sudo sh /mnt/Linux/install.sh
|
|
|
|
#unmount and cleanup
|
|
sudo umount /mnt
|