mining custom_top_html:no
default debug random = 2 / type = READ / detected = READ

xmr-stak-nvidia 최신버젼 사용했습니다.

 

에러가 나면서 창이 닫혀 버려요..

 

랩이 4기가 인데 그래서 그런가요?

 

가상 메모리는 76000 까지 늘렸어요..

 

 

캡처.PNG

 

 

 

 

"gpu_threads_conf" : [

  { "index" : 0,

    "threads" : 32, "blocks" : 15,

    "bfactor" : 6, "bsleep" :  25,

    "affine_to_cpu" : false,

  },

  { "index" : 1,

    "threads" : 32, "blocks" : 15,

    "bfactor" : 6, "bsleep" :  25,

    "affine_to_cpu" : false,

  },

  { "index" : 2,

    "threads" : 32, "blocks" : 15,

    "bfactor" : 6, "bsleep" :  25,

    "affine_to_cpu" : false,

  },

  { "index" : 3,

    "threads" : 32, "blocks" : 15,

    "bfactor" : 6, "bsleep" :  25,

    "affine_to_cpu" : false,

  },

  { "index" : 4,

    "threads" : 32, "blocks" : 15,

    "bfactor" : 6, "bsleep" :  25,

    "affine_to_cpu" : false,

  },

  { "index" : 5,

    "threads" : 32, "blocks" : 15,

    "bfactor" : 6, "bsleep" :  25,

    "affine_to_cpu" : false,

  },

],

/*

 * GPU configuration. You should play around with threads and blocks as the fastest settings will vary.

 * index         - GPU index number usually starts from 0.

 * threads       - Number of GPU threads (nothing to do with CPU threads).

 * blocks        - Number of GPU blocks (nothing to do with CPU threads).

 * bfactor       - Enables running the Cryptonight kernel in smaller pieces.

 *                 Increase if you want to reduce GPU lag. Recommended setting on GUI systems - 8

 * bsleep        - Insert a delay of X microseconds between kernel launches.

 *                 Increase if you want to reduce GPU lag. Recommended setting on GUI systems - 100

 * affine_to_cpu - This will affine the thread to a CPU. This can make a GPU miner play along nicer with a CPU miner.

 *

 * On the first run the miner will look at your system and suggest a basic configuration that will work,

 * you can try to tweak it from there to get the best performance.

 * 

 * A filled out configuration should look like this:

 * "gpu_threads_conf" : 

 * [

 *     { "index" : 0, "threads" : 17, "blocks" : 60, "bfactor" : 0, "bsleep" :  0, "affine_to_cpu" : false},

 * ],

 */

"gpu_threads_conf" : 

null,

 

/*

 * TLS Settings

 * If you need real security, make sure tls_secure_algo is enabled (otherwise MITM attack can downgrade encryption

 * to trivially breakable stuff like DES and MD5), and verify the server's fingerprint through a trusted channel. 

 *

 * use_tls         - This option will make us connect using Transport Layer Security.

 * tls_secure_algo - Use only secure algorithms. This will make us quit with an error if we can't negotiate a secure algo.

 * tls_fingerprint - Server's SHA256 fingerprint. If this string is non-empty then we will check the server's cert against it.

 */

"use_tls" : false,

"tls_secure_algo" : true,

"tls_fingerprint" : "",

 

/*

 * pool_address   - Pool address should be in the form "pool.supportxmr.com:3333". Only stratum pools are supported.

 * wallet_address - Your wallet, or pool login.

 * pool_password  - Can be empty in most cases or "x".

 */

"pool_address" : "asia.monero.miningpoolhub.com:20580", 

"wallet_address" : "아이디.마이너",

"pool_password" : "x",

 

/*

 * Network timeouts.

 * Because of the way this client is written it doesn't need to constantly talk (keep-alive) to the server to make 

 * sure it is there. We detect a buggy / overloaded server by the call timeout. The default values will be ok for 

 * nearly all cases. If they aren't the pool has most likely overload issues. Low call timeout values are preferable -

 * long timeouts mean that we waste hashes on potentially stale jobs. Connection report will tell you how long the

 * server usually takes to process our calls.

 *

 * call_timeout - How long should we wait for a response from the server before we assume it is dead and drop the connection.

 * retry_time - How long should we wait before another connection attempt.

 *                Both values are in seconds.

 * giveup_limit - Limit how many times we try to reconnect to the pool. Zero means no limit. Note that stak miners

 *                don't mine while the connection is lost, so your computer's power usage goes down to idle.

 */

