Author

Topic: Avalon ASIC users thread - page 201. (Read 438602 times)

legendary
Activity: 1064
Merit: 1000
March 08, 2013, 10:44:18 PM

i've never used ssh before. how hard is that to setup?  

good question.

with SSH you go into command line interface of router, so you can edit the file yourself.
I know that cause I use same router and image by xiangfu as host to my icarus. avalon may be quite the same.

this script is called cgminer and resides in /etc/init.d/

Code:
#!/bin/sh /etc/rc.common
START=99

POOL1="-o http://stratum.ozco.in:80 -O user:password"
POOL2="-o http://us.ozco.in:80 -O user:password"

POOLS="$POOL1 $POOL2 $POOL3"

start() {
        DEVS=`find /dev/ -type c -name "ttyUSB*"  | sed 's/^/-S/' |  sed ':a;N;$
        cgminer -q -T --api-network --api-listen $POOLS $DEVS &
}

stop() {
        killall -s 9 cgminer




There's a web interface where you can just fill out the form, or so I'm told.  No ssh needed.

true. its all there.

but isn't ssh used to allow remote management in case you want to check on things or restart if frozen?

you can use both remotely, login as root via ssh gives you more power though
legendary
Activity: 1764
Merit: 1002
March 08, 2013, 10:32:33 PM

i've never used ssh before. how hard is that to setup?  

good question.

with SSH you go into command line interface of router, so you can edit the file yourself.
I know that cause I use same router and image by xiangfu as host to my icarus. avalon may be quite the same.

this script is called cgminer and resides in /etc/init.d/

Code:
#!/bin/sh /etc/rc.common
START=99

POOL1="-o http://stratum.ozco.in:80 -O user:password"
POOL2="-o http://us.ozco.in:80 -O user:password"

POOLS="$POOL1 $POOL2 $POOL3"

start() {
        DEVS=`find /dev/ -type c -name "ttyUSB*"  | sed 's/^/-S/' |  sed ':a;N;$
        cgminer -q -T --api-network --api-listen $POOLS $DEVS &
}

