KakarotUSMC wrote:marcus0263 - Sounds great. Mint usually performs snappier than Ubuntu, or at least it seems that way.
Happy 233rd birthday.
Yeah, we're getting old aren't we, but still kicken @$$
To roll your own it's very easy with any Debian based system, just make sure you install
- Code: Select all
apt-get install kernel-package linux-source libncurses5-dev
Once you extract the tarball in /usr/src create your symlink
- Code: Select all
ln -s linux-source-<rest of file name> linux
go into /usr/src/linux and clean up the compiler cache
- Code: Select all
make-kpkg clean
copy over the config for the current running kernel
- Code: Select all
cp /boot/config<rest of file name> /usr/src/linux/.config
Then do your "make menuconfig", make sure you load up the config which is .config, make your modifications and save
Then compile the kernel and headers
- Code: Select all
make-kpkg --initrd --append-to-version=-<what ever ya want> kernel_image kernel_headers
Once done go back to /usr/src which is where the .deb files will be and install both with a simple "dpkg -i" and reboot. Debian does a wonderful job and makes kernel compiling just bloody easy
Edit: Corrected a case a "fat finger", I'm bad at that






