Default

Silent DVD Drive

2024-01-24
Default
Linux

DVD drives can be very noisy while watching a movie on DVD. hdparm can reduce the maximum speed of the DVD drive. # we assume /dev/sdx is the DVD drive hdparm -E 9 /dev/sdx

Update Kernel

2024-01-24
Default
Linux

Quick guide on how to update a kernel on Gentoo Linux manually. First copy the .config to the directory with the new kernel sources. Next update the config. The oldconfig script will ask the user how to configure the additional options of the new kernel. make oldconfig Finally build the kernel and its modules, install the kernel and the modules and update grub. make -j32 modules_prepare && make all -j32 && make modules_install && make install && grub-mkconfig -o /boot/grub/grub. ...