stop() {
        killall -s 9 cgminer




There's a web interface where you can just fill out the form, or so I'm told.  No ssh needed.

true. its all there.

but isn't ssh used to allow remote management in case you want to check on things or restart if frozen?
legendary
Activity: 1064
Merit: 1000
March 08, 2013, 09:32:37 PM

i've never used ssh before. how hard is that to setup?  

good question.

with SSH you go into command line interface of router, so you can edit the file yourself.
I know that cause I use same router and image by xiangfu as host to my icarus. avalon may be quite the same.

this script is called cgminer and resides in /etc/init.d/

Code:
#!/bin/sh /etc/rc.common
START=99

POOL1="-o http://stratum.ozco.in:80 -O user:password"
POOL2="-o http://us.ozco.in:80 -O user:password"

POOLS="$POOL1 $POOL2 $POOL3"

start() {
        DEVS=`find /dev/ -type c -name "ttyUSB*"  | sed 's/^/-S/' |  sed ':a;N;$
        cgminer -q -T --api-network --api-listen $POOLS $DEVS &
}

stop() {
        killall -s 9 cgminer




There's a web interface where you can just fill out the form, or so I'm told.  No ssh needed.

true. its all there.
vip
Activity: 574
Merit: 500
Don't send me a pm unless you gpg encrypt it.
March 08, 2013, 09:19:34 PM

i've never used ssh before. how hard is that to setup?  

good question.

with SSH you go into command line interface of router, so you can edit the file yourself.
I know that cause I use same router and image by xiangfu as host to my icarus. avalon may be quite the same.

this script is called cgminer and resides in /etc/init.d/

Code:
#!/bin/sh /etc/rc.common
START=99

POOL1="-o http://stratum.ozco.in:80 -O user:password"
POOL2="-o http://us.ozco.in:80 -O user:password"

POOLS="$POOL1 $POOL2 $POOL3"

start() {
        DEVS=`find /dev/ -type c -name "ttyUSB*"  | sed 's/^/-S/' |  sed ':a;N;$
        cgminer -q -T --api-network --api-listen $POOLS $DEVS &
}

stop() {
        killall -s 9 cgminer




There's a web interface where you can just fill out the form, or so I'm told.  No ssh needed.
legendary
Activity: 1064
Merit: 1000
March 08, 2013, 08:59:00 PM

i've never used ssh before. how hard is that to setup?  

good question.

with SSH you go into command line interface of router, so you can edit the file yourself.
I know that cause I use same router and image by xiangfu as host to my icarus. avalon may be quite the same.

this script is called cgminer and resides in /etc/init.d/

Code:
#!/bin/sh /etc/rc.common
START=99

POOL1="-o http://stratum.ozco.in:80 -O user:password"
POOL2="-o http://us.ozco.in:80 -O user:password"

POOLS="$POOL1 $POOL2 $POOL3"

start() {
        DEVS=`find /dev/ -type c -name "ttyUSB*"  | sed 's/^/-S/' |  sed ':a;N;$
        cgminer -q -T --api-network --api-listen $POOLS $DEVS &
}

stop() {
        killall -s 9 cgminer


legendary
Activity: 1764
Merit: 1002
March 08, 2013, 08:22:55 PM
sure man, no doubt.  but one simple script could get that holy cgminer file with preconfigured data and thats it, IF, the if they had all the data in good shape. which is not the case, since they have to manually check all the orders. so they are already having that extra work.

If you look in their github, you can see that there's actually very little to edit.  There's space for three pools and that's it.  It takes the user all of 30 seconds to edit.  If they did it for people, it doesn't save the end user any time, especially if things change between when they get the pool info and when the device ships.

In addition, they'd be having to match physical devices with shipping labels, etc where right now, they just stuff any device in a box and ship. If you ordered, shut up and enjoy your interest(tm).  If you didn't order, you're in the wrong thread. :p

Bro! Im just saying thats not impossible and would be neat, It does not diminish the fact that its an AWESOME product.

Im waiting Avalon and Im sure I can beat that 30 seconds set up via SSH Grin



You have to setup via the web interface first before you can get to ssh, thats why I said 30. Wink

i've never used ssh before. how hard is that to setup? 
legendary
Activity: 1064
Merit: 1000
March 08, 2013, 08:02:56 PM
sure man, no doubt.  but one simple script could get that holy cgminer file with preconfigured data and thats it, IF, the if they had all the data in good shape. which is not the case, since they have to manually check all the orders. so they are already having that extra work.

If you look in their github, you can see that there's actually very little to edit.  There's space for three pools and that's it.  It takes the user all of 30 seconds to edit.  If they did it for people, it doesn't save the end user any time, especially if things change between when they get the pool info and when the device ships.

In addition, they'd be having to match physical devices with shipping labels, etc where right now, they just stuff any device in a box and ship. If you ordered, shut up and enjoy your interest(tm).  If you didn't order, you're in the wrong thread. :p

Bro! Im just saying thats not impossible and would be neat, It does not diminish the fact that its an AWESOME product.

Im waiting Avalon and Im sure I can beat that 30 seconds set up via SSH Grin



You have to setup via the web interface first before you can get to ssh, thats why I said 30. Wink

from wiki:
Quote
ssh [email protected] # Once you setup the password the telnet service will be stop. use ssh instead.

telnet then? well we lost way more time discussing this.
vip
Activity: 574
Merit: 500
Don't send me a pm unless you gpg encrypt it.
March 08, 2013, 07:57:34 PM
sure man, no doubt.  but one simple script could get that holy cgminer file with preconfigured data and thats it, IF, the if they had all the data in good shape. which is not the case, since they have to manually check all the orders. so they are already having that extra work.

If you look in their github, you can see that there's actually very little to edit.  There's space for three pools and that's it.  It takes the user all of 30 seconds to edit.  If they did it for people, it doesn't save the end user any time, especially if things change between when they get the pool info and when the device ships.

In addition, they'd be having to match physical devices with shipping labels, etc where right now, they just stuff any device in a box and ship. If you ordered, shut up and enjoy your interest(tm).  If you didn't order, you're in the wrong thread. :p

Bro! Im just saying thats not impossible and would be neat, It does not diminish the fact that its an AWESOME product.

Im waiting Avalon and Im sure I can beat that 30 seconds set up via SSH Grin



You have to setup via the web interface first before you can get to ssh, thats why I said 30. Wink
legendary
Activity: 1064
Merit: 1000
March 08, 2013, 07:50:21 PM
sure man, no doubt.  but one simple script could get that holy cgminer file with preconfigured data and thats it, IF, the if they had all the data in good shape. which is not the case, since they have to manually check all the orders. so they are already having that extra work.

If you look in their github, you can see that there's actually very little to edit.  There's space for three pools and that's it.  It takes the user all of 30 seconds to edit.  If they did it for people, it doesn't save the end user any time, especially if things change between when they get the pool info and when the device ships.

In addition, they'd be having to match physical devices with shipping labels, etc where right now, they just stuff any device in a box and ship. If you ordered, shut up and enjoy your interest(tm).  If you didn't order, you're in the wrong thread. :p

Bro! Im just saying thats not impossible and would be neat, It does not diminish the fact that its an AWESOME product.

Im waiting Avalon and Im sure I can beat that 30 seconds set up via SSH Grin

vip
Activity: 574
Merit: 500
Don't send me a pm unless you gpg encrypt it.
March 08, 2013, 07:46:46 PM
sure man, no doubt.  but one simple script could get that holy cgminer file with preconfigured data and thats it, IF, the if they had all the data in good shape. which is not the case, since they have to manually check all the orders. so they are already having that extra work.

If you look in their github, you can see that there's actually very little to edit.  There's space for three pools and that's it.  It takes the user all of 30 seconds to edit.  If they did it for people, it doesn't save the end user any time, especially if things change between when they get the pool info and when the device ships.

In addition, they'd be having to match physical devices with shipping labels, etc where right now, they just stuff any device in a box and ship. If you ordered, shut up and enjoy your interest(tm).  If you didn't order, you're in the wrong thread. :p
legendary
Activity: 1064
Merit: 1000
March 08, 2013, 07:43:02 PM
Is there any way to tell if they arent setting up their own separate mining farm on the side ?

No.  The units come preconfigured with a default pool and credentials, so if you follow those stats, you can see how many units are powered on but not reconfigured yet. Smiley

LOL... would be neat if they were preconfigured to mine in a pool with custom user and pointed to buyers bitcoin address.

I guess thats not the case. if you have an avalon please log into that GUI.

Doesn't it make sense to just ship a default and let each buyer spend 5 minutes configuring the device vs them having to configure all 300 and then ship?  Break the work out among all buyers so everyone gets the gear faster.

sure man, no doubt.  im just saying making it plug and play would be nice, with DHCP and all. you already see lots of people asking how to set the thing up. one simple script could get that holy cgminer file with preconfigured info, IF, the they had all the data in good shape. which is not the case, since they have to manually check all the orders. so they are already having that extra work.

and of course, dont forget that those 5 minutes to get acquainted with machine will be the most exciting of all avalon experience. so still valid.
vip
Activity: 574
Merit: 500
Don't send me a pm unless you gpg encrypt it.
March 08, 2013, 07:39:28 PM
Is there any way to tell if they arent setting up their own separate mining farm on the side ?

No.  The units come preconfigured with a default pool and credentials, so if you follow those stats, you can see how many units are powered on but not reconfigured yet. Smiley

LOL... would be neat if they were preconfigured to mine in a pool with custom user and pointed to buyers bitcoin address.

I guess thats not the case. if you have an avalon please log into that GUI.

Doesn't it make sense to just ship a default and let each buyer spend 5 minutes configuring the device vs them having to configure all 300 and then ship?  Break the work out among all buyers so everyone gets the gear faster.
legendary
Activity: 1064
Merit: 1000
March 08, 2013, 07:26:22 PM
Is there any way to tell if they arent setting up their own separate mining farm on the side ?

No.  The units come preconfigured with a default pool and credentials, so if you follow those stats, you can see how many units are powered on but not reconfigured yet. Smiley

LOL... would be neat if they were preconfigured to mine in a pool with custom user and pointed to buyers bitcoin address.

I guess thats not the case. if you have an avalon please log into that GUI.
vip
Activity: 574
Merit: 500
Don't send me a pm unless you gpg encrypt it.
March 08, 2013, 07:23:23 PM
Is there any way to tell if they arent setting up their own separate mining farm on the side ?

No.  The units come preconfigured with a default pool and credentials, so if you follow those stats, you can see how many units are powered on but not reconfigured yet. Smiley
hero member
Activity: 658
Merit: 500
March 05, 2013, 04:59:37 PM
Apparently it's good to 300 mhz, but hits a brick wall there. Believed to be a coding or software issue.
legendary
Activity: 1890
Merit: 1003
March 05, 2013, 04:38:14 PM
Thanks for the info. Grin
sr. member
Activity: 388
Merit: 250
March 05, 2013, 04:30:55 PM
282
legendary
Activity: 1890
Merit: 1003
March 05, 2013, 04:26:56 PM
can you please check the firmware bin with the option  to overclock
http://downloads.qi-hardware.com/people/xiangfu/avalon/openwrt-ar71xx-generic-tl-wr703n-v1-squashfs-factory-20130128-32-oc.bin

20130127:
  * Add overclock code
  * Change the cgminer configure to UCI system
  * Add the simple web ui

Regards
Thorvald
Where is the source code for this?

Would love to get some feedback on BFGMiner for Avalon alpha as well..

on github? the overclocking para is been in the git for awhile now, it's just not enabled by default.

I'll forward the BFGMiner.
What is the stock speed (66Ghz) in Mhz?
sr. member
Activity: 336
Merit: 251
Avalon ASIC Team
March 02, 2013, 07:20:20 PM
can you please check the firmware bin with the option  to overclock
http://downloads.qi-hardware.com/people/xiangfu/avalon/openwrt-ar71xx-generic-tl-wr703n-v1-squashfs-factory-20130128-32-oc.bin

20130127:
  * Add overclock code
  * Change the cgminer configure to UCI system
  * Add the simple web ui

Regards
Thorvald
Where is the source code for this?

Would love to get some feedback on BFGMiner for Avalon alpha as well..

on github? the overclocking para is been in the git for awhile now, it's just not enabled by default.

I'll forward the BFGMiner.
legendary
Activity: 2576
Merit: 1186
March 02, 2013, 05:27:51 PM
can you please check the firmware bin with the option  to overclock
http://downloads.qi-hardware.com/people/xiangfu/avalon/openwrt-ar71xx-generic-tl-wr703n-v1-squashfs-factory-20130128-32-oc.bin

20130127:
  * Add overclock code
  * Change the cgminer configure to UCI system
  * Add the simple web ui

Regards
Thorvald
Where is the source code for this?

Would love to get some feedback on BFGMiner for Avalon alpha as well..
Jump to: