frozen? how long does it take to install ubuntu on beagleboard?

ubuntu@ubuntu:~/Downloads/ubuntu-11.10-r3-minimal-armel$ sudo ./
setup_sdcard.sh --mmc /dev/mmcblk0 --uboot beagle_cx
I see...
fdisk -l:
Disk /dev/sda: 500.1 GB, 500107862016 bytes
Disk /dev/sdb: 4016 MB, 4016046080 bytes
Disk /dev/sdh: 4023 MB, 4023386112 bytes
Disk /dev/mmcblk0: 3959 MB, 3959422976 bytes

mount:
/dev/sdb1 on /cdrom type vfat
(rw,relatime,fmask=0022,dmask=0022,codepage=cp437,iocharset=iso8859-1,shortname=mixed,errors=remount-
ro)
/dev/loop0 on /rofs type squashfs (ro,noatime)
/dev/sdh1 on /media/208506650 type vfat
(rw,nosuid,nodev,uhelper=udisks,uid=999,gid=999,shortname=mixed,dmask=0077,utf8=1,showexec,flush)
/dev/mmcblk0p2 on /media/dfc321be-5fe7-4b4d-a75a-45232f8569d0 type
ext2 (rw,nosuid,nodev,uhelper=udisks)
/dev/mmcblk0p1 on /media/C8B1-0024 type vfat
(rw,nosuid,nodev,uhelper=udisks,uid=999,gid=999,shortname=mixed,dmask=0077,utf8=1,showexec,flush)
/dev/sda5 on /media/Data type fuseblk
(rw,nosuid,nodev,allow_other,blksize=4096,default_permissions)

Are you 100% sure, on selecting [/dev/mmcblk0] (y/n)? y

Downloading Device's Bootloader

i would just like to know, how long does it stay at "Downloading
Device's Bootloader" for?

thanks

Shouldn't take that long..

Do you have internet connectivity?

Can you:
ping www.rcn-ee.net
wget http://rcn-ee.net/deb/tools/latest/bootloader

if not, the script isn't supported..

Regards,

It should not tale very long. It sounds like wget hangs while trying
to download the bootloader.
I had the same problem not to say that the solution is the same.
My problem was that i was using an internet connection with proxy. The
wget command in the script did not use the proxy becourse og the sudo
command.
The solution was to tell wget allways to use the proxy.

Hey Lars,

Can you share what options you had to pass to wget to make it work,
that way I can integrate that into the git script source for others.

I've just never had to deal with proxy's directly..

Regards,

It should not tale very long. It sounds like wget hangs while trying
to download the bootloader.
I had the same problem not to say that the solution is the same.
My problem was that i was using an internet connection with proxy. The
wget command in the script did not use the proxy becourse og the sudo
command.
The solution was to tell wget allways to use the proxy.

Hey Lars,

Can you share what options you had to pass to wget to make it work,
that way I can integrate that into the git script source for others.

I've just never had to deal with proxy's directly..

Regards,

--
Robert Nelson
http://www.rcn-ee.com/

I did not solve this by passing a command to wget but by editing the
setup file for wget in /etc/"wgetsomething" so i guess my solution
does not apply as a solution.

Robert Nelson <robertcnelson@gmail.com> [2012-01-27 10:02:47]:

Hey Lars,

Can you share what options you had to pass to wget to make it work,
that way I can integrate that into the git script source for others.

Hi Robert,

for inspiration take a peek at the OE setup scripts:

http://git.angstrom-distribution.org/cgi-bin/cgit.cgi/setup-scripts/tree/oebb.sh

but it's quite simple anyway, just set correct env variables for wget:

  export http_proxy="http://proxyhost:proxy_port"
  export ftp_proxy="http://proxyhost:proxy_port"

and that's it.

-- ynezz