mining custom_top_html:no
default debug random = 1 / type = READ / detected = READ
질문
2018-03-09 15:41:34

bbs코인 채굴 시도 중입니다 ㅠㅠ

안녕하세요,

집에서 소소하게 채굴공부하고 있는 채린이 입니다.

작년에 맞춘 데스크탑을 놀리느니 채굴돌려보자면서 하고 있는데요, (1060ti, i5-7600)

소량이지만 조금씩 나오던 이더가 채굴에러나면서 더 이상 안캐지면서 신규코인을 채굴해 보려는 중입니다.

어찌어찌 매뉴얼대로 해보는데 잘 안되서 도움 부탁드립니다 ㅠㅠ

 

땡글에 올려주신 글들 보고 BBS 사이트도 가보고 다운도 받았는데요.

 

http://pool.bbscoin.xyz/#network

bbs1.jpg

 

이 사이트를 보니 채굴풀 변화가 많이 생긴 것 같았습니다.

마지막 줄에 수수료 0인 곳이 있어서 가 봤습니다.

 

http://cryptoknight.cc/bbs/#getting_started

bbs2.jpg

 

여기로 이어졌는데, 

암드가 아니라 N당이라 마이닝 앱은 첫번째 깃헙에 가서 다운 받았고요.

 

 

월렛을 2.0.2버전으로 다운 받고 채굴시작 해봤는데 어디를 어떻게 해야할 지 모르겠습니다.ㅠㅠ

풀 주소는 저렇게 숫자로만 제공됐는데 채굴프로그램은 주소 형식이 그게 아니라고 하는 거 같고...

config.txt에는 이렇게 뜹니다

 

 

/*

 * 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".

 * use_nicehash    - Limit the nonce to 3 bytes as required by nicehash.

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

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

 * pool_weight     - Pool weight is a number telling the miner how important the pool is. Miner will mine mostly at the pool 

 *                   with the highest weight, unless the pool fails. Weight must be an integer larger than 0.

 *

 * We feature pools up to 1MH/s. For a more complete list see M5M400's pool list at www.moneropools.com

 */

"pool_list" :

[

{"pool_address" : "78.46.85.142", "wallet_address" : "fyTNpATEoTRBW8E3ZYP3nkDYV2PYgSS1XX5Tpd9CuG7v892SvrYrY59TcmXzdNHPDp8SuR8HFcS7QAw64SwCEvsJ3BDN2ecBJ", "pool_password" : "", "use_nicehash" : false, "use_tls" : false, "tls_fingerprint" : "", "pool_weight" : 1 },

],

 

/*

 * currency to mine

 * allowed values: 'monero' or 'aeon'

 */

"currency" : "monero",

 

/*

 * 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" : 30,

"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

 *

 * print_motd    - Display messages from your pool operator in the hashrate result.

 */

"verbose_level" : 3,

"print_motd" : true,

 

/*

 * 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,

 

/*

 * Manual hardware AES override

 *

 * Some VMs don't report AES capability correctly. You can set this value to true to enforce hardware AES or

 * to false to force disable AES or null to let the miner decide if AES is used.

 *

 * WARNING: setting this to true on a CPU that doesn't support hardware AES will crash the miner.

 */

"aes_override" : null,

 

/*

 * LARGE PAGE SUPPORT

 * Large pages need a properly set up OS. It can be difficult if you are not used to systems administration,

 * but the performance results are worth the trouble - you will get around 20% boost. Slow memory mode is

 * meant as a backup, you won't get stellar results there. If you are running into trouble, especially

 * on Windows, please read the common issues in the README.

 *

 * By default we will try to allocate large pages. This means you need to "Run As Administrator" on Windows.

 * You need to edit your system's group policies to enable locking large pages. Here are the steps from MSDN

 *

 * 1. On the Start menu, click Run. In the Open box, type gpedit.msc.

 * 2. On the Local Group Policy Editor console, expand Computer Configuration, and then expand Windows Settings.

 * 3. Expand Security Settings, and then expand Local Policies.

 * 4. Select the User Rights Assignment folder.

 * 5. The policies will be displayed in the details pane.

 * 6. In the pane, double-click Lock pages in memory.

 * 7. In the Local Security Setting – Lock pages in memory dialog box, click Add User or Group.

 * 8. In the Select Users, Service Accounts, or Groups dialog box, add an account that you will run the miner on

 * 9. Reboot for change to take effect.

 *

 * Windows also tends to fragment memory a lot. If you are running on a system with 4-8GB of RAM you might need

 * to switch off all the auto-start applications and reboot to have a large enough chunk of contiguous memory.

 *

 * On Linux you will need to configure large page support "sudo sysctl -w vm.nr_hugepages=128" and increase your

 * ulimit -l. To do do this you need to add following lines to /etc/security/limits.conf - "* soft memlock 262144"

 * and "* hard memlock 262144". You can also do it Windows-style and simply run-as-root, but this is NOT

 * recommended for security reasons.

 *

 * Memory locking means that the kernel can't swap out the page to disk - something that is unlikely to happen on a

 * command line system that isn't starved of memory. I haven't observed any difference on a CLI Linux system between

 * locked and unlocked memory. If that is your setup see option "no_mlck".

 */

 

