This originally was a post requesting for help, but since I figured it out, I'll tell people how to do it who have the same problem.
Basically, when you get Whiite 1.10 on the internet, it won't update or install new software. So this is what you have to do.
1) Update it from Lenny to Squeeze. It's actually really easy to do.
Run this command:
nano /etc/apt/sources.list
Change where it says "lenny" on both lines to "squeeze."
Now simply run "apt-get update".
2) If you get an error saying something like, "NO PUB_KEY {INSERT KEY}", run these commands:
gpg --recv-keys AED4B06F473041FA
gpg --armor --export AED4B06F473041FA | apt-key add -
apt-get update
As you can see, I used "AED4B06F473041FA" for my Key. If the "{INSERT KEY}" part is different, replace AED4B06F473041FA with your Key.
3) If you still can't update, run:
apt-get update -f
This should take a
long time to fix everything.
4) Once done, run apt-get update and it should successfully update!
Done! Now you can install new software, like "apt-get install python" should install Python.
5) I'm adding this step in because you may still run into an error after reboot. You get the error that says something like, "nb root's path should usually contain" etc...
To fix this, run this command:
PATH="$PATH:/sbin:/usr/sbin:/bin:/usr/bin"
You can also add the line to the "profile" file and it should run it on boot.
Edited 12 time(s). Last edit at 09/05/2012 12:18AM by Khoraski.