Bitcoin Forum
April 30, 2024, 09:40:09 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 [30] 31 32 33 34 35 36 »
  Print  
Author Topic: Who likes pod miners?  (Read 55837 times)
rem26
Newbie
*
Offline Offline

Activity: 78
Merit: 0


View Profile
February 23, 2018, 06:26:52 AM
 #581

My two units arrived today!  They are very nicely made.
1714470009
Hero Member
*
Offline Offline

Posts: 1714470009

View Profile Personal Message (Offline)

Ignore
1714470009
Reply with quote  #2

1714470009
Report to moderator
BitcoinCleanup.com: Learn why Bitcoin isn't bad for the environment
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714470009
Hero Member
*
Offline Offline

Posts: 1714470009

View Profile Personal Message (Offline)

Ignore
1714470009
Reply with quote  #2

1714470009
Report to moderator
1714470009
Hero Member
*
Offline Offline

Posts: 1714470009

View Profile Personal Message (Offline)

Ignore
1714470009
Reply with quote  #2

1714470009
Report to moderator
DM2008
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
February 23, 2018, 08:45:06 PM
 #582

Cool!   

Just pulled the updated version of cgminer and built it on my pi3, so I'll be ready when the time comes.  Also decided to ditch minera and just have it auto-start cgminer in a screen session on boot.
goose1072
Full Member
***
Offline Offline

Activity: 235
Merit: 100


View Profile
February 23, 2018, 10:30:18 PM
 #583

Thank you sidehack & Laura for make this a smooth and fast transaction.

Loving the new pods!!

My setup  Grin





These are VERY NICE!

kipper01
Full Member
***
Offline Offline

Activity: 214
Merit: 100

1KippERXwH1PdBxKNt1ksgqh89WBv6CtWQ


View Profile
February 23, 2018, 10:43:41 PM
 #584

Can't wait till these arrive in my mailbox  Smiley

olseh
Jr. Member
*
Offline Offline

Activity: 128
Merit: 9


View Profile
February 23, 2018, 11:01:31 PM
 #585

These look great! Great work sidehack!!!
-EOS-
Full Member
***
Offline Offline

Activity: 211
Merit: 100


View Profile
February 23, 2018, 11:02:25 PM
 #586

Can't wait for my email from Laura to order. Smiley
minerbobbert
Member
**
Offline Offline

Activity: 177
Merit: 10


View Profile
February 23, 2018, 11:19:47 PM
 #587

Cool!   

Just pulled the updated version of cgminer and built it on my pi3, so I'll be ready when the time comes.  Also decided to ditch minera and just have it auto-start cgminer in a screen session on boot.

Interesting - can you share how you did that? I usually go crazy trying to figure out the software setups and I'm trying a pi this time around
avulsionist
Jr. Member
*
Offline Offline

Activity: 45
Merit: 1


View Profile
February 23, 2018, 11:30:56 PM
 #588

Cool!   

Just pulled the updated version of cgminer and built it on my pi3, so I'll be ready when the time comes.  Also decided to ditch minera and just have it auto-start cgminer in a screen session on boot.

Interesting - can you share how you did that? I usually go crazy trying to figure out the software setups and I'm trying a pi this time around

I have had a pi up and running with the 2pac's as well. It's a little more that what is listed on the support thread but that has most of it.
For the USB stuff
https://bitcointalk.org/index.php?topic=1845307.msg29774420#msg29774420

vh
Hero Member
*****
Offline Offline

Activity: 699
Merit: 666


View Profile
February 24, 2018, 02:03:47 AM
 #589

As I see some of these are starting to get shipped.   I suppose this is a good time as any to start an official terminus support thread.     Wink

sruyle
Newbie
*
Offline Offline

Activity: 65
Merit: 0


View Profile
February 24, 2018, 02:31:26 AM
 #590

Can't wait for my email from Laura to order. Smiley

same here
DM2008
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
February 24, 2018, 04:10:51 AM
Last edit: February 24, 2018, 06:16:03 PM by DM2008
 #591


Interesting - can you share how you did that? I usually go crazy trying to figure out the software setups and I'm trying a pi this time around

Here is what I did from a fresh install of Raspbian Stretch.  Feel free to comment.

1) Start by enabling ssh. Open a terminal:

Code:
sudo systemctl enable ssh
sudo systemctl start ssh

Ideally you should change the password for the pi user using the passwd command.

From here you can now run the pi headless and do everything remotely via ssh

2) An optional step that can prevent the pi from locking up after a while.

Code:
sudo nano /boot/cmdline.txt

add slub_debug=FPUZ to the existing line, do not add a new line.

3) Build cgminer - follow the steps on page 1 of the 2pac thread:
https://bitcointalk.org/index.php?topic=1764803.0

Code:
sudo apt-get update
sudo apt-get upgrade -y

sudo apt-get install -y build-essential git libusb-1.0-0-dev libusb-1.0-0 libcurl4-openssl-dev libncurses5-dev libudev-dev screen libtool automake pkg-config libjansson-dev

mkdir -p git/vthoang; cd git/vthoang
git clone https://github.com/vthoang/cgminer.git
cd cgminer

