• Home
  • Help
  • Search
  • Login
  • Register
  Show Posts
Pages: [1]
1  General Category / General Discussion / Re: 2 Guru Server Plus and 1 original SheevaPlug for sale on: April 28, 2011, 07:10:47 AM
How much are you selling? thanks.

Guru ServerPlus for CAD 140, SheevaPlug for CAD 100, assumes local pickup.

Everything is BNIB, so you basically save shipping (CAD 20+) and waiting time (few months...) compared to ordering from GlobalScale.  Considering that original warranty is only 30 days, if device breaks within that time, I will replace it or refund your money.


2  General Category / General Discussion / 2 Guru Server Plus and 1 original SheevaPlug for sale on: April 25, 2011, 07:49:46 PM
I have 2 Guru Server Plus and 1 original SheevaPlug as leftovers from a client project.
All three devices are BNIB, I had few extra devices ordered for the project, just in case, but fortunately did not have to use them.

I am located in Toronto, Canada.

So, if you were planning to order some from globalscale, you can save some waiting time and have them immediately instead of waiting few weeks for delivery.

PM if you are interested.


3  General Category / General Discussion / Re: GuruPlug - Received Yours Yet? on: May 15, 2010, 11:46:33 PM
Well, I just got mine yesterday (2 of them actually plus free JTAG module).
Packaging is solid, tested one and it looks and works great.

As others already noted there is absolutely no documentation so without wiki and forum help it would be hard to get started.


4  Hardware and U-Boot firmware / Hardware / Re: USB to Ethernet Adaptor. Has anyone actually set up one of these? on: January 02, 2010, 10:27:10 PM
Setting USB ethernet adapter is fairly simple, as long as supported chipset is inside the adapter.

I am using ASIX AX88772 based Sabrent adapter (available at http://www.newegg.ca/Product/Product.aspx?Item=N82E16812203024).

Here is how to configure it.

1) You need updated kernel, I am at 2.6.32.2 prebuilt kernel from sheeva.with-linux.com (see wiki http://plugcomputer.org/plugwiki/index.php/Install_Prebuilt_Kernels_From_sheeva.with-linux.com)

2) Attach adapter and run dmesg, you should see something like this:

Code:
...
eth1: register 'asix' at usb-orion-ehci.0-1, ASIX AX88772 USB 2.0 Ethernet, 00:60:6e:6d:00:87
usbcore: registered new interface driver asix
...

3) edit "/etc/network/interfaces", add lines:

Code:
auto eth1
iface eth1 inet dhcp

4) ifconfig eth1 up

5) verify that adapter got IP address with "ifconfig -a", output should be similar to this:

Code:
eth0      Link encap:Ethernet  HWaddr 00:50:43:01:6c:d2
          inet addr:192.168.100.190  Bcast:192.168.100.255  Mask:255.255.255.0
          inet6 addr: fe80::250:43ff:fe01:6cd2/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:322 errors:0 dropped:0 overruns:0 frame:0
          TX packets:260 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:29609 (29.6 KB)  TX bytes:36783 (36.7 KB)
          Interrupt:11

eth1      Link encap:Ethernet  HWaddr 00:60:6e:6d:00:87
          inet addr:192.168.100.205  Bcast:192.168.100.255  Mask:255.255.255.0
          inet6 addr: fe80::260:6eff:fe6d:87/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:194 errors:0 dropped:0 overruns:0 frame:0
          TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:15228 (15.2 KB)  TX bytes:1184 (1.1 KB)

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:16 errors:0 dropped:0 overruns:0 frame:0
          TX packets:16 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:960 (960.0 B)  TX bytes:960 (960.0 B)


That's it Smiley

Pages: [1]