Unfortunately or fortunately we need to tweak few things before we start recording. For now it's basic setup but should be enough for home recording. In future (I hope) will grow.
1.[Audio and realtime group](https://gitlab.com/ProjektRoot/RecBox-config/wikis/after-install#add-user-to-audio-and-realtime-group)
------------------------------------------
#### **Add user to audio and realtime group:**
With Manjaro it's easy, just open **manjaro-settings-manager** (menu > Settings) and go to *User Accounts*
In default swappiness is set to 60, to change this value create `99-sysctl.conf` and paste this:
```
vm.swappiness=10
```
You can also change cache pressure:
```
vm.vfs_cache_pressure=50
```
> This variable controls the tendency of the kernel to reclaim the memory which is used for caching of VFS caches, versus pagecache and swap. Increasing this value increases the rate at which VFS caches are reclaimed.
>
> It is difficult to know when this should be changed, other than by experimentation. The slabtop command (part of the package procps) shows top memory objects used by the kernel. The vfs caches are the "dentry" and the "*_inode_cache" objects. If these are consuming a large amount of memory in relation to pagecache, it may be worth trying to increase pressure. Could also help to reduce swapping. The default value is 100.
[Tuning the Memory Management](https://doc.opensuse.org/documentation/leap/tuning/html/book.sle.tuning/cha.tuning.memory.html#cha.tuning.memory.vm.reclaim) | [About Swap](https://wiki.archlinux.org/index.php/Swap#Swappiness)