INSTALLATION of Exton-Slack current to hard drive using Slack-Installer

Follow these steps:
1. Login to KDE as root.
2. First, create a Linux partition of about 8 GB and a swap space of approximately 2 GB or double the size of your computer's RAM if you have RAM of 2 GB or less. (Use GParted or...).
3. Start the installation program Slack-Installer with the command slack-installer.
4. Follow the application instructions. Skip partitioning (because you pre-created an installation partition and a swap space).
5. Slack-Installer will recognize your created partitions. Choose them.
6. The actual installation takes 10-30 minutes.
7. Towards the end you will be able to install the LILO boot loader. Choose to do it if you do not already have a Linux system installed on your computer. If you have a windows system (e.g. Windows 7) installed on /dev/sda1 (your C drive) you will also be able to start it after the installation of Exton-Slack.
8. NOTE: If you already have at least one Linux system on your computer and use the GRUB Legacy boot loader you should finish the Slack-installer when the question of installation of LILO arise. You can then add the following lines to your /boot/grub/ menu.lst. (In the Linux system where you have installed GRUB). Then restart your computer.

####################
title Exton-Slack
root (hd0,4)
kernel /boot/vmlinuz-3.3.5-exton root=/dev/sda5 vga=0x318 video=vesafb:mtrr,ywrap
boot
####################

Grub2
If you are using Grub2 (new GRUB) as boot loader, you should instead add the following lines in the file /etc/grub.d/40_custom and then run the command update-grub (in the system where you have installed Grub2).
####################
menuentry 'Exton-Slack (sda5)' --class gnu-linux --class gnu --class os {
        
recordfail
        
Set gfxpayload=$linux_gfx_mode
        
insmod part_msdos
        
insmod ext2
        
Set root='(/dev/sda,msdos5)'
        
search --no-floppy --fs-uuid --set = root e22e68cd-4812-491a-8886-c319dc710116
        
linux / boot/vmlinuz-3.3.5-exton root=/dev/sda5 vga=0x318 video=vesafb:mtrr,ywrap
}
####################

#
In the above examples, the installation of Exton-Slack was made ​​to /dev/sda5.
# Be sure to rename /boot/vmlinuz to /boot/vmlinuz-3.3.5-exton

Home