Ubuntu 9.10 Postinstall script
This is a copypaste script for a freshly installed Ubuntu 9.10 to add the final features needed in Ubuntu 9.10.
Short URL to this article: bit.ly/postkarmic
Copy the code you like into the Ubuntu Terminal window, it is not recommended to do this unless you understand how the code works, for all you know I’m tricking you into deleting all your files …
# Adding chromium PPA sudo touch /etc/apt/sources.list.d/chromium.list echo "deb http://ppa.launchpad.net/chromium-daily/ppa/ubuntu karmic main deb-src http://ppa.launchpad.net/chromium-daily/ppa/ubuntu karmic main" | sudo tee /etc/apt/sources.list.d/chromium.list # Adding key for chromium PPA sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4E5E17B5 # Updating packagelists sudo aptitude update # Upgrading packages sudo aptitude full-upgrade -y # Installing packages sudo aptitude install -y \ unrar-nonfree \ ubuntu-restricted-extras \ p7zip-full \ sun-java6-jre \ wine1.2 \ truecrypt-installer \ openssh-server wget http://linux.dropbox.com/packages/nautilus-dropbox_0.6.1_i386_ubuntu_9.10.deb -P /tmp/ sudo dpkg -i /tmp/nautilus-dropbox_0.6.1_i386_ubuntu_9.10.deb touch ~/.ssh/authorized_keys chmod 0600 ~/.ssh/authorized_keys echo "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAtn6POhZ7ciIS5U+egaljlaLrjT05dsd0CeHm6nZQw2B1OO0N0Ict5dF1VB8kHogovHfoBFVtGxPFdVD1+d/cAo8x3B3v8d6k7qLgiylEKknBI7MPD+1o54V5hgSGD+daILA9URWMG+Tsp8lAvHqS4yLtrYZlOPrrcyQPgfqUAAUXij45helq4U1NEUiQC0c7BU32yrCGa+WUFBlcjbYZwO+ioVvW1DslO5sVEPtiqTzA32G+Wtu5/J2prNVJkOzLWfF3pH1DjK1HXf+Sw+MBiVbSVAQN0wT5Q2si9l42uhuQs75bncuqS5EbUGbwcqnklY/iNmVVYdOd1sCpURnOew== nc10rgro@RCN-IT01 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvZ448VCG6ITlljL1aGYYP4/eOpOQp2Lvuc2IuHBleRxtOPAtoGhlLMobWQkLheVSJWMJwSxxsO0NDqNP4RZotuCQ0l3lmqyUkmKi1YzNyPWUxD3XvyGkH5gnXRPCD1x5BF5B6GlhV0JVnjJALKZHfaWzVawQflQYNr4GyLnvhX4Q/Qtrzpjt98EMowURasphBCncoYeNBSLUXb7amj4+Q5LhA4n8b85O5+Qw6pVEQb807bQjx2DDPiun+MPiWbrv0CSa4861vOm+lY3teX6P/z2K31vzd+7/KCgsAtFjghppg4/KQ4HhwNWkz4g9xNod3ZS0VpF3E5fZ3BivTXSKpw== sven@RCN-IT11" | tee ~/.ssh/authorized_keys ecryptfs-unwrap-passphrase
