how to add script to custom tuned-adm profile?
I'm using such tuned-adm profile:
cat /etc/tuned/myprofile/tuned.conf
[main]
include=network-latency
[bootloader]
cmdline = isolcpus=1-11 nohz_full=1-11
Now I want to add such script to this profile:
for i in pgrep rcuo ; do taskset -pc 0 $i ; done
How can I do this?
Responses
rpm -ql tuned
...
/usr/lib/tuned/balanced
/usr/lib/tuned/powersave
...
[root@vmt-rhel7-01:~]# cp -pr /usr/lib/tuned/powersave /usr/lib/tuned/test
[root@vmt-rhel7-01:~]# tuned-adm list
Available profiles:
- balanced
- desktop
- latency-performance
- network-latency
- network-throughput
- powersave
- test
Welcome! Check out the Getting Started with Red Hat page for quick tours and guides for common tasks.
