When reflexes acquired in your job are invading your daily life.
-When i was an intern in a retail, i had to fight against the urge to store the shelves during my own shopping sessions.
When reflexes acquired in your job are invading your daily life.
-When i was an intern in a retail, i had to fight against the urge to store the shelves during my own shopping sessions.
Can you alaborate on the sysctl tweaks for low-latency audio? I have a carbon gen4 as well.
Sure. The following are the bits that I’m pretty sure are universal. The rest – mostly configuring my audio interface – is IMO fairly specific to my system and can be found in my dotfiles.
# /etc/security/limits.d/25-pw-rlimits.conf @pipewire - rtprio 95 @pipewire - nice -19 @pipewire - memlock 4194304realtimegroup and grant it access to/dev/cpu_dma_latencyso Ardour can prevent the system from going into idle:# /etc/udev/rules.d/40-realtime-privileges.rules KERNEL=="cpu_dma_latency", GROUP="realtime"threadirqsandpreempt=fullto the kernel commandline# /etc/sysctl.d/50-audio.conf vm.page-cluster = 0Nonefor SSDs and NVMe:# /etc/udev/rules.d/60-block-scheduler.rules ACTION=="add|change", SUBSYSTEM=="block", ATTR{queue/rotational}=="0", KERNEL=="nvme?n?", ATTR{queue/scheduler}="none" ACTION=="add|change", SUBSYSTEM=="block", ATTR{queue/rotational}=="0", KERNEL=="sd?", ATTR{queue/scheduler}="none"I’m not using a preempt kernel or anything like that; I’ve only gotten into audio when Pipewire had already hit the scene and I’ve found it to be good enough with these settings.