- register <username>
- identify <username>
- account add jabber [email protected] 'PASSWORD'
| duration='00:59:00' | |
| noisetype='pinknoise' | |
| progress='--no-show-progress' | |
| noisetype="pinknoise" | |
| band_center="1000" | |
| band_width="499" | |
| tremolo_speed="0.01" | |
| tremolo_depth="43" |
| #!/bin/bash | |
| set -o pipefail | |
| CHROOT_PATH="${HOME}/scm/chroot" | |
| SRC_PATH="${HOME}/scm/rift" | |
| die() { | |
| echo | |
| echo "ERROR: $*" |
I was tired of Chrome eating all my laptop resources so I decided to put some limit to it with cgroup.
As I was using Ubuntu 12.04 with support for cgroup, I installed the package cgroup-bin and add the following group to the file /etc/cgconfig.conf:
group browsers {
cpu {
# Set the relative share of CPU resources equal to 25%
cpu.shares = "256";
}