Skip to content

Instantly share code, notes, and snippets.

@kurtis318
Created August 29, 2018 15:23
Show Gist options
  • Save kurtis318/25c988dde26b120a9f3212de72a665a9 to your computer and use it in GitHub Desktop.
Save kurtis318/25c988dde26b120a9f3212de72a665a9 to your computer and use it in GitHub Desktop.
Notes on Linux tuned service

Here is good documentation from Red Hat:

https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/pdf/performance_tuning_guide/Red_Hat_Enterprise_Linux-7-Performance_Tuning_Guide-en-US.pdf

###KVM host configuration: Install, start and enable at boot.

  sudo dnf -y install tuned
  sudo systemctl enable tuned
  sudo systemctl start tuned
  sudo systemctl status tuned

Set the profile for virtual-host

  sudo tuned-adm active
  sudo tuned-adm list
  sudo tuned-adm profile virtual-host
  sudo tuned-adm active

###Non-KVM host

  sudo tuned-adm active
  sudo tuned-adm list
  sudo tuned-adm profile balanced
  sudo tuned-adm active

###Workstation Same as above with:

  sudo tuned-adm profile workstation
@Sparklingx
Copy link

is any network tuning available for debian/ubuntu for server used for video streaming via plex or upload /download video files

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment