1
0
mirror of https://github.com/tommytran732/Linux-Setup-Scripts synced 2024-09-16 12:14:42 -04:00

Implement qemu-guest-agent

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy 2024-01-22 08:55:42 -07:00
parent effebda27a
commit 5c7cedd512
Signed by: Tomster
GPG Key ID: 555C902A34EC968F
3 changed files with 16 additions and 7 deletions

View File

@ -196,6 +196,9 @@ if [ "$virt_type" = '' ]; then
# Don't know whether using tuned would be a good idea on a laptop, power-profiles-daemon should be handling performance tuning IMO.
sudo dnf remove tuned -y
else
if [ "$virt_type" = 'kvm' ]; then
sudo dnf install qemu-guest-agent -y
fi
sudo tuned-adm profile virtual-guest
fi

View File

@ -123,6 +123,9 @@ fi
if [ "$virt_type" = "" ]; then
sudo tuned-adm profile latency-performance
else
if [ "$virt_type" = 'kvm' ]; then
sudo apt install qemu-guest-agent -y
fi
sudo tuned-adm profile virtual-guest
fi

View File

@ -198,5 +198,8 @@ if [ "$virt_type" = '' ]; then
sudo apt remove tuned -y
sudo apt autoremove -y
else
if [ "$virt_type" = 'kvm' ]; then
sudo apt install qemu-guest-agent -y
fi
sudo tuned-adm profile virtual-guest
fi