I recently got a Raspberry Pi. It is awesome. I am going to use this post to keep track of everything I have done to get it setup.
Config program:
- Expand filesystem to size of SD card
- Set locale to EN(us) UTF8
- Enable SSH
Add proxy to apt-get:
- sudo su
echo 'Acquire::http::Proxy "http://yourproxyaddress:proxyport";' > /etc/apt/apt.conf.d/10proxy
Update & upgrade:
- apt-get update
- apt-get upgrade
Emacs:
- apt-get install emac
Enable system proxy
- emacs /etc/environment
- export http_proxy=”http://username:password@host:port/”
I was having trouble SSHing from my Mac and kept getting this error: “Host key verification failed.”
Doing this helped: ssh pi@<ip-address> -o StrictHostKeyChecking=no