$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

How to Install Linux Gentoo 12.1 64-bit KDE4 Desktop From LiveDVD to Hard-Drive Easy Visual-Guide

November 12, 2012 | By Duchateaux.

The Guide shows you How to Install Easy-Way for Linux Gentoo 2012.1 Amd64 KDE4 Desktop to Hard-Drive from the LiveDVD Hybrid x86-amd64 Release.

And this Visual Guide includes the Basic Screenshots of All GUI Steps involved.

The content and details are expressly reduced to give Focus only to the Essentials Instructions and Commands and Make the Tut Easier to Understand ;)

gnomePenguin Gentoo
  1. Download Gentoo 12.1 x86-amd64:

    Here Gentoo 12.1 Hybrid Release
    Please Donate $1 to Remove Ads!



    blank
    Link to Download the Latest Gentoo 2012 Torrenct x86-amd64 Release.
  2. Boot from Gentoo 12.1 Hybrid LiveDVD

  3. Disk Partitioning.

    Copy
    sudo su

    If Got “User is Not in Sudoers file” then see: How to Enable sudo

    Copy
    parted /dev/sda

    (parted)

    Copy
    mklabel msdos

    Making an extf2 /boot Partition of 256mb
    (parted)

    Copy
    mkpart primary ext2 0 256mb

    When Prompted About Partition Allignment Just Answer ‘i’ for Ignore.

    Creating a Swap Partition of 1Gb
    (parted)

    Copy
    mkpart primary linux-swap 256mb 1276mb

    Making an ext3 Root Partition the Rest of Disk
    (parted)

    Copy
    mkpart primary ext3 1276mb -1s

    Then Quit parted:

    Copy
    quit

  4. Applying File Systems to Partitions

    Apply the extf2 File System to /boot Partition.

    Copy
    mkfs.ext2 /dev/sda1

    Create and Activate the Swap.

    Copy
    mkswap /dev/sda2
    Copy
    swapon /dev/sda2

    Apply the extf3 File System to /Root Partition.

    Copy
    mkfs.ext3 /dev/sda3

    After the Partitions are Rightly Initialized and Housing a File System :)

  5. Mounting Base Partitions

    Copy
    mount /dev/sda3 /mnt/gentoo
    Copy
    mkdir /mnt/gentoo/boot
    Copy
    mount /dev/sda1 /mnt/gentoo/boot

  6. Copy LiveDVD to Hard-Drive

    Copy
    eval `grep '^ROOT_' /usr/share/genkernel/defaults/initrd.defaults`
    Copy
    cd /
    Copy
    cp -avx /$ROOT_LINKS /mnt/gentoo

    If you Get a Warning About emule Missing Just Ignore and Follow to Next Step :)

    Copy
    cp -avx /$ROOT_TREES /mnt/gentoo
    Copy
    cp /etc/passwd /etc/group /mnt/gentoo/etc

  7. Mounting File Systems and Entering the New Environment

  8. Copy
    mkdir /mnt/gentoo/proc /mnt/gentoo/dev
    Copy
    cd /mnt/gentoo/dev
    Copy
    mknod -m 660 console c 5 1
    Copy
    mknod -m 660 null c 1 3
    Copy
    mount -t proc none /mnt/gentoo/proc
    Copy
    mount -o bind /dev /mnt/gentoo/dev
    Copy
    mkdir /mnt/gentoo/sys

    Now is Time to Entering the New Environment :)

    Copy
    chroot /mnt/gentoo /bin/bash

    If for some Reason you Need to Come Back to the Original Environement Execute ‘exit’ or Type ‘Ctrl-d’

    Updating you New-Environment.

    Copy
    env-update && source /etc/profile

    Latest Remove the autoconfig from default boot to Keep Password Setting over Reboot.

    Copy
    rc-update del autoconfig default
  9. Configuring the fstab File

    Copy
    nano -w /etc/fstab

    Now if you Replicated the Partitioning Details you will Need to Insert:

    Copy
    /dev/sda1  /boot    ext2  defaults,noatime   1 2 
    /dev/sda2  none     swap  sw          0 0 
    /dev/sda3  /      ext3  noatime       0 1 
    /dev/cdrom /mnt/cdrom  auto  noauto,user     0 0 
    proc    /proc    proc  defaults       0 0 
    shm     /dev/shm   tmpfs  nodev,nosuid,noexec 0 0 
    

  10. Copy Kernel and Initramfs into /boot Partition

    Copy
    mkdir -p /mnt/cdrom/

    Mount the LiveDVD into /mnt/cdrom.

    Copy
    mount /dev/cdrom /mnt/cdrom/

    Copying the Kernel.

    Copy
    cp /mnt/cdrom/boot/gentoo64 /boot/kernel64

    Copying the Initramfs.

    Copy
    cp /mnt/cdrom/boot/gentoo64.igz /boot/initramfs64

  11. Configuring and Installing GRUB

    Make the grub Configuration File.

    Copy
    nano -w /boot/grub/grub.conf

    Insert.

    Copy
    default 0 
    timeout 31 
    title Gentoo Linux Amd64     
    root (hd0,0) 
    kernel /boot/kernel64 real_root=/dev/sda3 /ninitrd /boot/initramfs64 
    

    Grub Set-Up.

    Copy
    grub
    Copy
    grub> root (hd0,0)
    Copy
    grub> setup (hd0)
    Copy
    grub> quit

  12. Latest to Prevent Linux Gentoo Booting Issues Apply:

    Here Linux Gentoo Article-Installation Activation
    Please Donate $1 to Remove Ads!



    blank
    Linux Gento Installation Preventing Mouse, Keyboard and Network Not Working
  13. Finally, you Can Boot Into Linux Gentoo 12.1 KDE4 Desktop :)

Linux Gentoo 2012 KDE 4 Desktop