Created
September 27, 2012 18:50
-
-
Save dmp1ce/3795698 to your computer and use it in GitHub Desktop.
Linode gentoo setup script
This file contains 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
#!/bin/bash | |
# Some things to do for a fresh Linode Gentoo install | |
# Source: http://www.linode.com/wiki/index.php/Gentoo | |
# TODO: This should be run as ROOT! | |
# Get portage in sync | |
eix-sync | |
# Update portage | |
emerge portage | |
# Update core utilities and compiler | |
# emerge binutils gcc | |
# Update environment | |
# source /etc/profile | |
# Update world | |
emerge --verbose --update --deep --with-bdeps=y --newuse world | |
emerge --depclean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment