I redid my Pentoo install and got rid of the two partitions and made just one. The instructions are pretty much the same but here they are updated slightly
cp -Rf /mnt/livecd/* to /mnt/gentoo/
rm -Rf /mnt/gentoo/etc; rm -Rf /mnt/gentoo/root
cp -Rf /etc /mnt/gentoo/etc
cp -Rf /root /mnt/gentoo/root
cp -Rf /usr/portage /mnt/gentoo/usr/portage
mount -t proc none /mnt/gentoo/proc
mount -o bind /dev /mnt/gentoo/dev
chroot /mnt/gentoo /bin/bash; env-update; source /etc/profile
vi /etc/fstab
All I set in there was /dev/sda3 for /boot and for /
I found Lilo works best on my Macbook so I uninstalled Grub and installed Lilo
I then edited a handful of configs in /etc/conf.d/
Removed autoconfig from default runlevel
Add keymaps to default
mv /etc/inittab.old /etc/inittab
mv /etc/init.d/halt.sh.orig /etc/init.d/halt.sh
passwd root
I then edited my lilo.conf
# Global LILO settings
boot=/dev/sda3
timeout=5
default=Linux
image=/boot/kernel-genkernel-x86-2.6.29-pentoo-r6
label= Linux
root=/dev/sda3
I then set eth0 to start on boot and configured my wireless and created an ath0 iface, ran lilo, set a password and unmounted.
/sbin/lilo
exit; cd; umount /mnt/gentoo/boot /mnt/gentoo/dev /mnt/gentoo/proc /mnt/gentoo; init 6
For my xorg.conf I set the following
...
Section "InputDevice"
Identifier "Synaptics"
Driver "synaptics"
#Option "Protocol" "event"
Option "Protocol" "auto-dev"
#Option "Device" ""
Option "Device" "/dev/input/mice"
Option "LeftEdge" "1900"
Option "RightEdge" "5400"
Option "TopEdge" "1900"
Option "BottomEdge" "4000"
Option "FingerLow" "25"
Option "FingerHigh" "30"
Option "MaxTapTime" "180"
Option "MaxTapMove" "220"
Option "VertScrollDelta" "100"
Option "MinSpeed" "0.3"
Option "MaxSpeed" "0.50"
Option "AccelFactor" "0.080"
Option "SHMConfig" "on"
Option "TapButton1" "1"
Option "TapButton2" "3"
Option "TapButton3" "2"
Option "VertTwoFingerScroll" "true"
Option "HorizTwoFingerScroll" "true"
EndSection
I also installed xfce’s terminal cause URxvt is a pain in the ass with copy and paste and when it comes to increasing fonts and such.
