Questions about this topic? Sign up to ask in the talk tab.

Gentoo Installation

From NetSec
Revision as of 18:28, 24 November 2011 by EnriqueBlackston (Talk | contribs) (Created page with "Gentoo is a source-based linux distribution. source-based means every application is compiled locally. =Virtual Machine Setup= If you want to set up Gentoo within a virtual ma...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Gentoo is a source-based linux distribution. source-based means every application is compiled locally.


Virtual Machine Setup

If you want to set up Gentoo within a virtual machine you will need at least:

  • Around 512MB to 1GB of RAM
  • At least 10GB HDD
  • Networking features enabled

And preferably multiple cores on an x86_64 processor

Hard Drive Setup

   ls /dev|grep sd
   cfdisk /dev/sda

cfdisk will then bring you into an ncurses gui. Use cfdisk to:

  • Create 100MB Partition Bootable at the Beginning
  • Create 2048MB Partition at the beginning
  • Create remaining free space partition at the beginning


   # Choose to Write tables to disk
   # Choose to Quit cfdisk
   mkfs.ext2 /dev/sda1
   mkswap /dev/sda2
   mkfs.reiserfs /dev/sda3
   mount -t reiserfs /dev/sda3 /mnt/gentoo ; cd /mnt/gentoo
   wget http://gentoo.arcticnetwork.ca/releases/x86/current-stage3/stage3-i686-20110614.tar.bz2
   # for the below line, you can simply press the TAB button after stage3 and it will automatically complete the command, just press enter to confirm it
   tar xvpjf stage3*
   swapon /dev/sda2
   cp /etc/resolv.conf /mnt/gentoo/etc/resolv.conf
   # make sure you can access network here, try ping google.com or links google.command
   # if it isn't working, try to:
   # ifconfig eth0 down && ifconfig eth0 up
   # dhcpcd eth0
   # you might need to do this each time you reboot