Magic Spells

2 March 2021

Portage @world update

To upgrade a gentoo system.

emerge -aqvuDU --keep-going=y @world

Kernel upgrade

Upgrading the Linux kernel guide. After selecting the new sources, run:

genkernel all -j4

Rsync backup

To backup a filesystem with rsync.

rsync -aAXvP SRC DEST

ffmpeg quick compression/conversion

Raw recorded video is too big, and most compression snippets you find convert to patented formats with proprietary standards. I prefer:

ffmpeg -i input.mkv -codec:v libtheora -qscale:v 7 -codec:a libvorbis -qscale:a 5 output.ogv

Source, Similar.