/*

 * use_slow_memory defines our behaviour with regards to large pages. There are three possible options here:

 * always  - Don't even try to use large pages. Always use slow memory.

 * warn    - We will try to use large pages, but fall back to slow memory if that fails.

 * no_mlck - This option is only relevant on Linux, where we can use large pages without locking memory.

 *           It will never use slow memory, but it won't attempt to mlock

 * never   - If we fail to allocate large pages we will print an error and exit.

 */

"use_slow_memory" : "warn",

 

/*

 * 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.

 *

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

 */

"tls_secure_algo" : true,

 

/*

 * Daemon mode

 *

 * If you are running the process in the background and you don't need the keyboard reports, set this to true.

 * This should solve the hashrate problems on some emulated terminals.

 */

"daemon_mode" : false,

 

/*

 * Buffered output control.

 * When running the miner through a pipe, standard output is buffered. This means that the pipe won't read

 * each output line immediately. This can cause delays when running in background.

 * Set this option to true to flush stdout after each line, so it can be read immediately.

 */

"flush_stdout" : false,

 

/*

 * 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,

 

/*

 * HTTP Authentication

 *

 * This allows you to set a password to keep people on the Internet from snooping on your hashrate.

 * Keep in mind that this is based on HTTP Digest, which is based on MD5. To a determined attacker

 * who is able to read your traffic it is as easy to break a bog door latch.

 *

 * http_login - Login. Empty login disables authentication.

 * http_pass  - Password.

 */ 

"http_login" : "",

"http_pass" : "",

 

