2020-04-22から1日間の記事一覧

xterm on mac: disable sound bell

You can disable the sound bell in xterm by writing in /etc/inputrc the folloing sentence: set bell-style none In my mac book pro, there was no /etc/inputrc. So I made the text file of this one line. It worked.

Gentoo linux: how to select a kernel version as default

Grub2 uses a combination of menuentries and submenus. We can select a kenel as default in a manner like this: 1) Edit /etc/default/grub GRUB_DEFAULT="1>10" 2) grub-mkconfig -o /boot/grub/grub.cfg In this case, the 10 th menuentry kernel in…