1
0
mirror of https://github.com/tommytran732/Linux-Setup-Scripts synced 2024-09-19 13:44:43 -04:00

Fix tuned handling

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy 2024-05-29 14:59:14 -07:00
parent 1aecfcd3a5
commit 9610e72d95
Signed by: Tomster
GPG Key ID: 555C902A34EC968F
2 changed files with 11 additions and 14 deletions

View File

@ -128,9 +128,6 @@ sudo systemctl enable --now tuned
if [ "$virtualization" = 'none' ]; then if [ "$virtualization" = 'none' ]; then
sudo tuned-adm profile latency-performance sudo tuned-adm profile latency-performance
else else
if [ "$virtualization" = 'kvm' ]; then
sudo dnf install -y qemu-guest-agent
fi
sudo tuned-adm profile virtual-guest sudo tuned-adm profile virtual-guest
fi fi

View File

@ -110,12 +110,12 @@ sudo systemctl enable --now fstrim.timer
### Differentiating bare metal and virtual installs ### Differentiating bare metal and virtual installs
# Setup tuned # Setup tuned
sudo apt install -y tuned
sudo systemctl enable --now tuned
if [ "$virtualization" = 'none' ]; then if [ "$virtualization" = 'none' ]; then
output "Bare Metal installation. Tuned will not be set up here - PPD should take care of it." sudo tuned-adm profile latency-performance
else else
sudo apt purge -y power-profiles-daemon
sudo apt install -y tuned
systemctl enable --now tuned
sudo tuned-adm profile virtual-guest sudo tuned-adm profile virtual-guest
fi fi