"call_timeout" : 10,

"retry_time" : 10,

"giveup_limit" : 0,

 

/*

 * Output control.

 * Since most people are used to miners printing all the time, that's what we do by default too. This is suboptimal

 * really, since you cannot see errors under pages and pages of text and performance stats. Given that we have internal

 * performance monitors, there is very little reason to spew out pages of text instead of concise reports.

 * Press 'h' (hashrate), 'r' (results) or 'c' (connection) to print reports.

 *

 * verbose_level - 0 - Don't print anything. 

 *                 1 - Print intro, connection event, disconnect event

 *                 2 - All of level 1, and new job (block) event if the difficulty is different from the last job

 *                 3 - All of level 1, and new job (block) event in all cases, result submission event.

 *                 4 - All of level 3, and automatic hashrate report printing 

 */

"verbose_level" : 3,

 

/*

 * Automatic hashrate report

 *

 * h_print_time - How often, in seconds, should we print a hashrate report if verbose_level is set to 4.

 *                This option has no effect if verbose_level is not 4.

 */

"h_print_time" : 60,

 

/*

 * Output file

 *

 * output_file  - This option will log all output to a file.

 *

 */

"output_file" : "",

 

/*

 * Built-in web server

 * I like checking my hashrate on my phone. Don't you?

 * Keep in mind that you will need to set up port forwarding on your router if you want to access it from

 * outside of your home network. Ports lower than 1024 on Linux systems will require root.

 *

 * httpd_port - Port we should listen on. Default, 0, will switch off the server.

 */

"httpd_port" : 0,

 

/*

 * prefer_ipv4 - IPv6 preference. If the host is available on both IPv4 and IPv6 net, which one should be choose?

 *               This setting will only be needed in 2020's. No need to worry about it now.

 */

"prefer_ipv4" : true,

 

 

 

 

 

 

 

 

 

-------------------------------------

꼬리말

* 게시글 내용 삭제레벨 강등

* 질문은 각 주제별 게시판에.

 

비트코인 암호화화폐 커뮤니티 땡글~ 땡글~

-------------------------------------

4
댓글 8
  • ?
    config 파일의 내용을 올려주시면 진단이 빠를꺼 같습니다. 예상으로는 block 값이 문제일듯 한데요.
  • ?
    @요술소녀
    추가해서 올렸습니다... 한번 봐주세용
  • ?
    threads 를 16으로 낮춰보세요.
  • ?
    졸린데 복잡해서 어지럽네요. 자야되는데..

    "gpu_threads_conf" :
    [
    { "index" : 0, "threads" : 16, "blocks" : 15, "bfactor" : 6, "bsleep" : 25, "affine_to_cpu" : false},
    { "index" : 1, "threads" : 16, "blocks" : 15, "bfactor" : 6, "bsleep" : 25, "affine_to_cpu" : false},
    { "index" : 2, "threads" : 16, "blocks" : 15, "bfactor" : 6, "bsleep" : 25, "affine_to_cpu" : false},
    { "index" : 3, "threads" : 16, "blocks" : 15, "bfactor" : 6, "bsleep" : 25, "affine_to_cpu" : false},
    { "index" : 4, "threads" : 16, "blocks" : 15, "bfactor" : 6, "bsleep" : 25, "affine_to_cpu" : false},
    { "index" : 5, "threads" : 16, "blocks" : 15, "bfactor" : 6, "bsleep" : 25, "affine_to_cpu" : false},
    ],
    "use_tls" : false,
    "tls_secure_algo" : true,
    "tls_fingerprint" : "",
    "pool_address" : "asia.monero.miningpoolhub.com:20580",
    "wallet_address" : "aaaa.a",
    "pool_password" : "x",
    "call_timeout" : 10,
    "retry_time" : 10,
    "giveup_limit" : 0,
    "verbose_level" : 3,
    "h_print_time" : 60,
    "output_file" : "",
    "httpd_port" : 8001,
    "prefer_ipv4" : true,
  • ?
    @요술소녀
    오! 되네요 감사합니다. 밤늦게까지 도와주셔서!!
  • ?
    @몰라용
    축하드립니다 ㅎㅎ
  • ?
    가상메모리는 그렇게 많이 안줘도 되더라구요.. 76000 에서 앞에 7하나 지우셔도 될꺼예요.

    잘되면 그냥 쓰셔도 되구요.
  • ?
    @요술소녀
    네네 감사합니다. 잘몰라서 오래도록 검색해 봤는데 잘 안나오더라구요.. 거듭 감사합니다.
default debug random = 0 / type = READ / detected = READ

채굴

코인 채굴에 관한 게시판입니다.

List of Articles
번호 분류 제목 추천 수 조회 수 글쓴이 날짜
공지 채굴 새로 들어오시는분들! - 땡글 이용시 지켜지면 좋은 것 91 311 77832
김광부
2017.06.25
25593 리눅스 RX 480으로 모네로 채굴하려 합니다. 혹시 모네로 해쉬량은 얼마나 나올까요?         사파이어 라데온 RX 480 OC 8GB로 모네로 코인 채굴하려 합니다. 혹시 해쉬량이 얼마나 나올까요   환경은 다음과 같이 하려 합니다. OS : Xubuntu 16.04 Tool : CCMiner 2.2.3                 ------------... 2 0 1122
kkamikoon
2017.12.17
25592 채굴 마이닝풀허브 해시 속도.. 이더 채굴할때    클레이모어를 통해 채굴중입니다.   cmd창에는 다음과 같이 표기되는데. ETH: GPU0 20.248 Mh/s   마이닝풀허브 해시 속도는 4.78MH/s 로 표기됩니다.   정산적인 표기인가요?                 ----... 7 0 5084
목돈마련
2017.12.17
25591 채굴 verge 코인 채굴 문의 드립니다 마이닝풀허브에서 verge채굴을 하고싶은데요 어떤 마이너를 써서 채굴을 하나요? 채굴방법좀 알려주세요.. 아무리 찾아봐도 못찾겠어서 글씁니다.. 0 816
형의귀환
2017.12.17
25590 채굴 배치파일 오류 도움 요청드립니다(내용수정)         처음시작시에는 아래와같은 오류메시지가 뜹니다. 에러내용은 대강 이해가 가는데 -allpools 1  은 입력되어있는상태이고 어떻게해야할지 모르겠습니다.         이더만 캐보는중입니다. 클레이모어 사용중입... 9 file 0 1074
중앙지검
2017.12.17
25589 채굴 그래픽카드 팬 mhz 문의 1. 그래픽카드 팬의 mhz 이요, 코어전압 또는 램전압 같이 팬전압 인가요? 이 수치가 높으면 전기세도 올라갈까요?   2. 그래핀카드 팬의 속도가 3200rpm 이면, 몇 정도 팬 mhz 정도 주면 될까요?     0 446
페이퍼스
2017.12.17
25588 채굴 IOTA 코인, Ripple코인 채굴 가능하나요?       IOTA코인, Ripple코인 채굴이 가능하나요?                 ------------------------------------- 꼬리말 * 게시글 내용 삭제시 레벨 강등 * 질문은 각 주제별 게시판에.   비트코인 암호화화폐 커뮤니티 땡... 4 0 2681
독수리발톱
2017.12.17
25587 채굴 cmd창이랑 애프터버너끌때 그냥닫으면안되나요       cmd창끄고 애프터버너재조정하려고하는데 그래픽카드계속돌고 렉이엄청걸리네요..설정좀바꾸고싶은데   그냥끄면안되는건가요?         ------------------------------------- 꼬리말 * 게시글 내용 삭제시 레... 5 0 655
중앙지검
2017.12.17
채굴 750ti 인데요 xmr-stak-nvidia 실행시 에러가 나네요.. out of memory.. xmr-stak-nvidia 최신버젼 사용했습니다.   에러가 나면서 창이 닫혀 버려요..   랩이 4기가 인데 그래서 그런가요?   가상 메모리는 76000 까지 늘렸어요..             "gpu_threads_conf" : [   { "index" : 0,   ... 8 file 1 2094
몰라용
2017.12.17
25585 채굴 제트캐쉬도 GPU를 엄청 갈구네요 1060-3G 삼성램 유저인데요 실제로 해보니   모네로 < 이더리움 <<< 제트캐쉬 순으로 장비가 시끄러워지네요    베란다에서 돌리는데, 겨울이라 난방겸으로 하는지라.. 제트캐쉬 한나절 돌렸다가 너무 시끄러워서 이... 8 0 1617
귀요미
2017.12.17
25584 채굴 Nvidia 12 way 윈도우10 인식 성공하신분들은 어떻게 하신건가요? 보드 asus 250m mining expert 인데 8웨이까진 인식 잘 되는데 9개 부터 화면 깨지고 넘어가는지 안가는지도 모르겟어서 기다리기도 힘드네요 P106? 이 아니라 10~~시리즈로는 윈도우 10 64 프로에서 12웨이 못하는건... 2 0 1637
연어초밥
2017.12.17
25583 채굴 이더 장투vs채굴 계산해 보았습니다. 땡글에도 자주 올라오는 질문중에 하나가   코인사서 장투가 나은지...채굴이 나은지... 이 질문이 계속 올라오고   저도 용돈벌이로 채굴기 3대를 운영하다 이번에 좀 확대를 해볼까   고민하다 어떤게 나은지 계산... 21 13 10341
rockwheel12
2017.12.17
25582 채굴 클레이모어로 시작하려고할때   채굴 처음인 초보입니다.   1. 채굴 실행시 배치파일을 수정해서 worker네임 등에 제꺼를 넣고 하면 된다고하는데 그럼 클레이모어 마이너를 다운받아서 거기에있는 배치파일에 수정을 하면 되는건가요? 아니면 마... 0 650
중앙지검
2017.12.17
25581 채굴 채굴기 안정화. 이엠텍 HV 1070ti   안녕하세요.   호기심에 이엠텍 HV 1070ti 를 두대 영입해서 셋팅해보았습니다.   밀폐형 케이스에 장착했구요.   asus 1080ti 2개, 사파이어 570 2개가 장착되어 있고,   밀폐형 케이스는 3000RPM 짜리 DC팬이 흡... 0 1411
Borams
2017.12.17
25580 채굴 기가바이트 h110 pcle 슬롯이 인식이안되요   현재 5개인식을 성공했는데 저 노란색구멍에 다른 모든 라이저카드 연결해봐도 인식이 안되는데   pcle 슬롯이 고장이 잘 나는편인가요..?   아니면 해결방법이있을까요?                       ------------------... 2 file 0 677
따라가기
2017.12.17
25579 채굴 1060 6GB 6way 채굴중인데 질문입니다...   1. gpu 3번놈만 온도가 70도 넘어버리려고하는데 온도를 낮추려면 팬속을 올리거나 메모리 오버 클럭을 낮춰야하나요..??   2. 다른넘들은 온도가 괜찮은편인데, 메모리 오버 클럭 더 높여도되나요?? 지금 현재 상... file 0 1367
초현
2017.12.17
25578 채굴 Claymore로 혼용 그래픽 카드 채굴시 배치 설정방법 nvidia 와 amd 그래픽 카드를 사용하고 싶은데    채굴설정을 nvidia만 설정만 해봐서.ㅠㅠ   한보드에 nvidia와 amd을 같이 사용해야되는데 (p106이 없어요)   그냥 배치 명령어 하나로 2가지의 그래픽 카드가 인식... 0 963
용돈벌이채굴
2017.12.17
25577 채굴 애프터버너 설정 질문드려요   애프터버너 설정값이 무슨 코인을 캐냐에 따라 다른거로알고있는데 글들 검색해봐도 설정값에 대한 글은 보이지가 않아서요. 지나가면서 보던 수치들은 있는데 차이가 크네요 같은 코인인데도. 정리된 글같은거 볼 ... 4 0 1019
중앙지검
2017.12.17
25576 채굴 Biostar TB250-BTC Pro 셋팅 문제   안녕하세요 RX460 12WAY를 준비 중입니다.. 게시판에서 눈으로 배울때는 금방이라도 할 것처럼 생각되었데요 아예 시작을 못하고 있습니다.   사양 CPU  G3930 RAM 4G HARD Seagate 500GB Power 1600W GPU   MSI rx... 12 file 0 3762
skhan
2017.12.17
25575 채굴 1060 6g입니다. 이정도면 괜찮은가요?   재미삼아    지캐쉬를 마이닝중입니다. ^^;   이정도면 보통인가요?     마이닝 프로그램은 dstm's ZCASH/Equihash Cuda Miner 사용중입니다.     그리고    1way이기에 전력소모도 아주 적은거 같아요.           ... 1 file 0 1266
목돈마련
2017.12.17
25574 채굴 베가 64 단종됬나요? 안녕하세요 베가64를 약 2달전 싸게 구입해서 채굴을 처음 시작했는데요, 처음에는 진짜 어려웠는데 안정화시켜놓으니 가격대비 1080ti보다 월등한것 같네요. 1080ti의 70프로가격에 구입했었습니다. 만족스러워서 베... 13 0 1442
미키아빠
2017.12.17
목록
Board Pagination Prev 1 ... 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 ... 3771 Next
/ 3771
default debug random = 0 / type = READ / detected = READ