CFLAGS="-O2" ./autogen.sh --enable-gekko
make -j 2

Copy cgminer to /home/pi/cgminer (the location is up to you, you just need to adjust the path below if you change it)

Create /home/pi/cgminer.conf with your pool information and custom settings, here is an example:

Code:
{
"pools" : [
   {
      "url" : "stratum+tcp://pool.ckpool.org:3333",
      "user" : "1BURGERAXHH6Yi6LRybRJK7ybEm5m5HwTr",
      "pass" : "x"
   }
],

"gekko-terminus-freq" : "150",
"gekko-start-freq" : "100",
"gekko-step-freq" : "25",
"gekko-step-delay" : "15"
}

4) Setup a screen session to run at startup:

Create this file: /lib/systemd/system/cgminer.service
Code:
[Unit]
Description=cgminer
After=network.target

[Service]
Type=forking
User=pi

#Start:
# screen -dm creates detached session that forks.
#  use this with Type=forking
ExecStart=/usr/bin/screen -dmS cgminer /home/pi/cgminer --config /home/pi/cgminer.conf

#Stop:
# tell cgminer to quit (not screen), and screen will exit
ExecStop=/usr/bin/screen -S cgminer -X stuff 'q'

# or tell screen to quit and clobber cgminer - not best choice
#ExecStop=/usr/bin/screen -S cgminer -X quit
#Probably need a kill definition in case the miner is hung

#Reload:
# sending the string 'scy' (settings, restart, yes) to cgminer will
#  cause a restart which will re-read config file if using one
ExecReload=/usr/bin/screen -S cgminer -X stuff 'scy'

[Install]
WantedBy=multi-user.target

Then run:
Code:
sudo systemctl daemon-reload
sudo systemctl enable cgminer.service
sudo systemctl start cgminer.service

The screen setup  was a modification of instructions from https://techsparx.com/cryptocurrency/mining/setup-usb-miner-cgminer.html

If you want to check on things, you can ssh into the pi and type:
screen -r cgminer

This will reconnect you to the session running cgminer.

To disconnect and leave the screen session running, just type ‘ctrl-a d’ or ‘ctrl-a ctrl-d’
gvb
Jr. Member
*
Offline Offline

Activity: 140
Merit: 9


View Profile
February 24, 2018, 10:11:07 AM
Last edit: February 24, 2018, 10:42:33 AM by gvb
 #592

Sorry to be negative but I see some having already 4 pods.

Wasn't the deal to spread it to as much as possible starting with a max of 1 pod to give 'everyone' a chance to get one?

I and several others fished behind the net serveral times on other hardware due to bulk buyers.

Any news for us euro people?
jekecoin
Sr. Member
****
Offline Offline

Activity: 427
Merit: 250


View Profile WWW
February 24, 2018, 01:37:45 PM
 #593

Sorry to be negative but I see some having already 4 pods.

Wasn't the deal to spread it to as much as possible starting with a max of 1 pod to give 'everyone' a chance to get one?

I and several others fished behind the net serveral times on other hardware due to bulk buyers.

Any news for us euro people?
The problem I think is the shipping costs, for us the Europeans need to wait for bitshopper, we have hard to get those little babyes and by legalities we get a enclosed pod.

sorry with my very bad English.

Hard obsoleto                    VPS: Digitalocean                     Cloudmining: Cex.io · EOBOT                    Gambling: Primedice
Morguk
Hero Member
*****
Offline Offline

Activity: 594
Merit: 506



View Profile
February 24, 2018, 05:06:24 PM
 #594

My only annoyance is being involved in this thread for what seems like a very long time, yet missing a few weeks when the Laura email was mentioned and being at the back of the list. I understand there's not much to be done, but still frustrating! Looking forward to being able to place my order.

Calculate the chance of hitting a bitcoin block when solo mining at
ica7000
Member
**
Offline Offline

Activity: 161
Merit: 12


View Profile
February 24, 2018, 09:06:34 PM
 #595

My only annoyance is being involved in this thread for what seems like a very long time, yet missing a few weeks when the Laura email was mentioned and being at the back of the list. I understand there's not much to be done, but still frustrating! Looking forward to being able to place my order.

I got a response but no offer yet.  I think Sidehack got swamped with orders.  I too am looking forward to placing an order. 
avulsionist
Jr. Member
*
Offline Offline

Activity: 45
Merit: 1


View Profile
February 25, 2018, 12:39:29 AM
 #596


Interesting - can you share how you did that? I usually go crazy trying to figure out the software setups and I'm trying a pi this time around

Here is what I did from a fresh install of Raspbian Stretch.  Feel free to comment.

1) Start by enabling ssh. Open a terminal:

Code:
sudo systemctl enable ssh
sudo systemctl start ssh

Ideally you should change the password for the pi user using the passwd command.

From here you can now run the pi headless and do everything remotely via ssh

2) An optional step that can prevent the pi from locking up after a while.

Code:
sudo nano /boot/cmdline.txt

add slub_debug=FPUZ to the existing line, do not add a new line.

3) Build cgminer - follow the steps on page 1 of the 2pac thread:
https://bitcointalk.org/index.php?topic=1764803.0

