Bitcoin Forum
June 10, 2024, 12:06:41 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 16 17 18 19 20 »
241  Bitcoin / Hardware / Re: ANN: BITMAIN has Tested Its 28nm Bitcoin Mining Chip BM1382 on: August 01, 2014, 01:00:07 PM

5v at these amperage will not cause shock. You could lay your finger over the entire set of pins without a single problem.

hey bobsag3.
do you have s3 batch3 on hand? i was ordered "Bitmain Antminer S3 *Available July 26th* - 3 Month Colocation / 470Gh/Sec" . but now there is nothing

We do Wink

Excellent Smiley
242  Bitcoin / Hardware / Re: Corsair RM1000 powering 2 Antminers S3 on: August 01, 2014, 12:47:55 PM
ok, yes, it is 20+4
I have put the paperclip in,now what ? where do i put the cable to start the PSU ?
Sorry for these extremely noob questions, never used a PSU before.
Setting up using 8pin hole from the psu with the 8pin pciexpress cable . The cable with one end of 8pin and the other end is 6pin pice.
243  Bitcoin / Hardware / Re: Corsair RM1000 powering 2 Antminers S3 on: August 01, 2014, 12:40:45 PM
I don't see a 24 PIN cable, the RM1000 only comes with 20 pins connector Huh
the first 4 pin is removable from either side look carefully



Just follow photo  from https://bitcointalk.org/index.php?topic=344970.0 the pin lock facing you and count from the right side
244  Bitcoin / Hardware / Re: Corsair RM1000 powering 2 Antminers S3 on: August 01, 2014, 12:31:55 PM
https://bitcointalk.org/index.php?topic=344970.0
Setting Up the PSU (ATX Computer Power Supply)

Setting up using 8pin hole from the psu with the 8pin pciexpress cable . The cable with one end of 8pin and the other end is 6pin pice.  Get it?
245  Bitcoin / Hardware / Re: ANTMINER S3 Discussion and Support Thread. on: July 27, 2014, 07:59:03 AM
Yeah but having your miner queue work from 5minutes ago and gain nothing is also a waste.
Properly setting up a queue/scan-time/expiry can decrease the load of your unit and increase efficiency of the work done.
Proper settings isn't the dark age, it's just something that never is done right Tongue There is a reason these options are here for us to optimize with the specific hardware we use! Smiley
I wrote the software, I know what I'm talking about. You're barking up the wrong tree with scan time and expiry.

I'm not barking up any tree
You wrote a software and we use the optimal settings for the different hardware and pools we use. Correct?

queue of 4096 is not helping the S3 while a lower queue is, so I'm sorry if you misunderstood my post.

Should we just go put 99999 on all the settings and expect them to function the same? Tongue

Bitmain can you ran more test on these?
246  Bitcoin / Hardware / Re: ANTMINER S3 Discussion and Support Thread. on: July 26, 2014, 10:40:21 PM
Quote
VIM Editor Commands

Vim is an editor to create or edit a text file.

There are two modes in vim. One is the command mode and another is the insert mode.

In the command mode, user can move around the file, delete text, etc.

In the insert mode, user can insert text.

Changing mode from one to another

From command mode to insert mode   type a/A/i/I/o/O ( see details below)

From insert mode to command mode   type Esc (escape key)

Some useful commands for VIM

Text Entry Commands (Used to start text entry)

a Append text following current cursor position

A Append text to the end of current line

i Insert text before the current cursor position

I Insert text at the beginning of the cursor line

o Open up a new line following the current line and add text there

O Open up a new line in front of the current line and add text there

The following commands are used only in the commands mode.

Cursor Movement Commands

h Moves the cursor one character to the left

l Moves the cursor one character to the right

k Moves the cursor up one line

j Moves the cursor down one line

nG or :n Cursor goes to the specified (n) line

(ex. 10G goes to line 10)

^F (CTRl F) Forward screenful

^B Backward screenful

^f One page forward

^b One page backward

^U Up half screenful

^D Down half screenful

$ Move cursor to the end of current line

0 (zero) Move cursor to the beginning of current line

w Forward one word

b Backward one word

Exit Commands

:wq Write file to disk and quit the editor

:q! Quit (no warning)

:q Quit (a warning is printed if a modified file has not been saved)

ZZ Save workspace and quit the editor (same as :wq)

: 10,25 w temp

write lines 10 through 25 into file named temp. Of course, other line