/*

 * 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,

 

 

 

 

 

 

 

 

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

꼬리말

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

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

 

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

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

2
댓글 4
default debug random = 0 / type = READ / detected = READ

채굴

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

List of Articles
번호 분류 제목 추천 수 조회 수 글쓴이 날짜
공지 채굴 새로 들어오시는분들! - 땡글 이용시 지켜지면 좋은 것 91 311 77837
김광부
2017.06.25
59657 채굴 주연테크 5700 6way 완본체 예약판매 - 링크포함     https://www.jooyonshop.co.kr/goods/goods_view.php?goodsNo=1000000034   이제는 완본체를 파는군요??   대단하네요           12 0 858
아픈채린이
2021.04.15
59656 채굴 3070 6way 파워 어디서 사야하는거죠 ㅠㅠ 사무실에 사용중인 채굴기 파워가 소음이 너무 심해서 파워만 바꿀까 하는데 1600w짜리 파워는 전멸이네요 중고장터조차 구할수가 없어요...   혹시 어디서 사야하는지 아시는분 좀 부탁드립니다!                     13 0 600
장박
2021.04.15
59655 채굴 채굴하면서 이것도 몰랐다고 하지 마시고 혹시 마이너 대신에 지갑 수소를 넣어도   문제 없는 건가요? 채굴기 판매 전에  구매자 분에게 지갑 주소를 입력해서  채굴하는 것을 보여 줄려고 하는데요.  아이디 대신에 지갑 주소 넣어도 문제 없는거죠.                            4 file 0 737
자전거나라
2021.04.15
59654 채굴 그래픽카드 공급난에 대한 NVIDIA CFO의 공식발표     원본글 링크 : https://www.techradar.com/news/even-nvidia-doesnt-think-youll-get-an-rtx-3080-this-year   Graphics cards have been increasingly hard to find recently, with coveted new releases like N... 5 0 1069
아픈채린이
2021.04.15
59653 채굴 현 채굴시장에 대한 고찰? 안녕하세용,,,,,오늘 드뎌 베를린 하드포크가 있네용. 몇 달전에 아직은 좀 멀었어 했는데 벌써 오늘이라니! 런던포크도 이 처럼 금방 오겠죠? 어찌됫던 이미 알려진 악재?에도 카드 가격은 고공행진에 반본체 및 구... 11 0 980
준빈로빈
2021.04.15
59652 질문 이제 채굴량 줄어드는 뉴스 맞죠?     http://www.coindeskkorea.com/news/articleView.html?idxno=73371   이더스캔상에서 베를린 하드포크 예정 시간은 한국시간으로 4월15일 오후 6시17분경이다. 이더리움2.0을 앞두고 대형 업데이트로 손꼽히는 런... 5 0 1294
복날아기곰
2021.04.15
59651 채굴 이더리움 채굴       이더리움 오늘 하드포크라 거래소들 입출금들을 막더라구요 그럼 채굴도 하드포크 끝날때까지 채굴량이 없어지나요?                 2 0 624
채린이질문하자
2021.04.15
59650 채굴 다들 해쉬당 채굴량 얼마나 되시나요?   전 이더마인을 쓰고 있습니다.   이전에 360mh/s 돌릴때 3월 중순에 하루 0.02 이더리움 채굴이 되어서 많이 캐진다고 좋아했는데...   지금 470mh/s로 증설하고도 그때랑 이더 채굴량이 똑같네요.   지난 주엔 하... 9 0 961
mko11222
2021.04.15
59649 채굴 업비트 공지 - ETH 계열 입출금 일시 중지 ( 4월 15일 15:00 예정 )         업비트   eth 계열  입출금이  일시 중지됩니다     베를린 업그레이드에 대한 입출금  중단 입니다.   [입출금 지원 중단 시점] 2021-04-15 15:00 ~ ETH 베를린 업그레이드 이후 네트워크 안정성 확인 후 본... 9 file 1 1099
Wnslslsl
2021.04.15
59648 채굴 dag 사이즈 변경시 마이너 재시작 원인을 찾은듯......    일명 dag 사이즈 변경시 마이너 재시작후 오버로 인한 인코렉트가 생기는 현상......    이상하게 극히 일부의 채굴기는 마이너 재시작 없이 편안하게 채굴을 이어 가더군요.     몇주 전부터 일부의 채굴기에 pc ... 24 6 2078
깨달음
2021.04.15
59647 질문 산업용 선풍기 쓰시는분 추천 좀 부탁 드립니다 지금 인터넷에서 찾아본거 2가지 제품인데 한일 ef-3020이랑 한일 ef-2418sm입니다 가격은 만원정도 차이나고 소모전력이 20w차이네요 3020이 240w 2418sm이 220w as생각해서 한일꺼로 고른거라 혹시 다른데꺼 쓰시거... 3 0 469
민트스카이
2021.04.15
59646 채굴 윈도우10 라이센스 관련 질문 윈도우10 테스트로 한대 해보려니까 활성키가 필요한데요.  시리얼을 입력하지 않고도 다른 기능은 제약되겠지만 채굴 자체는 되는거 같습니다. 혹시 이렇게 써도 되는지요? 만약 일정 시간 지나고 제약이 더 많아지... 2 1 374
스타클
2021.04.15
59645 채굴 삭제한 글입니다 삭제한 글입니다 0 70
우럭아왜우렄
2021.04.15
59644 채굴 etn 출금 언제되나요?     4월초안에 비트로 환전해주신다더니  중순입니다.. etn값은 떨어졌고 비트는 올랐는데...ㅠ                   2 0 275
개밥먹던스님
2021.04.15
59643 트러블 도와주세요. FATAL ERROR : Debugger detected       중고로 1080을 구입했는데, Phoenix Miner 5.3b에서 FATAL ERROR : Debugger detected 메세지가 나오고 안되는데   CPU로 채굴하면 잘 되는데, 속고가 너무 느려서, 중고로 1080을 샀더니 처음부터 안되네요.  ... 4 file 0 1452
서하
2021.04.15
59642 채굴 이거 혹시 어떻게 구해야될지ㅠ       밀폐형 반본체 쿨러연결되는 젠더인데 아무리찾아봐도 모르겠어서요 ㅠ 이거혹시 몰루검색해야될가영?ㅠ                 14 file 0 490
찰리뽀스
2021.04.15
59641 질문 노트북으로 채굴 연습을 하려는데 피닉스 마이너가 자꾸 바로 종료되네요 ㅠ 2021.04.14:23:41:30.245: main Phoenix Miner 5.5c Windows/msvc - Release build 2021.04.14:23:41:30.245: main Cmd line:  2021.04.14:23:41:30.269: main CUDA version: 11.0, CUDA runtime: 8.0 2021.04.14:23:... 4 0 947
판다곰
2021.04.14
59640 채굴 올해 하드포크 / 이더리움 2.0 / 내년 세금 등등에 대한 대비책은 어떻게 구상 중 이십니까? 선배님들.   안녕하세요.   시험기간에 공부 안하는 공대생입니다.   컴퓨터가 그냥 좋아 잘은 모르지만 검색하고 알아보고 하다보니 직접 조립도 해주고 셋팅도 해주고 이제는 채굴까지 넘보는 수준이네요.   제가 질문 드리고... 25 0 1290
어쩌다가
2021.04.14
59639 채굴 3080 백플레이트 방열판 후기   3080 블랙에디션 입니다. 메모리 온도가 100도 이하라 상관은 없지만 여름대비해서 알리에서 방열판 구매하였습니다.   장착전 88도 방열판 장착후 쿨러 딱 붙여주니 온도가   장착후 84도 >> 오늘날씨 82도까지 떨... 5 file 1 2989
꿀단지
2021.04.14
59638 채굴 메인보드 PCIe x16배속 오류해결 공유   3060한대가 저렴하게 나왔길래 구매하였습니다.   씨퓨는 3900T 보드는 asus h270-plus    어차피 슬롯이 남아서 나머지는 1배속에 돌리고 x16 두슬롯이 있어서 다이렉트로 꽂았는데 첫번째16배속 슬롯 2배속으로 ... 2 2 747
꿀단지
2021.04.14
목록
Board Pagination Prev 1 ... 784 785 786 787 788 789 790 791 792 793 ... 3771 Next
/ 3771
default debug random = 0 / type = READ / detected = READ