Code:
sudo apt-get update
sudo apt-get upgrade -y

sudo apt-get install -y build-essential git libusb-1.0-0-dev libusb-1.0-0 libcurl4-openssl-dev libncurses5-dev libudev-dev screen libtool automake pkg-config libjansson-dev

mkdir -p git/vthoang; cd git/vthoang
git clone https://github.com/vthoang/cgminer.git
cd cgminer

CFLAGS="-O2" ./autogen.sh --enable-gekko
make -j 2

Copy cgminer to /home/pi/cgminer (the location is up to you, you just need to adjust the path below if you change it)

Create /home/pi/cgminer.conf with your pool information and custom settings, here is an example:

Code:
{
"pools" : [
   {
      "url" : "stratum+tcp://pool.ckpool.org:3333",
      "user" : "1BURGERAXHH6Yi6LRybRJK7ybEm5m5HwTr",
      "pass" : "x"
   }
],

"gekko-terminus-freq" : "150",
"gekko-start-freq" : "100",
"gekko-step-freq" : "25",
"gekko-step-delay" : "15"
}

4) Setup a screen session to run at startup:

Create this file: /lib/systemd/system/cgminer.service
Code:
[Unit]
Description=cgminer
After=network.target

[Service]
Type=forking
User=pi

#Start:
# screen -dm creates detached session that forks.
#  use this with Type=forking
ExecStart=/usr/bin/screen -dmS cgminer /home/pi/cgminer --config /home/pi/cgminer.conf

#Stop:
# tell cgminer to quit (not screen), and screen will exit
ExecStop=/usr/bin/screen -S cgminer -X stuff 'q'

# or tell screen to quit and clobber cgminer - not best choice
#ExecStop=/usr/bin/screen -S cgminer -X quit
#Probably need a kill definition in case the miner is hung

#Reload:
# sending the string 'scy' (settings, restart, yes) to cgminer will
#  cause a restart which will re-read config file if using one
ExecReload=/usr/bin/screen -S cgminer -X stuff 'scy'

[Install]
WantedBy=multi-user.target

Then run:
Code:
sudo systemctl daemon-reload
sudo systemctl enable cgminer.service
sudo systemctl start cgminer.service

The screen setup  was a modification of instructions from https://techsparx.com/cryptocurrency/mining/setup-usb-miner-cgminer.html

If you want to check on things, you can ssh into the pi and type:
screen -r cgminer

This will reconnect you to the session running cgminer.

To disconnect and leave the screen session running, just type ‘ctrl-a d’ or ‘ctrl-a ctrl-d’

This is great!
If you want run not as root also set up USB access
Code:
sudo cp ~/git/vthoang/cgminer/01-cgminer.rules /etc/udev/rules.d/

sudo usermod -G plugdev -a pi
If your distribution does not have the plugdev group you can create it with:
Code:
groupadd plugdev

And to connect with older hubs add
to /boot/cmdline.txt and reboot

Code:
dwc_otg.lpm_enable=0 dwc_otg.speed=1 dwc_otg.fiq_enable=1 dwc_otg.fiq_fsm_enable=1 dwc_otg.fiq_fsm_mask=0x3
Spill
Jr. Member
*
Offline Offline

Activity: 94
Merit: 5


View Profile
February 25, 2018, 03:00:45 AM
 #597

My only annoyance is being involved in this thread for what seems like a very long time, yet missing a few weeks when the Laura email was mentioned and being at the back of the list. I understand there's not much to be done, but still frustrating! Looking forward to being able to place my order.

Don't feel so bad I sent my email to laura on the 5th of feb and i still have no response either, and i'm in the USA.
sidehack (OP)
Legendary
*
Offline Offline

Activity: 3318
Merit: 1848

Curmudgeonly hardware guy


View Profile
February 25, 2018, 03:09:06 AM
 #598

No response at all, or no response about placing an order? Because if there's no response at all, she probably didn't get your message.

Cool, quiet and up to 1TH pod miner, on sale now!
Currently in development - 200+GH USB stick; 6TH volt-adjustable S1/3/5 upgrade kit
Server PSU interface boards and cables. USB and small-scale miners. Hardware hosting, advice and odd-jobs. Supporting the home miner community since 2013 - http://www.gekkoscience.com
sruyle
Newbie
*
Offline Offline

Activity: 65
Merit: 0


View Profile
February 25, 2018, 03:05:15 PM
 #599

No response at all, or no response about placing an order? Because if there's no response at all, she probably didn't get your message.

I did hear back from her at the beginning of Feb saying I was on the list and she would let me know when they were available. So I expect I just wasnt quick enough to be at the top of the list.
Spill
Jr. Member
*
Offline Offline

Activity: 94
Merit: 5


View Profile
February 25, 2018, 05:16:33 PM
 #600

No response at all, or no response about placing an order? Because if there's no response at all, she probably didn't get your message.

Oh boy,   No response at all,  I did write I wanted 1,  resending email,  Guess my plan about not being annoying is going to go
out the window.  Grin
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 [30] 31 32 33 34 35 36 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!