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

 

모네로 채굴해보려 파일을 다운 받았습니다

 

config.txt 파일에서 설정을 해줘야 된다는데

 

어디에 아이디를 넣고 어디에 뭘 넣어야 될지 .. 1도 모르겠습니다 ..

 

그래픽카드는 1050 8way 2gb 입니다

 

이 어린양 같은 채린이 구제해주세요 


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

 

 

 

 

 

 

 

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

꼬리말

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

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

 

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

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

12

이더광님의 서명

안녕하세요 

댓글 5
default debug random = 0 / type = READ / detected = READ

채굴

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

List of Articles
번호 분류 제목 추천 수 조회 수 글쓴이 날짜
공지 채굴 새로 들어오시는분들! - 땡글 이용시 지켜지면 좋은 것 91 311 77832
김광부
2017.06.25
63173 채굴 이제 3080 구하기도 힘들어지는건지... 계속 주문취소 어텍을 받다가 겨우겨우 3080 3장 구했네요.   보드도 품절이고.. 심지어 쿨링팬도 가격이 오르고.. 케이스까지 품절이네요.   이더가 활황이긴 한가 봅니다 ^^; 6 0 499
동광28호
2021.07.07
63172 채굴 장치관리자해결되엇습니다     amd드라이버 자동인줄알앗는데 그게문제엿군요 요즘추가한게.인텔보드여서 문제없엇나봐요 감사합니다                    3 0 192
kmskms
2021.07.07
63171 질문 라이저카드 전원에 SATA 말고 PCIE 6핀 선으로 연결하라는 의미가 이게 맞나요? 밑에 라이저카드에 연결한 sata 선 녹은 거 보니 저도 좀 걱정되어서요 현재 6700xt 6way 한대가 있는데 pcie 선이 6개가 파워에서 나오고 하나가 6+2 핀 2개로 나뉘어져 있어서 그걸로 글카 6대 다 채워놓은 상태입... 8 0 1140
비트노자
2021.07.07
63170 채굴 엊그제 시작한 1660s 삼성램 드디어 34해시는 나오는데 메모리클럭을 겁나 높여야해서 겁나네요 ㅎㅎ          34해시까지는 찍어봤는데 10와트 더쓰고 메모리클럭 1500이상 줘야되네요 (새거라 그런가 클럭 아무리 높여도 튕기지 않는게 더 신기하기도 ㅎㅎㅎ)    걍 맘편히 1번처럼 1200주고 쓰는게 낫겠죠 ㅋㅋ?    ... 8 file 0 800
워스트
2021.07.07
63169 채굴 궁극의 써멀 그리스가 도착했습니다 움하하 드디어 알리에서 주문한 써멀패드 두께별로 다 도착하고 국내에서 주문한 곰써멀  extreme 을 받았습니다    지금은 피버타임이라 잘 돌고 있는 녀석들 멈추긴 그렇고 피버지나가면 싹 발라줘야겠습니다.   곰써멀 kr... 4 file 0 570
원준찬76
2021.07.07
63168 채굴 XFX 라데온7 홍콩 RMA 교품으로 도착   6800 merc로 교환해서 보내줬네요. 수리및 교품이 안될꺼다 그래서 조마조마 했는데 오긴 왔습니다. 탁송비는 제가 보낼때만 4.6만 들었고 받을땐 홍콩xfx에서 부담했네요. 사용흔적 있는 재생품인듯 하구요. 한달... 5 file 0 330
개밥먹는늑대
2021.07.07
63167 채굴 채굴보드 문의           안녕하세요 선배님들 asrock b450 스틸레전드 나 asrock b450m pro4 나 msi 450 gaming ac 이 보드가 3080 6way 구성할수 있을까요           6 0 767
dkfi852
2021.07.07
63166 질문 채린이 라이저카드 체결질문드려요   이렇게 해도 되나요? 큰일나나요?   동봉된 사타 케이블은 파워에다 연결해야되는건가요? 파워에서 나온 선에는   들어가는걸 못찾겠네요 ㅠㅠ                   7 file 0 221
신림불주먹
2021.07.07
63165 질문 채굴기 두대가 안켜지는데요 둘다 껐다 켜는 순간에 전원이 안들어옵니다. 파워 두개 들고가서 용산가서 테스트해봤는데, 또 여기선 잘 돌아가더라고요.   지금 인터넷랜선에는 불이 들어오는데, 이 다음에 뭐부터 테스트해야할지 난감하네요.  ... 11 0 284
파고ㄱ
2021.07.07
63164 채굴 3080 4웨이 애먹네요.. 마이너 재부팅..       안녕하세요 땡글에서 많이 배워가며 채굴하고있는 채린이입니다 다름이 아니고 3080 4웨이 세팅중에 자꾸 피닉스마이너가 재부팅 되서 문의글 올립니다 그래픽카드 이노 3d 제품이구여 x470 보드에 1600w 원파... 20 file 0 736
완전한채린이
2021.07.07
63163 채굴 장치관리자.인식좀 봐주세요         above 4g를 키려 csm을 건들면 부팅이안되고요 또 저렇게 csm을 설정하면 4g가꺼집니다 이것때문에 인식이안되는걸까요?? 그래픽카드를 잘못꼽앗나요?? 뭘건드려야할까요 이런적은 또 처음이라...ㅠ         ... 13 file 0 332
kmskms
2021.07.07
63162 채굴 rx580 8g his 삼성메모리 하이브 os채굴중인데 문의좀드립니다. 안녕하세요 기존에 쓰던 rx580을 채굴해보려고 하이브os로 셋팅을했습니다. 롬잡업까지하고 돌려보는데 가끔에러메시지가 나옵니다. 왜그럴까요? 하이브에서는 32.45해쉬로 정상적으로 나오는거같아요     에러메시지... 4 file 0 264
ounce
2021.07.07
63161 채굴 3080 6way 안녕하세요 선배님들 요즘 보드 cpu Ssd 파워 추천부탁드립니다.. 3월달에 맞춘 부품은 모두 품절이네요ㅜㅜ                 6 0 511
dkfi852
2021.07.07
63160 채굴 이거램 호환되는것맞나요??       tb250에서 뽑아낸건데 지금보드는 에즈락b450스틸레전드입니다 전원은 잘 켜지는데 화면이나오지않아요.. 그래픽카드를 꼽아야할까요?? cpu는.3500x입니다                   6 file 0 202
kmskms
2021.07.07
63159 채굴 세상은 아직 훈훈합니다   보드를 보낼줄맘에 중고나라보다가 아는보드가올라왓는데 가격이 없어 얼마냐물어보니 편하게 가격얘기하래요 응?? 나도 가격잘모르는데.... 그냥 택포10만원 이야기햇더니 알겟다고하면서 비싼것같다고 7만원만 보... 20 file 0 713
kmskms
2021.07.07
63158 질문 환기 질문이요~ 소상공인으로 작은사무실에서 일하면서 채굴조금씩 하고 있는 채린이입니다. 목표는 해시1기가정도까지이고 아직 반도 도달 못한상태에요. 2~3주에 한개씩 글카사면서 해시 조금씩 늘리고 있는데 지금까지는 그래도 ... 15 file 0 449
약물중독
2021.07.07
63157 채굴 3080 이상 해시       1번 3080 팰리트 -350 /1100 전압 80%  250와트 먹고 98 나오고 2번 3080 벤투스 -350  /1100 전압 100%먹여도 전압이 190와트 고정으로 해시는 저거  밖에 안나오네요   채굴기가 많아 신경 끄고 있었는데 여... 13 file 0 580
파타
2021.07.07
63156 채굴 중고로 3080 한개 가져왔는데 이거 이상하네요 의견 부탁드려요~       MSI 트리오 3080 작년 10월 제품 중고로 사서 테스트 해보는데 전력이 100프로면 240w 102프로면 340W 먹네요   100프로 에서 240W 메모리 오버 400 넘어가면 해쉬가 다운되고 102프로 전력 216W 1200메모리 99... 8 file 0 640
땡스기빙데이
2021.07.07
63155 채굴 [정보] 2021년 7월7일 VGA시세표입니다   안녕하세요   일부 1660 슈퍼 / 30시리즈 품절이 많습니다 참고해주세요     MODEL           06월 29일 06월 30일 07월 05일 07월 06일 07월 07일 GTX1050TI 이엠텍/MSI        260,000        260,000      ... 7 1 808
Miningwithme
2021.07.07
63154 채굴 [정보] 2021년 7월7일 이더리움 채산성데이타 안녕하세요   이더리움 채산성 데이타 업데이트 드립니다 테이블이 안보이시는분을 위해 첨부로 이미지도 업데이트 드립니다         이더리움가격        2,709,000   산업용기준 KW=120원 가정용  KW=700원        ... 7 0 680
Miningwithme
2021.07.07
목록
Board Pagination Prev 1 ... 608 609 610 611 612 613 614 615 616 617 ... 3771 Next
/ 3771
default debug random = 0 / type = READ / detected = READ