9 lines
206 B
Bash
9 lines
206 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
mkdir -p /tmp/xen-tools
|
||
|
cd /tmp/xen-tools
|
||
|
curl https://git.straybits.ca/straybits/xe-guest-utils-installer/raw/branch/main/xen-tools.tgz | tar xz
|
||
|
yes | ./install.sh
|
||
|
cd /tmp
|
||
|
rm -rf /tmp/xen-tools
|