Created
November 13, 2010 06:19
-
-
Save aaronky/675132 to your computer and use it in GitHub Desktop.
gentoo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| hd_drive=/dev/hda | |
| emerge --sync | |
| ls -FGg /etc/make.profile | |
| nano -w /etc/locale.gen | |
| ls /usr/share/zoneinfo | |
| cp /usr/share/zoneinfo/US/Central /etc/localtime | |
| emerge gentoo-sources | |
| ls -l /usr/src/linux | |
| cd /usr/src/linux | |
| make menuconfig | |
| make && make modules_install | |
| cp arch/i386/boot/bzImage /boot/kernel-gentoo | |
| echo -e "${hd_drive}1 /boot ext2 defaults,noatime 1 2 | |
| ${hd_drive}2 none swap sw 0 0 | |
| ${hd_drive}3 / ext3 noatime 0 1 | |
| /dev/cdrom /mnt/cdrom auto noauto,user 0 0" > /etc/fstab | |
| emerge syslog-ng | |
| rc-update add syslog-ng default | |
| emerge vixie-cron | |
| rc-update add vixie-cron default | |
| emerge dhcpcd | |
| emerge grub | |
| nano -w /boot/grub/grub.conf | |
| grep -v rootfs /proc/mounts > /etc/mtab | |
| grub-install --no-floppy $hd_drive | |
| passwd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment