kernel compile slackware

cd /usr/src/linux

make menuconfig (Make your changes here — the controls are pretty simple. Just take your time and don’t change anything that you don’t understand.)

make dep (Sets all the kernel dependencies.)

make clean (Removes un-needed files.)

make bzImage (Builds the kernel.)

make

make install (Installs and backs up all the needed files and updates LILO.)

make modules (Builds all the kernel modules.)

make modules_install (Installs the modules.)

installing MySQL in slackware

su mysql
mysql_install_db (run as mysql for best results)
mysqld_safe –user=mysql&
mysql -u root -p
mysqladmin -u root password ‘dieagain’
cd /etc/rc.d
You’ll find a file called rc.mysqld. Make it executable by chmod 755 rc.mysqld
Edit rc.M and include the following block:
if [ -x /etc/rc.d/rc.mysqld ]; then
. /etc/rc.d/rc.mysqld
fi
Now, you’re done.