Yes I guess I would be truly stuck. I am a little concerned I am stuck with the Sheevaplug being useless.
I just ran runme.exe nand|mmc and it says (first line)
CRC read error on uboot-env.bin: No error
And freezes there.
I just tried runme.exe nand and I get alot more activity but it all ends with
Error: unable to open ftdi device: device not found
Runtime error, file "command.c", line 469:
**** openocd FAILED
**** Is the mini USB cable connected?
**** Try powering down, then replugging the Sheevaplug
I believe this is a common and very frustrating error from what I have read here today. I have tried unplugging then plugging the Sheevaplug before running the command, resetting the sheevaplug with a paperclip then running the command. Still the same.
Would anyone be so kind to jump in?
OK, it sounds like you need a completely different approach. What I did was
(1) plug the SheevaPlug into the mains and into my network switch (assumes you have DHCP running, but most people do these days)
(2) from another machine, run nmap to identify what IP address your SheevaPlug is sitting on:
artisan:~# nmap 192.168.0.0/24
Starting Nmap 4.68 ( http://nmap.org ) at 2010-08-20 15:00 BST
Interesting ports on ubuntu (192.168.0.6):
Not shown: 1711 closed ports
PORT STATE SERVICE
22/tcp open ssh
MAC Address: 00:50:43:01:52:1C (Marvell Semiconductor) Mine self-identifies as 'ubuntu', even though that is no longer its hostname. I expect yours will too. In any case the MAC address will show Marvell Semiconductor, and port 22 (probably only 22, unless you've installed other services) will be open.
(3) ssh in to the port stated:
simon@artisan:~$ ssh 192.168.0.6 -l root
The authenticity of host '192.168.0.6 (192.168.0.6)' can't be established.
RSA key fingerprint is ff:2c:57:5f:f0:7b:ab:3d:95:bb:bc:cf:4d:8f:5f:12.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.0.6' (RSA) to the list of known hosts.
root@192.168.0.6's password:The default root password is 'nosoup4u' (BUT
CHANGE THIS!)
You now have control of your box.
The only thing that can go wrong with this is if the OS image on the card you've inserted is dodgy, or if the card you've inserted fails
fsck (a problem I had), in which case the box will hang in single user mode without starting
sshd. However, if this happens, take the card out and power cycle the box, and you'll be fine.