I was fortunate enough to get a RbPi for free from a friend; however I'm told it's an older model that has some power problems. I've already encountered one: I cannot get enough power to have a Wifi dongle and keyboard plugged in at the same time. I've tried using a USB hub that has its own power to help alleviate the problem but it still doesn't let me use both at the same time.
I've created a script that will automatically join my RbPi to the network on boot but I still need to log into the Pi for this to happen (right?). Have you gotten your Pi onto your Wifi network without having to touch the keyboard? Here's my script, but it wasn't working for me before:
Code: Select all
#! /bin/bash
ifconfig wlan0
iwconfig wlan0 essid "NETWORK_ID" key s:"WIRELESS_KEY"
dhclient wlan0
Thanks,
inDux