numbers can be used. (Use :f to find out the line numbers you want.

 

Text Deletion Commands

x Delete character

dw Delete word from cursor on

db Delete word backward

dd Delete line

d$ Delete to end of line

d^ (d caret, not CTRL d) Delete to beginning of line

Yank (has most of the options of delete)-- VI's copy commmand

yy yank current line

y$ yank to end of current line from cursor

yw yank from cursor to end of current word

5yy yank, for example, 5 lines

Paste (used after delete or yank to recover lines.)

p paste below cursor

P paste above cursor

"2p paste from buffer 2 (there are 9)

u Undo last change

U Restore line

J Join next line down to the end of the current line

File Manipulation Commands

:w Write workspace to original file

:w file Write workspace to named file

:e file Start editing a new file

:r file Read contents of a file to the workspace

To create a page break, while in the insert mode, press the CTRL key

And l. ^L will appear in your text and will cause the printer to start

A new page.

 

 

Other Useful Commands

Most commands can be repeated n times by typing a number, n, before

the command. For example 10dd means delete 10 lines.

. Repeat last command

cw Change current word to a new word

r Replace one character at the cursor position

R Begin overstrike or replace mode – use ESC key to exit

:/ pattern Search forward for the pattern

:? pattern Search backward for the pattern

n (used after either of the 2 search commands above to

continue to find next occurrence of the pattern.

:g/pat1/s//pat2/g replace every occurrence of pattern1 (pat1) with

pat2

Example :g/tIO/s//Ada.Text_IO/g

This will find and replace tIO by Ada.text_IO everywhere in the file.

:g/a/s// /g replace the letter a, by blank

:g/a/s///g replace a by nothing

note: Even this command be undone by u

 

Examples

Opening a New File

Step 1   type   vim filename   (create a file named filename)

Step 2   type   i   ( switch to insert mode)

Step 3   enter text   (enter your Ada program)

Step 4   hit   Esc key   (switch back to command mode)

Step 5   type   :wq   (write file and exit vim)

 

Editing the Existing File

Step 1   type   vim filename   (edit the existing file named filename)

Step 2   move around the file using h/j/k/l key or any appropriate command

h Moves the cursor one character to the left

l Moves the cursor one character to the right

k Moves the cursor up one line

j Moves the cursor down one line

nG or :n Cursor goes to the specified (n) line

(ex. 10G goes to line 10)

Step 3   edit required text (replace or delete or insert)

Step 4   hit Esc key (exit from insert mode if you insert or replace text)

Step 5   type   :wq
Courtesy/Source : http://www.radford.edu/~mhtay/CPSC120/VIM_Editor_Commands.htm

Thanks for sharing  Grin
247  Bitcoin / Hardware / Re: ANTMINER S3 Discussion and Support Thread. on: July 26, 2014, 09:47:43 PM
Can u put the screenshot?
248  Bitcoin / Hardware / Re: ANTMINER S3 Discussion and Support Thread. on: July 26, 2014, 09:41:03 PM
I was able to get the discarded amount lowered as well as the load. I changed the queue to 0 from 4096 and added --scan-time 1 --expiry 1 to the cgminer file.

***IF YOU ARE NOT SURE WHAT THIS MEANS DO NOT TRY AS YOU WILL BRICK YOUR UNIT***

This is the first attempt, not sure if 0 is the optimal queue value for all pools but if you are a P2P miner you may want to try this out. I use a smaller pool and my numbers have gone up. This is along the same tune you could do for an S1 but a far cry from what we did in the GPU days. I have another unit running at a lower speed but have the same results.
  
SSH in then:
Code:
vim /etc/init.d/cgminer
--scan-time 1 --expiry 1

Find line 75 PARAMS...at the end change --queue 0 and add --scan-time 1 --expiry 1 before the quotation.

***DO NOT TRY THIS UNLESS YOU FULLY UNDERSTAND AS YOU WILL BRICK YOUR UNIT****

Before Config Change (I added a line so it is easy to see, I took it out when I finished)


After Config Change


Ant Before


Ant After CHECK THE LOAD VALUES

What's the code to close the editing for ssh? I use windown and putty
And lowering the discarded will benefit what?
:wq
If I understood you correctly.
Oh it's the same like sshing the s1
Thanks I will give it a try.  I am sure many people of your s3 has a huge big pie of discarded work or shares
249  Bitcoin / Hardware / Re: ANTMINER S3 Discussion and Support Thread. on: July 26, 2014, 09:32:01 PM
Dear Bitmain CEO is there something wrong with huge discarded shares ? Can you work something out for a new firmware to address this problem?
250  Bitcoin / Hardware / Re: ANTMINER S3 Discussion and Support Thread. on: July 26, 2014, 09:26:59 PM
I was able to get the discarded amount lowered as well as the load. I changed the queue to 0 from 4096 and added --scan-time 1 --expiry 1 to the cgminer file.

***IF YOU ARE NOT SURE WHAT THIS MEANS DO NOT TRY AS YOU WILL BRICK YOUR UNIT***

This is the first attempt, not sure if 0 is the optimal queue value for all pools but if you are a P2P miner you may want to try this out. I use a smaller pool and my numbers have gone up. This is along the same tune you could do for an S1 but a far cry from what we did in the GPU days. I have another unit running at a lower speed but have the same results.
 
SSH in then:
Code:
vim /etc/init.d/cgminer
--scan-time 1 --expiry 1

Find line 75 PARAMS...at the end change --queue 0 and add --scan-time 1 --expiry 1 before the quotation.

***DO NOT TRY THIS UNLESS YOU FULLY UNDERSTAND AS YOU WILL BRICK YOUR UNIT****

Before Config Change (I added a line so it is easy to see, I took it out when I finished)



After Config Change



Ant Before



Ant After CHECK THE LOAD VALUES


What's the code to close the editing for ssh? I use windown and putty
And lowering the discarded will benefit what?
251  Bitcoin / Hardware / Re: Announcement: Bitmain launches AntMiner solution, 0.68 J/GH on chip on: July 26, 2014, 09:06:47 PM
can i mining alt coin with s3 b5 ?
alt coin with sha256  only not ltc
252  Bitcoin / Hardware / Re: Next Batch S3 on: July 23, 2014, 06:14:19 AM
There will be a batch 4 and at some point an S4.

Batch 4 is needed to use the coupons from the first batches  Cool

You work for bitmain?  Grin
253  Bitcoin / Hardware / Re: Next Batch S3 on: July 23, 2014, 06:04:59 AM
Hopefully they are coming out S4 instead..

why?

do you think it will be better then 3 s-3's and an evga 1300 psu?   that would be 1300-1450 gh  at 980-1100 watts.


I do not see the s-4 being too good. but what do I know?

To be honest  using 1000w to mine 1000gh or 1100w to mine 1100 is just pure stupid, wasting elecricity.
If s4 is willing  use 750w with the hashrate of 1100, it will be cheaper hit on target. More chips on the board require less overclocking , less heat and less votage.  S3 is my first choice follow by btc garden
254  Bitcoin / Hardware / Re: [Guide] Dogie's Comprehensive Bitmain Antminer S3 Setup [HD] on: July 21, 2014, 12:43:43 AM
Nice photo u put the s3 inside a mini soft box? I believe Grin. Btw I am going to buy some double side tape to cover that beeping hole. LoL
255  Bitcoin / Hardware / Re: ANTMINER S3 Discussion and Support Thread. on: July 21, 2014, 12:37:53 AM
I use rm650 gold with one s3  I find that the hw is very low but  Hw is getting high abit when sharing a pus 750 on 2 s3 at default speed
256  Other / Off-topic / Re: Call Of Duty: Ghosts Vs Battlefield 4 on: July 21, 2014, 12:30:40 AM
I like battlefield 2 commander. And BF 4 .   I played both games.
257  Bitcoin / Mining / Re: btc guild unlucky of late? on: July 21, 2014, 12:00:40 AM
What happen to btc guild luck? How many of you are affected?
258  Bitcoin / Pools / Re: NastyPool - 0% Fee Mining With Bonus Lottery Coming Soon! (earn tickets now) on: July 20, 2014, 11:55:02 PM
How many user are mining or block found or any total hashing amount? Links?
259  Alternate cryptocurrencies / Pools (Altcoins) / Re: 「魚池」Discus Fish - BTC: 23500 TH - LTC: 225 GH - 4% PPS 🐟 on: July 20, 2014, 11:48:10 PM
There is a Sign up problem! 
260  Bitcoin / Hardware / Re: ANN: BITMAIN has Tested Its 28nm Bitcoin Mining Chip BM1382 on: July 17, 2014, 02:19:36 AM
Are they any b1 customer that has not shipped yet? Example no notice through email yet? Today date is 17/7


batch #1 no shipping information on UPS yet.  Hopefully tomorrow.


DoubleDD
same boat brother  Grin
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 16 17 18 19 20 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!