GreekBitcoin
Legendary
Offline
Activity: 1428
Merit: 1001
getmonero.org
|
|
May 03, 2014, 07:15:13 AM |
|
I'm trying to install Monero on a 1GB digitalocean VPS. I've followed all the instructions from here: http://monero.cc/getting-started#linux-tutorialWhen I try and run 'make' I get this error output which indicates that my VPS 'CPU you selected does not support x86-64 instruction set' Does that mean 1GB digitalocean has too weak a CPU to even experiment with? monero@Monero:~/boost_1_55_0$ cd bitmonero monero@Monero:~/boost_1_55_0/bitmonero$ mkdir build monero@Monero:~/boost_1_55_0/bitmonero$ make mkdir -p build/release cd build/release && cmake -D CMAKE_BUILD_TYPE=Release ../.. -- The C compiler identification is GNU 4.8.1 -- The CXX compiler identification is GNU 4.8.1 -- Check for working C compiler: /usr/bin/cc -- Check for working C compiler: /usr/bin/cc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Boost version: 1.55.0 -- Found the following Boost libraries: -- system -- filesystem -- thread -- date_time -- chrono -- regex -- serialization -- atomic -- program_options -- Found Git: /usr/bin/git -- Found PythonInterp: /usr/bin/python (found version "2.7.5") -- Looking for include file pthread.h -- Looking for include file pthread.h - not found -- Could NOT find Threads (missing: Threads_FOUND) -- Configuring done -- Generating done -- Build files have been written to: /home/monero/boost_1_55_0/bitmonero/build/release cd build/release && make make[1]: Entering directory `/home/monero/boost_1_55_0/bitmonero/build/release' make[2]: Entering directory `/home/monero/boost_1_55_0/bitmonero/build/release' make[3]: Entering directory `/home/monero/boost_1_55_0/bitmonero/build/release' Scanning dependencies of target version make[3]: Leaving directory `/home/monero/boost_1_55_0/bitmonero/build/release' make[3]: Entering directory `/home/monero/boost_1_55_0/bitmonero/build/release' fatal: No names found, cannot describe anything. CMake Warning at src/version.cmake:3 (message): Cannot determine current revision. Make sure that you are building either from a Git working tree or from a source archive.
make[3]: Leaving directory `/home/monero/boost_1_55_0/bitmonero/build/release' [ 0%] Built target version make[3]: Entering directory `/home/monero/boost_1_55_0/bitmonero/build/release' Scanning dependencies of target upnpc-static make[3]: Leaving directory `/home/monero/boost_1_55_0/bitmonero/build/release' make[3]: Entering directory `/home/monero/boost_1_55_0/bitmonero/build/release' [ 1%] Building C object external/miniupnpc/CMakeFiles/upnpc-static.dir/igd_desc_parse.c.o /home/monero/boost_1_55_0/bitmonero/external/miniupnpc/igd_desc_parse.c:1:0: [b]error: CPU you selected does not support x86-64 instruction set[/b] /* $Id: igd_desc_parse.c,v 1.14 2011/04/11 09:19:24 nanard Exp $ */ ^ make[3]: *** [external/miniupnpc/CMakeFiles/upnpc-static.dir/igd_desc_parse.c.o] Error 1 make[3]: Leaving directory `/home/monero/boost_1_55_0/bitmonero/build/release' make[2]: *** [external/miniupnpc/CMakeFiles/upnpc-static.dir/all] Error 2 make[2]: Leaving directory `/home/monero/boost_1_55_0/bitmonero/build/release' make[1]: *** [all] Error 2 make[1]: Leaving directory `/home/monero/boost_1_55_0/bitmonero/build/release' make: *** [build-release] Error 2 monero@Monero:~/boost_1_55_0/bitmonero$ cd build/release/src No. I think it means that the compiling need some flags for the cpu that DO has. Probably you have to edit the makefile but i dont know what exackly it needs. tacotime had said before that this may help : CFLAGS=-march=corei7 or corei7avx . also CXXFLAGS I didnt test it cause difficulty went up fast so i didnt want to use DO...
|
|
|
|
eizh
|
|
May 03, 2014, 07:24:25 AM |
|
I'm trying to install Monero on a 1GB digitalocean VPS. I've followed all the instructions from here: http://monero.cc/getting-started#linux-tutorialWhen I try and run 'make' I get this error output which indicates that my VPS 'CPU you selected does not support x86-64 instruction set' Does that mean 1GB digitalocean has too weak a CPU to even experiment with? The VPS is probably 32-bit. The current MRO code only supports 64-bit architecture. Tomorrow tacotime will try merging the latest BCN commits into MRO. This will allow a 32-bit system to run MRO/CryptoNote. Try again after the newest build is up (probably this weekend). On another note: a 512 MB VM will fail to compile but can probably run the binaries. I'm not sure about 1 GB VMs.
|
|
|
|
blaaaaacksuit
Sr. Member
Offline
Activity: 280
Merit: 250
Who cares?
|
|
May 03, 2014, 07:29:03 AM |
|
Does anyone know how many coins are currently in circulation?
|
|
|
|
surfer43
Sr. Member
Offline
Activity: 560
Merit: 250
"Trading Platform of The Future!"
|
|
May 03, 2014, 07:33:18 AM |
|
I'm trying to install Monero on a 1GB digitalocean VPS. I've followed all the instructions from here: http://monero.cc/getting-started#linux-tutorialWhen I try and run 'make' I get this error output which indicates that my VPS 'CPU you selected does not support x86-64 instruction set' Does that mean 1GB digitalocean has too weak a CPU to even experiment with? monero@Monero:~/boost_1_55_0$ cd bitmonero monero@Monero:~/boost_1_55_0/bitmonero$ mkdir build monero@Monero:~/boost_1_55_0/bitmonero$ make mkdir -p build/release cd build/release && cmake -D CMAKE_BUILD_TYPE=Release ../.. -- The C compiler identification is GNU 4.8.1 -- The CXX compiler identification is GNU 4.8.1 -- Check for working C compiler: /usr/bin/cc -- Check for working C compiler: /usr/bin/cc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Boost version: 1.55.0 -- Found the following Boost libraries: -- system -- filesystem -- thread -- date_time -- chrono -- regex -- serialization -- atomic -- program_options -- Found Git: /usr/bin/git -- Found PythonInterp: /usr/bin/python (found version "2.7.5") -- Looking for include file pthread.h -- Looking for include file pthread.h - not found -- Could NOT find Threads (missing: Threads_FOUND) -- Configuring done -- Generating done -- Build files have been written to: /home/monero/boost_1_55_0/bitmonero/build/release cd build/release && make make[1]: Entering directory `/home/monero/boost_1_55_0/bitmonero/build/release' make[2]: Entering directory `/home/monero/boost_1_55_0/bitmonero/build/release' make[3]: Entering directory `/home/monero/boost_1_55_0/bitmonero/build/release' Scanning dependencies of target version make[3]: Leaving directory `/home/monero/boost_1_55_0/bitmonero/build/release' make[3]: Entering directory `/home/monero/boost_1_55_0/bitmonero/build/release' fatal: No names found, cannot describe anything. CMake Warning at src/version.cmake:3 (message): Cannot determine current revision. Make sure that you are building either from a Git working tree or from a source archive.
make[3]: Leaving directory `/home/monero/boost_1_55_0/bitmonero/build/release' [ 0%] Built target version make[3]: Entering directory `/home/monero/boost_1_55_0/bitmonero/build/release' Scanning dependencies of target upnpc-static make[3]: Leaving directory `/home/monero/boost_1_55_0/bitmonero/build/release' make[3]: Entering directory `/home/monero/boost_1_55_0/bitmonero/build/release' [ 1%] Building C object external/miniupnpc/CMakeFiles/upnpc-static.dir/igd_desc_parse.c.o /home/monero/boost_1_55_0/bitmonero/external/miniupnpc/igd_desc_parse.c:1:0: [b]error: CPU you selected does not support x86-64 instruction set[/b] /* $Id: igd_desc_parse.c,v 1.14 2011/04/11 09:19:24 nanard Exp $ */ ^ make[3]: *** [external/miniupnpc/CMakeFiles/upnpc-static.dir/igd_desc_parse.c.o] Error 1 make[3]: Leaving directory `/home/monero/boost_1_55_0/bitmonero/build/release' make[2]: *** [external/miniupnpc/CMakeFiles/upnpc-static.dir/all] Error 2 make[2]: Leaving directory `/home/monero/boost_1_55_0/bitmonero/build/release' make[1]: *** [all] Error 2 make[1]: Leaving directory `/home/monero/boost_1_55_0/bitmonero/build/release' make: *** [build-release] Error 2 monero@Monero:~/boost_1_55_0/bitmonero$ cd build/release/src No. I think it means that the compiling need some flags for the cpu that DO has. Probably you have to edit the makefile but i dont know what exackly it needs. tacotime had said before that this may help : CFLAGS=-march=corei7 or corei7avx . also CXXFLAGS I didnt test it cause difficulty went up fast so i didnt want to use DO... You have to edit CMakeLists.txt and change line 39 to set(ARCH_FLAG "-march=corei7")
|
|
|
|
smooth
Legendary
Offline
Activity: 2968
Merit: 1198
|
|
May 03, 2014, 07:34:34 AM |
|
Does anyone know how many coins are currently in circulation?
Slightly below 400k.
|
|
|
|
mickey_miner
Sr. Member
Offline
Activity: 910
Merit: 250
Proof-of-Stake Blockchain Network
|
|
May 03, 2014, 08:43:20 AM |
|
2014-May-03 01:41:56.368798 [P2P1]BH: 22456, DIFF: 1005551, HR: 16759 H/s
Wow!
|
|
|
|
|
,gaaaaaaaagaaaaaaaaaaaaagaaaaaaaag, ,aP8b _,dYba, ,adPb,_ d8Ya, ,aP" Yb_,dP" "Yba, ,adP" "Yb,_dP "Ya, ,aP" _88" )888( "88_ "Ya, ,aP" _,dP"Yb ,adP"8"Yba, dP"Yb,_ "Ya, ,aPYb _,dP8 Yb ,adP" 8 "Yba, dP 8Yb,_ dPYa, ,aP" YdP" dP YbdP" 8 "YbdP Yb "YbP "Ya, I8aaaaaa8aaa8baaaaaa88aaaaaaaa8aaaaaaaa88aaaaaad8aaa8aaaaaa8I `Yb, d8a, Ya d8b, 8 ,d8b aP ,a8b ,dP' "Yb,dP "Ya "8, dI "Yb, 8 ,dP" Ib ,8" aP" Yb,dP" "Y8, "YaI8, ,8' "Yb, 8 ,dP" `8, ,8IaP" ,8P" "Yb, `"Y8ad' "Yb,8,dP" `ba8P"' ,dP" "Yb, `"8, "Y8P" ,8"' ,dP" "Yb, `8, 8 ,8' ,dP" "Yb, `Ya 8 aP' ,dP" "Yb, "8, 8 ,8" ,dP" "Yb, `8, 8 ,8' ,dP" "Yb, `Ya 8 aP' ,dP" "Yb, "8, 8 ,8" ,dP" "Yb,`8, 8 ,8',dP" "Yb,Ya8aP,dP" "Y88888P" "Y8P" "
| | Free TON
| │ │ │
| PEER-TO-PEER MULTY-BLOCKCHAIN SYSTEM ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬. ▬▬▬TON SURF - OFFICIAL WALLET. | │ │ │
| ▄███████████████████▄ █████████████████████ ▄█████ █████████████████████ ██████ ████ ████ ███ █████████████████████ ██████ ████ ████ ██████ █████████████████████ ███ █████████████████████ ███████ ▀███████████████████▀ ▀███████▄▄▄▄▄▄▄ ▀████ ████▌ ██ ▐██▌ █▌
| | | | │ │ │
| | | | │ │ │
| | TELEGRAM FORUM WIKI |
|
|
|
eizh
|
|
May 03, 2014, 08:51:52 AM |
|
Important!We have a pool bounty going. As you've probably noticed, network hashrate is going up. When the 32-bit code is merged in, it'll go even higher. Solo mining outcomes will then be pretty random. tacotime has a dev who will work on an open source pool implementation for a bounty. See this topic/post: https://bitcointalk.org/index.php?topic=589533.msg6520464#msg6520464
|
|
|
|
|
Xdragon
|
|
May 03, 2014, 10:09:30 AM Last edit: May 03, 2014, 11:04:59 AM by Xdragon |
|
I'm here. Constantly. Soon I will have the fork in sync with the bytecoin commits. NoodleDoodle recently published a more optimized daemon/miner for win64. Othe is working on the GUI. Pool will come as soon as people see the technological value in the coin. Like most open source projects, it will grow slowly and organically -- like Bitcoin itself. So, just chill. The start was fair and the development behind the coin has been totally decentralized since TFT left. In the meantime, enjoy cheap MRO. where more optimised miner can be downloaded? edit: Ok , I found it. Now i have this problem . cant sync wallet, and cant see my balance. Are my coins lost?
|
|
|
|
pandher
Legendary
Offline
Activity: 952
Merit: 1000
Stagnation is Death
|
|
May 03, 2014, 11:14:21 AM |
|
Im having an error while starting deamon on buntu 13.10, compiled 2 days ago, was working good http://pastebin.com/gN75FP1J
|
|
|
|
smooth
Legendary
Offline
Activity: 2968
Merit: 1198
|
|
May 03, 2014, 11:17:31 AM |
|
Now i have this problem . cant sync wallet, and cant see my balance. Are my coins lost?
No your coins are not lost, that just means your wallet build is too old. You need to refresh. OP should have the latest.
|
|
|
|
smooth
Legendary
Offline
Activity: 2968
Merit: 1198
|
|
May 03, 2014, 11:18:38 AM |
|
I'm not sure what you are missing. Did you install build-essential and boost-all-dev?
|
|
|
|
mkmen
|
|
May 03, 2014, 11:28:00 AM |
|
I'm not sure what you are missing. Did you install build-essential and boost-all-dev?
Yep, build-essential and libboost-all-dev are there. Tried also the older(?) repo at https://github.com/bitmonero-project/bitmonero, same problem.
|
|
|
|
Xdragon
|
|
May 03, 2014, 11:28:57 AM |
|
Now i have this problem . cant sync wallet, and cant see my balance. Are my coins lost?
No your coins are not lost, that just means your wallet build is too old. You need to refresh. OP should have the latest. it works now. thank you
|
|
|
|
superresistant
Legendary
Offline
Activity: 2156
Merit: 1131
|
|
May 03, 2014, 11:30:14 AM |
|
I used boost1.55. For the tutorial, see one of my early post in this thread. 2014-May-03 01:41:56.368798 [P2P1]BH: 22456, DIFF: 1005551, HR: 16759 H/s Wow!
Shit, it is too much for most people.
|
|
|
|
smooth
Legendary
Offline
Activity: 2968
Merit: 1198
|
|
May 03, 2014, 11:39:12 AM |
|
I'm not sure what you are missing. Did you install build-essential and boost-all-dev?
Yep, build-essential and libboost-all-dev are there. Tried also the older(?) repo at https://github.com/bitmonero-project/bitmonero, same problem. Does not make sense that this file would be missing: -- Looking for include file pthread.h - not found
Does it exist on your system? It should be in /usr/include/pthread.h
|
|
|
|
coa032
|
|
May 03, 2014, 11:41:27 AM |
|
WTB 350 MRO for 0.11 BTC...it is not fixed price,we can make a deal
|
|
|
|
mkmen
|
|
May 03, 2014, 11:47:18 AM |
|
Does not make sense that this file would be missing: -- Looking for include file pthread.h - not found
Does it exist on your system? It should be in /usr/include/pthread.h Yes, it's there.
|
|
|
|
equipoise
|
|
May 03, 2014, 11:51:59 AM |
|
Does not make sense that this file would be missing: -- Looking for include file pthread.h - not found
Does it exist on your system? It should be in /usr/include/pthread.h Yes, it's there. I had this problem both in windows compile and in linux. It comes from boost not properly installed or wrong version.
|
|
|
|
Quanttek
Member
Offline
Activity: 93
Merit: 10
|
|
May 03, 2014, 12:20:08 PM |
|
I just downloaded the latest Binaries and now getting this error: 2014-May-03 13:50:01.252467 ERROR c:\temp\bytecoin\latest\bitmonero-master\src\p 2p\net_node.inl:246 UPNP_AddPortMapping failed. Which ports do I need to forward to resolve this problem? And a 2nd problem at my server:When I start bitmonerod, I get this error: quanttek@lvps91-250-98-118:~/monero$ ./bitmonerod ./bitmonerod: /lib/libm.so.6: version `GLIBC_2.15' not found (required by ./bitmonerod) ./bitmonerod: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.18' not found (required by ./bitmonerod) ./bitmonerod: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.14' not found (required by ./bitmonerod) ./bitmonerod: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by ./bitmonerod) ./bitmonerod: /lib/libc.so.6: version `GLIBC_2.15' not found (required by ./bitmonerod) ./bitmonerod: /lib/libc.so.6: version `GLIBC_2.14' not found (required by ./bitmonerod)
|
Enthusiast. Neither trader, nor miner and also no big investor. Community Manager for Monero PM if you need mine to exchange or anti-cheat algorithm for node-cryptonote-pool
|
|
|
|