burstcoin (OP)
|
|
August 15, 2014, 04:08:28 AM |
|
So nobody has figured out how to generate the plots quicker yet? I think I have a solution that should generate them anywhere from 100-500 times faster. If I get it up and running (give me half a day) I'll let you know I assume this is a gpu solution? If so, glad to see someone else doing it so I don't have to Actually no, nothing as involved as that. I started looking at re-writing it in C++ (which would be more efficient for sure) then it dawned on me that this can be done in a much simpler way, though probably not a way suitable for everyone. The creation of the plots requires a lot of computing power, but only needs to be done once. So my not-so-pretty solution is simply to distribute the plot creation out to a farm If I can get it working, I think I should be able to achieve upwards of 1TB an hour, maybe 10x this if I have my calculations correct. In theory I could produce plots for other people, but creation speed would be limited by their internet connection so not really practical True... i rented cpu cloud but plots uploading is limited by my 100mb/s internet Need local solution to run it in NAS (PC) directly... Ah cool not just me then! Why store is locally? Cloud storage is pretty cheap these days. There's tools to allow you to use s3 like a mounted drive for example. s3 wouldn't work too well. if you cloud store it you'd have to be able to run the miner there too, because transfer when mining would be too slow
|
BURST-QHCJ-9HB5-PTGC-5Q8J9
|
|
|
paulthetafy
|
|
August 15, 2014, 04:17:10 AM |
|
So nobody has figured out how to generate the plots quicker yet? I think I have a solution that should generate them anywhere from 100-500 times faster. If I get it up and running (give me half a day) I'll let you know I assume this is a gpu solution? If so, glad to see someone else doing it so I don't have to Actually no, nothing as involved as that. I started looking at re-writing it in C++ (which would be more efficient for sure) then it dawned on me that this can be done in a much simpler way, though probably not a way suitable for everyone. The creation of the plots requires a lot of computing power, but only needs to be done once. So my not-so-pretty solution is simply to distribute the plot creation out to a farm If I can get it working, I think I should be able to achieve upwards of 1TB an hour, maybe 10x this if I have my calculations correct. In theory I could produce plots for other people, but creation speed would be limited by their internet connection so not really practical True... i rented cpu cloud but plots uploading is limited by my 100mb/s internet Need local solution to run it in NAS (PC) directly... Ah cool not just me then! Why store is locally? Cloud storage is pretty cheap these days. There's tools to allow you to use s3 like a mounted drive for example. s3 wouldn't work too well. if you cloud store it you'd have to be able to run the miner there too, because transfer when mining would be too slow Ah the miner has to read the plots of course. I think there is a viable solution using AWS with EBS, using NFS to allow the plot creation to be farmed. Once complete you can just run 1 small instance to mine as it has little to do other than read the file to check the nonces right?
|
|
|
|
burstcoin (OP)
|
|
August 15, 2014, 04:28:27 AM |
|
So nobody has figured out how to generate the plots quicker yet? I think I have a solution that should generate them anywhere from 100-500 times faster. If I get it up and running (give me half a day) I'll let you know I assume this is a gpu solution? If so, glad to see someone else doing it so I don't have to Actually no, nothing as involved as that. I started looking at re-writing it in C++ (which would be more efficient for sure) then it dawned on me that this can be done in a much simpler way, though probably not a way suitable for everyone. The creation of the plots requires a lot of computing power, but only needs to be done once. So my not-so-pretty solution is simply to distribute the plot creation out to a farm If I can get it working, I think I should be able to achieve upwards of 1TB an hour, maybe 10x this if I have my calculations correct. In theory I could produce plots for other people, but creation speed would be limited by their internet connection so not really practical True... i rented cpu cloud but plots uploading is limited by my 100mb/s internet Need local solution to run it in NAS (PC) directly... Ah cool not just me then! Why store is locally? Cloud storage is pretty cheap these days. There's tools to allow you to use s3 like a mounted drive for example. s3 wouldn't work too well. if you cloud store it you'd have to be able to run the miner there too, because transfer when mining would be too slow Ah the miner has to read the plots of course. I think there is a viable solution using AWS with EBS, using NFS to allow the plot creation to be farmed. Once complete you can just run 1 small instance to mine as it has little to do other than read the file to check the nonces right? EBS pricing is too high though. renting 2TB for one month is more expensive than just purchasing a drive. EDIT: Actually, just saw this: Data Transfer OUT From Amazon S3 To Amazon EC2 in the Northern Virginia Region $0.000 per GB so one might be able to abuse that.
|
BURST-QHCJ-9HB5-PTGC-5Q8J9
|
|
|
jopara
Newbie
Offline
Activity: 41
Merit: 0
|
|
August 15, 2014, 04:32:21 AM |
|
selling 10k - 200k BURST, pm me
|
|
|
|
paulthetafy
|
|
August 15, 2014, 04:33:12 AM |
|
So nobody has figured out how to generate the plots quicker yet? I think I have a solution that should generate them anywhere from 100-500 times faster. If I get it up and running (give me half a day) I'll let you know I assume this is a gpu solution? If so, glad to see someone else doing it so I don't have to Actually no, nothing as involved as that. I started looking at re-writing it in C++ (which would be more efficient for sure) then it dawned on me that this can be done in a much simpler way, though probably not a way suitable for everyone. The creation of the plots requires a lot of computing power, but only needs to be done once. So my not-so-pretty solution is simply to distribute the plot creation out to a farm If I can get it working, I think I should be able to achieve upwards of 1TB an hour, maybe 10x this if I have my calculations correct. In theory I could produce plots for other people, but creation speed would be limited by their internet connection so not really practical True... i rented cpu cloud but plots uploading is limited by my 100mb/s internet Need local solution to run it in NAS (PC) directly... Ah cool not just me then! Why store is locally? Cloud storage is pretty cheap these days. There's tools to allow you to use s3 like a mounted drive for example. s3 wouldn't work too well. if you cloud store it you'd have to be able to run the miner there too, because transfer when mining would be too slow Ah the miner has to read the plots of course. I think there is a viable solution using AWS with EBS, using NFS to allow the plot creation to be farmed. Once complete you can just run 1 small instance to mine as it has little to do other than read the file to check the nonces right? EBS pricing is too high though. renting 2TB for one month is more expensive than just purchasing a drive. You're spoiling my fun!! I have it mostly set up now! You are right, 1TB is $100 a month, but then again I can mine on it for a week whilst downloading the plots locally...
|
|
|
|
burstcoin (OP)
|
|
August 15, 2014, 04:42:32 AM |
|
So nobody has figured out how to generate the plots quicker yet? I think I have a solution that should generate them anywhere from 100-500 times faster. If I get it up and running (give me half a day) I'll let you know I assume this is a gpu solution? If so, glad to see someone else doing it so I don't have to Actually no, nothing as involved as that. I started looking at re-writing it in C++ (which would be more efficient for sure) then it dawned on me that this can be done in a much simpler way, though probably not a way suitable for everyone. The creation of the plots requires a lot of computing power, but only needs to be done once. So my not-so-pretty solution is simply to distribute the plot creation out to a farm If I can get it working, I think I should be able to achieve upwards of 1TB an hour, maybe 10x this if I have my calculations correct. In theory I could produce plots for other people, but creation speed would be limited by their internet connection so not really practical True... i rented cpu cloud but plots uploading is limited by my 100mb/s internet Need local solution to run it in NAS (PC) directly... Ah cool not just me then! Why store is locally? Cloud storage is pretty cheap these days. There's tools to allow you to use s3 like a mounted drive for example. s3 wouldn't work too well. if you cloud store it you'd have to be able to run the miner there too, because transfer when mining would be too slow Ah the miner has to read the plots of course. I think there is a viable solution using AWS with EBS, using NFS to allow the plot creation to be farmed. Once complete you can just run 1 small instance to mine as it has little to do other than read the file to check the nonces right? EBS pricing is too high though. renting 2TB for one month is more expensive than just purchasing a drive. You're spoiling my fun!! I have it mostly set up now! You are right, 1TB is $100 a month, but then again I can mine on it for a week whilst downloading the plots locally... To continue spoiling your fun a decent processor can easily do 30 plots/s, but can you download at 30 * 256KB = 7.5MB/s?
|
BURST-QHCJ-9HB5-PTGC-5Q8J9
|
|
|
paulthetafy
|
|
August 15, 2014, 05:00:54 AM |
|
So nobody has figured out how to generate the plots quicker yet? I think I have a solution that should generate them anywhere from 100-500 times faster. If I get it up and running (give me half a day) I'll let you know I assume this is a gpu solution? If so, glad to see someone else doing it so I don't have to Actually no, nothing as involved as that. I started looking at re-writing it in C++ (which would be more efficient for sure) then it dawned on me that this can be done in a much simpler way, though probably not a way suitable for everyone. The creation of the plots requires a lot of computing power, but only needs to be done once. So my not-so-pretty solution is simply to distribute the plot creation out to a farm If I can get it working, I think I should be able to achieve upwards of 1TB an hour, maybe 10x this if I have my calculations correct. In theory I could produce plots for other people, but creation speed would be limited by their internet connection so not really practical True... i rented cpu cloud but plots uploading is limited by my 100mb/s internet Need local solution to run it in NAS (PC) directly... Ah cool not just me then! Why store is locally? Cloud storage is pretty cheap these days. There's tools to allow you to use s3 like a mounted drive for example. s3 wouldn't work too well. if you cloud store it you'd have to be able to run the miner there too, because transfer when mining would be too slow Ah the miner has to read the plots of course. I think there is a viable solution using AWS with EBS, using NFS to allow the plot creation to be farmed. Once complete you can just run 1 small instance to mine as it has little to do other than read the file to check the nonces right? EBS pricing is too high though. renting 2TB for one month is more expensive than just purchasing a drive. You're spoiling my fun!! I have it mostly set up now! You are right, 1TB is $100 a month, but then again I can mine on it for a week whilst downloading the plots locally... To continue spoiling your fun a decent processor can easily do 30 plots/s, but can you download at 30 * 256KB = 7.5MB/s? No, but if I can generate at 1-10TB an hour, I can be up and mining with a large amount of plots within a few hours and earning blocks. Then while this is running I can download the plots locally over the course of several days
|
|
|
|
reza_abay
Member
Offline
Activity: 94
Merit: 10
|
|
August 15, 2014, 05:21:59 AM Last edit: August 15, 2014, 05:34:11 AM by reza_abay |
|
I have a one partion 5TB HDD i wanna create 5 plot in my hdd (5 plot 1TB) which command in run_generate.bat for create 5 plot automate in my hdd. because maybe my system restart when created plot and Not completed generate my plot.next time my system on continue the create next plot . example this command in one run_generate.bat file for create 1TB plot and next ..............so on?: java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 0 4000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 4000000 8000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 8000000 16000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 16000000 24000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 24000000 32000000 1000 6
or not?
|
|
|
|
Sy
Legendary
Offline
Activity: 1484
Merit: 1003
Bounty Detective
|
|
August 15, 2014, 05:33:14 AM |
|
I have a one partion 5TB HDD i wanna create 5 plot in my hdd (5 plot 1TB) which command in run_generate.bat for create 5 plot automate in my hdd. because maybe my system restart when created plot and Not completed generate my plot. example this command in one run_generate.bat file for create 1TB plot and next ..............so on?: java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 0 4000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 4000000 8000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 8000000 16000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 16000000 24000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 24000000 32000000 1000 6
or not?
java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 0 4000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 4000000 4000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 8000000 4000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 16000000 4000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 24000000 4000000 1000 6 It's start and amount, not from till.
|
|
|
|
ReDPoiSoN
|
|
August 15, 2014, 05:34:43 AM |
|
I have a one partion 5TB HDD i wanna create 5 plot in my hdd (5 plot 1TB) which command in run_generate.bat for create 5 plot automate in my hdd. because maybe my system restart when created plot and Not completed generate my plot. example this command in one run_generate.bat file for create 1TB plot and next ..............so on?: java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 0 4000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 4000000 8000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 8000000 16000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 16000000 24000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 24000000 32000000 1000 6
or not?
No! First change your password and don't copy it here the third number is the dimension of the plot! So the command is: java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 0 780000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 780001 780000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 1560002 780000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 2340003 780000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 3120004 780000 1000 6 780000 it's about 200 GB because 780000 * 256 = 199680000 = 199.6 GB
|
|
|
|
Depredation
|
|
August 15, 2014, 05:35:13 AM |
|
6 blocks with only 444 GB,
|
|
|
|
103deltafox
|
|
August 15, 2014, 05:36:51 AM |
|
Burst for sale! PM me with offers.
Have 10K, 20K, 30K, 100K, 200K lots avail....Thanks!
|
|
|
|
reza_abay
Member
Offline
Activity: 94
Merit: 10
|
|
August 15, 2014, 05:37:29 AM |
|
I have a one partion 5TB HDD i wanna create 5 plot in my hdd (5 plot 1TB) which command in run_generate.bat for create 5 plot automate in my hdd. because maybe my system restart when created plot and Not completed generate my plot. example this command in one run_generate.bat file for create 1TB plot and next ..............so on?: java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 0 4000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 4000000 8000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 8000000 16000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 16000000 24000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 24000000 32000000 1000 6
or not?
java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 0 4000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 4000000 4000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 8000000 4000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 16000000 4000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 24000000 4000000 1000 6 It's start and amount, not from till. can u help me?
|
|
|
|
ReDPoiSoN
|
|
August 15, 2014, 05:40:49 AM |
|
I have a one partion 5TB HDD i wanna create 5 plot in my hdd (5 plot 1TB) which command in run_generate.bat for create 5 plot automate in my hdd. because maybe my system restart when created plot and Not completed generate my plot. example this command in one run_generate.bat file for create 1TB plot and next ..............so on?: java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 0 4000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 4000000 8000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 8000000 16000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 16000000 24000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 24000000 32000000 1000 6
or not?
java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 0 4000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 4000000 4000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 8000000 4000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 16000000 4000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 24000000 4000000 1000 6 It's start and amount, not from till. can u help me? I have a one partion 5TB HDD i wanna create 5 plot in my hdd (5 plot 1TB) which command in run_generate.bat for create 5 plot automate in my hdd. because maybe my system restart when created plot and Not completed generate my plot. example this command in one run_generate.bat file for create 1TB plot and next ..............so on?: java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 0 4000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 4000000 8000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 8000000 16000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 16000000 24000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 24000000 32000000 1000 6
or not?
No! First change your password and don't copy it here the third number is the dimension of the plot! So the command is: java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 0 780000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 780001 780000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 1560002 780000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 2340003 780000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 3120004 780000 1000 6 780000 it's about 200 GB because 780000 * 256 = 199680000 = 199.6 GB
|
|
|
|
reza_abay
Member
Offline
Activity: 94
Merit: 10
|
|
August 15, 2014, 05:42:57 AM |
|
I have a one partion 5TB HDD i wanna create 5 plot in my hdd (5 plot 1TB) which command in run_generate.bat for create 5 plot automate in my hdd. because maybe my system restart when created plot and Not completed generate my plot. example this command in one run_generate.bat file for create 1TB plot and next ..............so on?: java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 0 4000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 4000000 8000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 8000000 16000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 16000000 24000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 24000000 32000000 1000 6
or not?
No! First change your password and don't copy it here the third number is the dimension of the plot! So the command is: java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 0 780000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 780001 780000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 1560002 780000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 2340003 780000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 3120004 780000 1000 6 780000 it's about 200 GB because 780000 * 256 = 199680000 = 199.6 GB Thanks
|
|
|
|
ReDPoiSoN
|
|
August 15, 2014, 05:44:57 AM |
|
I have a one partion 5TB HDD i wanna create 5 plot in my hdd (5 plot 1TB) which command in run_generate.bat for create 5 plot automate in my hdd. because maybe my system restart when created plot and Not completed generate my plot. example this command in one run_generate.bat file for create 1TB plot and next ..............so on?: java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 0 4000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 4000000 8000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 8000000 16000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 16000000 24000000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 24000000 32000000 1000 6
or not?
No! First change your password and don't copy it here the third number is the dimension of the plot! So the command is: java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 0 780000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 780001 780000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 1560002 780000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 2340003 780000 1000 6 java -Xmx4000m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate 17520506009031685645 3120004 780000 1000 6 780000 it's about 200 GB because 780000 * 256 = 199680000 = 199.6 GB Thanks Using that guideline you can do the math yourself if you need to change something! BUT FIRST change 17520506009031685645 before generating plots!!
|
|
|
|
burstcoin (OP)
|
|
August 15, 2014, 05:59:35 AM |
|
Using that guideline you can do the math yourself if you need to change something! BUT FIRST change 17520506009031685645 before generating plots!!
Did he actually post his pw? I don't see it, and there is nothing wrong with posting that long number.
|
BURST-QHCJ-9HB5-PTGC-5Q8J9
|
|
|
PeaMine
|
|
August 15, 2014, 06:02:55 AM |
|
Is there a way to check mining info and balance if you can't access the web interface? Using CLI, and Lynx isn't very friendly with it heh.
|
Datacenter Technician and Electrician. If you have any questions feel free to ask me as I am generally bored looking at logs and happy to help during free time.
|
|
|
paulthetafy
|
|
August 15, 2014, 06:07:07 AM |
|
Is there a way to check mining info and balance if you can't access the web interface? Using CLI, and Lynx isn't very friendly with it heh.
Can you not just open up the wallet to allow external connections instead of only 127.0.0.1? This can be done by editing nxt-default.properties though I forget which setting to change. Just add the IP of the machine you want to view it from (or I tihnk add 0.0.0.0) and you will be able to view it in the browser of the machine you want to view from with http://ipofserver:8125
|
|
|
|
Sy
Legendary
Offline
Activity: 1484
Merit: 1003
Bounty Detective
|
|
August 15, 2014, 06:24:58 AM |
|
Is there a way to check mining info and balance if you can't access the web interface? Using CLI, and Lynx isn't very friendly with it heh.
Can you not just open up the wallet to allow external connections instead of only 127.0.0.1? This can be done by editing nxt-default.properties though I forget which setting to change. Just add the IP of the machine you want to view it from (or I tihnk add 0.0.0.0) and you will be able to view it in the browser of the machine you want to view from with http://ipofserver:8125You can open it up and use http://hostname:8125/burst?requestType=getBalance&account=BURST-WRH2-4SXL-RB4E-DLGBE to get the balance without your password...and no, thats not my account
|
|
|
|
|