Bitcoin Forum
May 10, 2024, 05:08:28 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 [1194] 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 ... 2123 »
  Print  
Author Topic: [XMR] Monero - A secure, private, untraceable cryptocurrency  (Read 4667422 times)
GingerAle
Legendary
*
Offline Offline

Activity: 1260
Merit: 1008


View Profile WWW
May 09, 2015, 06:12:02 PM
 #23861

Has Monera a asset exchange or crowdfunding platform like some other crypto coins have were I can invest in Monera related projects?

You can donate to core development directly.

The core devs are working on something in the getmonero.org forums along this line, where you can directly fund specific projects.

As it exists now, the getmonero.org forums have an area where people can post projects they are working on and ask for funding.

< Track your bitcoins! > < Track them again! > <<< [url=https://www.reddit.com/r/Bitcoin/comments/1qomqt/what_a_landmark_legal_case_from_mid1700s_scotland/] What is fungibility? >>> 46P88uZ4edEgsk7iKQUGu2FUDYcdHm2HtLFiGLp1inG4e4f9PTb4mbHWYWFZGYUeQidJ8hFym2WUmWc p34X8HHmFS2LXJkf <<< Free subdomains at moneroworld.com!! >>> <<< If you don't want to run your own node, point your wallet to node.moneroworld.com, and get connected to a random node! @@@@ FUCK ALL THE PROFITEERS! PROOF OF WORK OR ITS A SCAM !!! @@@@
1715317708
Hero Member
*
Offline Offline

Posts: 1715317708

View Profile Personal Message (Offline)

Ignore
1715317708
Reply with quote  #2

1715317708
Report to moderator
1715317708
Hero Member
*
Offline Offline

Posts: 1715317708

View Profile Personal Message (Offline)

Ignore
1715317708
Reply with quote  #2

1715317708
Report to moderator
"Bitcoin: the cutting edge of begging technology." -- Giraffe.BTC
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715317708
Hero Member
*
Offline Offline

Posts: 1715317708

View Profile Personal Message (Offline)

Ignore
1715317708
Reply with quote  #2

1715317708
Report to moderator
1715317708
Hero Member
*
Offline Offline

Posts: 1715317708

View Profile Personal Message (Offline)

Ignore
1715317708
Reply with quote  #2

1715317708
Report to moderator
OBAViJEST
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500



View Profile WWW
May 09, 2015, 06:52:21 PM
 #23862

Hi guys,

Does anyone know of a (up to date) walkthrough for setting up Monero mining, through a VPS?  I have two VMs (google and amazon) running Ubuntu, if that helps. I just can't find any guides that still work 100%....

I appreciate any help - thanks in advance..

(i've set up miners for other coins before, I'm just not that familiar with XMR yet)
smooth
Legendary
*
Offline Offline

Activity: 2968
Merit: 1198



View Profile
May 09, 2015, 06:57:06 PM
 #23863

Has Monera a asset exchange or crowdfunding platform like some other crypto coins have were I can invest in Monera related projects?

It is in development as a feature of the Monero forum: http://forum.getmonero.org
skyboyextreme
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
May 09, 2015, 07:34:56 PM
 #23864

what do u guys recommend to mine with 6900 7900 and r9 series gpus ? is monero the most profitable ?
AnonCoinTwitter
Full Member
***
Offline Offline

Activity: 158
Merit: 100


View Profile
May 09, 2015, 07:53:39 PM
 #23865

I just let all my Twitter followers know that I now support Monero!

with #Monero and xmr.to you can pay any #bitcoin address today! #fungibility #privacy

5w00p
Hero Member
*****
Offline Offline

Activity: 644
Merit: 502



View Profile
May 09, 2015, 08:32:04 PM
 #23866

Hi guys,

Does anyone know of a (up to date) walkthrough for setting up Monero mining, through a VPS?  I have two VMs (google and amazon) running Ubuntu, if that helps. I just can't find any guides that still work 100%....

I appreciate any help - thanks in advance..

(i've set up miners for other coins before, I'm just not that familiar with XMR yet)

Here are the commands to get Wolf0's CPU miner going in Ubuntu 14.X:

Code:
sudo apt-get update;sudo apt-get install screen;sudo apt-get install git;sudo apt-get install build-essential;sudo apt-get install pkg-config;sudo apt-get install libcurl4-openssl-dev;sudo apt-get install automake

wget http://curl.haxx.se/download/curl-7.34.0.tar.gz;tar -xvf curl-7.34.0.tar.gz;cd curl-7.34.0/;./configure --disable-shared --enable-static;make -j 4;sudo make install;cd ..

git clone https://github.com/wolf9466/cpuminer-multi;cd cpuminer-multi;./autogen.sh;./configure;make -j 4

The above will get the miner software installed.

Then set hugepages to 3X the number of cores, so 24 in a case of a CPU with 8 cores mining.

Code:
sudo sysctl -w vm.nr_hugepages=24;

SCREEN for allowing you to disconnect, yet leave the miner hashing:

Code:
screen -t m1n3r 

Finally, the command-line to start mining, where <your Monero addy> is yours and X = # of cores.

Code:
sudo ./minerd -a cryptonight -o stratum+tcp://[Monero_Mining_Pool_of_Choice] -u <your Monero addy> -p x -t X

Then CTRL+A and then press 'D' to disconnect from that session, leaving the mining active.
OBAViJEST
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500



View Profile WWW
May 09, 2015, 08:40:08 PM
 #23867


Here are the commands to get Wolf0's CPU miner going in Ubuntu 14.X:

Code:
sudo apt-get update;sudo apt-get install screen;sudo apt-get install git;sudo apt-get install build-essential;sudo apt-get install pkg-config;sudo apt-get install libcurl4-openssl-dev;sudo apt-get install automake

wget http://curl.haxx.se/download/curl-7.34.0.tar.gz;tar -xvf curl-7.34.0.tar.gz;cd curl-7.34.0/;./configure --disable-shared --enable-static;make -j 4;sudo make install;cd ..

git clone https://github.com/wolf9466/cpuminer-multi;cd cpuminer-multi;./autogen.sh;./configure;make -j 4

The above will get the miner software installed.

Then set hugepages to 3X the number of cores, so 24 in a case of a CPU with 8 cores mining.

Code:
sudo sysctl -w vm.nr_hugepages=24;

SCREEN for allowing you to disconnect, yet leave the miner hashing:

Code:
screen -t m1n3r 

Finally, the command-line to start mining, where <your Monero addy> is yours and X = # of cores.

Code:
sudo ./minerd -a cryptonight -o stratum+tcp://[Monero_Mining_Pool_of_Choice] -u <your Monero addy> -p x -t X

Then CTRL+A and then press 'D' to disconnect from that session, leaving the mining active.

Thank you so much!  I'll try this out now, and let you know how it goes Grin

Again, appreciate the help!
smooth
Legendary
*
Offline Offline

Activity: 2968
Merit: 1198



View Profile
May 09, 2015, 08:42:28 PM
 #23868

sudo sysctl -w vm.nr_hugepages=24;

Bear in mind this setting won't "stick" across reboots. You'll have to redo it after every reboot or edit your config files (depends on distro but often something like /etc/sysctl.conf)
QuantumQrack
Sr. Member
****
Offline Offline

Activity: 337
Merit: 250


View Profile
May 09, 2015, 08:51:34 PM
 #23869

I just let all my Twitter followers know that I now support Monero!

with #Monero and xmr.to you can pay any #bitcoin address today! #fungibility #privacy

Welcome to the fold.  Wink
OBAViJEST
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500



View Profile WWW
May 09, 2015, 09:08:44 PM
 #23870

Hi guys,

Does anyone know of a (up to date) walkthrough for setting up Monero mining, through a VPS?  I have two VMs (google and amazon) running Ubuntu, if that helps. I just can't find any guides that still work 100%....

I appreciate any help - thanks in advance..

(i've set up miners for other coins before, I'm just not that familiar with XMR yet)

Here are the commands to get Wolf0's CPU miner going in Ubuntu 14.X:

Code:
sudo apt-get update;sudo apt-get install screen;sudo apt-get install git;sudo apt-get install build-essential;sudo apt-get install pkg-config;sudo apt-get install libcurl4-openssl-dev;sudo apt-get install automake

wget http://curl.haxx.se/download/curl-7.34.0.tar.gz;tar -xvf curl-7.34.0.tar.gz;cd curl-7.34.0/;./configure --disable-shared --enable-static;make -j 4;sudo make install;cd ..

git clone https://github.com/wolf9466/cpuminer-multi;cd cpuminer-multi;./autogen.sh;./configure;make -j 4

The above will get the miner software installed.

Then set hugepages to 3X the number of cores, so 24 in a case of a CPU with 8 cores mining.

Code:
sudo sysctl -w vm.nr_hugepages=24;

SCREEN for allowing you to disconnect, yet leave the miner hashing:

Code:
screen -t m1n3r 

Finally, the command-line to start mining, where <your Monero addy> is yours and X = # of cores.

Code:
sudo ./minerd -a cryptonight -o stratum+tcp://[Monero_Mining_Pool_of_Choice] -u <your Monero addy> -p x -t X

Then CTRL+A and then press 'D' to disconnect from that session, leaving the mining active.

I'm at the last step, but getting a ./minerd: command not found Huh

I'm in the same directory though, and I (thought) it was set up and ready to go...I mean I've used the same program, in the same VM before...

Any ideas?  Thanks in advance...
g4q34g4qg47ww
Sr. Member
****
Offline Offline

Activity: 478
Merit: 250


View Profile
May 09, 2015, 09:28:25 PM
 #23871

Smooth, you've received a solid commendation from Anonymint  Grin

Smooth is the most astute programmer in altcoins that I have had discussions with.

It seems to me that Monero has the best team of any altcoin.

Impressive!
papa_lazzarou
Hero Member
*****
Offline Offline

Activity: 649
Merit: 500



View Profile
May 09, 2015, 10:19:58 PM
 #23872


I'm at the last step, but getting a ./minerd: command not found Huh

I'm in the same directory though, and I (thought) it was set up and ready to go...I mean I've used the same program, in the same VM before...

Any ideas?  Thanks in advance...

In all probability there was an error and it didn't finish compiling the miner. Do make again and take note of any errors.

EDIT: Or you are not inside cpuminer-multi/ directory...
OBAViJEST
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500



View Profile WWW
May 09, 2015, 10:48:16 PM
 #23873


I'm at the last step, but getting a ./minerd: command not found Huh

I'm in the same directory though, and I (thought) it was set up and ready to go...I mean I've used the same program, in the same VM before...

Any ideas?  Thanks in advance...

In all probability there was an error and it didn't finish compiling the miner. Do make again and take note of any errors.

EDIT: Or you are not inside cpuminer-multi/ directory...

Thanks for the response -

I'm receiving this error:

Code:
Makefile.am:12: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')

Any ideas what's causing this?  Or anything I can do to solve it?  I'm not too familiar with the purpose of FLAGS
GingerAle
Legendary
*
Offline Offline

Activity: 1260
Merit: 1008


View Profile WWW
May 10, 2015, 03:49:13 AM
 #23874


I'm at the last step, but getting a ./minerd: command not found Huh

I'm in the same directory though, and I (thought) it was set up and ready to go...I mean I've used the same program, in the same VM before...

Any ideas?  Thanks in advance...

In all probability there was an error and it didn't finish compiling the miner. Do make again and take note of any errors.

EDIT: Or you are not inside cpuminer-multi/ directory...

Thanks for the response -

I'm receiving this error:

Code:
Makefile.am:12: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')

Any ideas what's causing this?  Or anything I can do to solve it?  I'm not too familiar with the purpose of FLAGS

did you try running it anyway?

i think i've encountered that error and it still runs.

then again, ima noobish. I wear noobilific jibbers on me jammer jobbers

< Track your bitcoins! > < Track them again! > <<< [url=https://www.reddit.com/r/Bitcoin/comments/1qomqt/what_a_landmark_legal_case_from_mid1700s_scotland/] What is fungibility? >>> 46P88uZ4edEgsk7iKQUGu2FUDYcdHm2HtLFiGLp1inG4e4f9PTb4mbHWYWFZGYUeQidJ8hFym2WUmWc p34X8HHmFS2LXJkf <<< Free subdomains at moneroworld.com!! >>> <<< If you don't want to run your own node, point your wallet to node.moneroworld.com, and get connected to a random node! @@@@ FUCK ALL THE PROFITEERS! PROOF OF WORK OR ITS A SCAM !!! @@@@
Shindo1988
Full Member
***
Offline Offline

Activity: 154
Merit: 100


Bitcoin Samurai


View Profile
May 10, 2015, 07:54:54 AM
 #23875

Is this coin still CPU mineable?
And if it is, how do I go about it?
Many thanks  Cheesy

╲╲ ╲╲ COINOMAT.COM ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
╱╱ ╱╱ First Instant Crypto Exchange                              Sign Up Now!                    Visit our Facebook & Twitter
▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃
V@n@dis
Newbie
*
Offline Offline

Activity: 41
Merit: 0


View Profile
May 10, 2015, 08:09:57 AM
 #23876

Is this coin still CPU mineable?
And if it is, how do I go about it?
Many thanks  Cheesy

yes it is.

Have a look at [XMR] Monero Mining https://bitcointalk.org/index.php?topic=653467.0 for more info.
shitaifan2013
Legendary
*
Offline Offline

Activity: 879
Merit: 1000

monero


View Profile
May 10, 2015, 03:12:42 PM
 #23877

hey guys, short question:

what's the recommended minimum number of confirmations a site should use before crediting deposits? I know that poloniex takes ~16(?) confirmations, but that always feels like a little bit too much.

reason I'm asking: https://i.imgur.com/e3BcgAU.jpg

5w00p
Hero Member
*****
Offline Offline

Activity: 644
Merit: 502



View Profile
May 10, 2015, 06:31:22 PM
 #23878

hey guys, short question:

what's the recommended minimum number of confirmations a site should use before crediting deposits? I know that poloniex takes ~16(?) confirmations, but that always feels like a little bit too much.

reason I'm asking: https://i.imgur.com/e3BcgAU.jpg

Cool site.

I would think that 8 confirmations would be sufficient. But, maybe someone else will tell us why that number is too low.
kazuki49
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250



View Profile
May 10, 2015, 06:32:41 PM
 #23879

hey guys, short question:

what's the recommended minimum number of confirmations a site should use before crediting deposits? I know that poloniex takes ~16(?) confirmations, but that always feels like a little bit too much.

reason I'm asking: https://i.imgur.com/e3BcgAU.jpg

Cool site.

I would think that 8 confirmations would be sufficient. But, maybe someone else will tell us why that number is too low.

Its not low, I would go with a max of 10, thats the time of 1 btc confirmation (actually should be a lot less)
Drhiggins
Sr. Member
****
Offline Offline

Activity: 306
Merit: 251



View Profile
May 10, 2015, 07:10:11 PM
 #23880

With all the ideas for a simple node server for cheap why not build one that gives a few extra mining options but keeps price low for those just wanting a node, wallet and simple miner.

AMD ATHLON MINI PC
Node, Wallet, Miner (with mining expansion options) Base unit $190

Since the new release will have the built in miner feature you can take advantage of 2 of the Athlons 4 cores assuming the 8.8.7 release supports this.  Mine with 2 cores and run the system with the other 2 cores.  This way someone could build a small PC that could run the wallet, node and miner all in one with extra mining options.  I priced out some parts and this build would be most useful to Windows folks that aren’t as tech savvy but want to support the network and get involved.
 
Add a nice GPU to the available PCI Express slot on the motherboard and get a little more mining power with a 3rd party GPU miner installed. With 430w of power I doubt this motherboard with RAM and SSD will pull more than 100w leaving 330w open for a nice GPU.  You could up the power supply rating if you wanted to run a very high end GPU.

-MSI AM1I AM1 2 x SATA 6Gb/s USB 3.0 HDMI Mini ITX AMD Motherboard ($30)
-MD Sempron 3850 Kabini Quad-Core 1.3GHz Socket AM1 25W ($30)
-Thermaltake TR2 W0070 430W ATX12V v2.3 Power Supply ($45)
-Crucial 4GB (2 x 2GB) 240-Pin DDR3 ($35)
-Corsair Force CSSD-F120GB2B/RF2 2.5" 120GB SSD ($50)
All priced through New Egg

OPTION MINING ADD ON
-Any Nvidia or AMD GPU card.
   
Anyway I don’t claim to be an expert and assuming the new DB reduces the RAM usage in Windows environment this might be a nice option for someone starting out and getting to know Monero.  I might just have to build one of these and try it out once the new release is out and stable.

Monerohash.com   U.S. Mining Pool
Pages: « 1 ... 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 [1194] 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 ... 2123 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!