surfek wrote: 
> Hi,
> 
> yesterday I've tried new install - downloaded latest image for dual.
> Install started, got message on the web gui "reload browser" - I am not
> able now to access web gui, ssh or even ping does not work.
> Any hints?
> 
> 
> Best regards,
> 
> Michal

I had a look at the script run by Triode's Wandboard installer image,
there are no obvious out of date references, but the line which
partitions the SD card seems odd to me:


Code:
--------------------
    
  echo -e "u\no\nn\np\n1\n24576\n\nw" | fdisk $CARD > /dev/null
  
--------------------


If you use fdisk at the command line you'd see that the leading "u"
changes display/entry units to cylinders, and so this command would
create a partition starting at cylinder 24576. Unless I'm mistaken, this
could be beyond the end of your SD card.

If you can put your sd card in a card reader and use fdisk -l /dev/SdX 
( sub X for actual value ) in Linux, you'd see if ia sensible partition
had been created on it. If it not, then I'd suggest mounting the
installer image in Linux and changing the above line to:


Code:
--------------------
    
  echo -e "o\nn\np\n1\n8192\n\nw" | fdisk $CARD > /dev/null
  
--------------------


Example instructions:

1. Mount installer img as a loop device, eg:


Code:
--------------------
    
  mount -o loop,offset=$((8192*512)) soa-image-wand-dual.img   /mnt
  
--------------------


2. Navigate to install scripts directory:


Code:
--------------------
    
  cd /mnt/scripts
  
--------------------

3. Use your preferred editor to edit he file named
create-sdcard-soa-wand.sh e.g:


Code:
--------------------
    
  nano create-sdcard-soa-wand.sh
  
--------------------


At line 15, change to:


Code:
--------------------
    
  echo -e "o\nn\np\n1\n8192\n\nw" | fdisk $CARD > /dev/null
  
--------------------



4. Umount img, e.g :


Code:
--------------------
    
  cd /
  umount /mnt
  sync
  
--------------------


5. Write modified installer img to SD card as normal.


------------------------------------------------------------------------
Krisbee's Profile: http://forums.slimdevices.com/member.php?userid=59080
View this thread: http://forums.slimdevices.com/showthread.php?t=101624

_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to