Author

Topic: [XMR] Monero - A secure, private, untraceable cryptocurrency - page 2097. (Read 4670972 times)

sr. member
Activity: 560
Merit: 250
"Trading Platform of The Future!"
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-tutorial

When 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?

Code:
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
Code:
    set(ARCH_FLAG "-march=corei7")
sr. member
Activity: 280
Merit: 250
Who cares?
Does anyone know how many coins are currently in circulation?
hero member
Activity: 560
Merit: 500
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-tutorial

When 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.
legendary
Activity: 1428
Merit: 1001
getmonero.org
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-tutorial

When 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?

Code:
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...
hero member
Activity: 655
Merit: 500
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-tutorial

When 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?

Code:
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
sr. member
Activity: 280
Merit: 250
Who cares?
I created a new wallet and typed exit.  Restarted simplewallet.exe with the "--wallet mywallet.bin" arguments but it just prints out how it cant find mywallet.keys file.  I'm looking right at the mywallet.keys file that was created, is there some special place I have to put it?  This is Win 7 64 I'm running.

Is your wallet called mywallet.bin or mywallet? The keys file is whatever name you give it plus .keys.



Ok I figured it out, I didn't type save after creating and refreshing my wallet.  Thanks anyway smooth. 
legendary
Activity: 2968
Merit: 1198
I created a new wallet and typed exit.  Restarted simplewallet.exe with the "--wallet mywallet.bin" arguments but it just prints out how it cant find mywallet.keys file.  I'm looking right at the mywallet.keys file that was created, is there some special place I have to put it?  This is Win 7 64 I'm running.

Is your wallet called mywallet.bin or mywallet? The keys file is whatever name you give it plus .keys.

sr. member
Activity: 280
Merit: 250
Who cares?
I created a new wallet and typed exit.  Restarted simplewallet.exe with the "--wallet mywallet.bin" arguments but it just prints out how it cant find mywallet.keys file.  I'm looking right at the mywallet.keys file that was created, is there some special place I have to put it?  This is Win 7 64 I'm running.
hero member
Activity: 560
Merit: 500

Is your bitmonerod program still downloading the blockchain? Has it said synchronized ok?
Yes, I downloaded https://mega.co.nz/#!WVZ2RZwI!um6D8jSVw618P6NmgQeLtrkB1dUJXIjcpylIjO-P7sk
And place in %AppData%/bitmonero
What I have not done? Thank you in advance for your help


That's 3 days behind so you may need to wait longer to sync up to the present time. When the sync is finished, there will be a bunch of green text saying SYNCHRONIZED OK. We're currently at block 22160. To check how far you've synced, type print_block 50000 (or any number larger than the current block) in the bitmonerod terminal (not the wallet).

I'll update the blockchain uploads tomorrow.
full member
Activity: 126
Merit: 100

Is your bitmonerod program still downloading the blockchain? Has it said synchronized ok?
Yes, I downloaded https://mega.co.nz/#!WVZ2RZwI!um6D8jSVw618P6NmgQeLtrkB1dUJXIjcpylIjO-P7sk
And place in %AppData%/bitmonero
What I have not done? Thank you in advance for your help
sr. member
Activity: 560
Merit: 250
"Trading Platform of The Future!"
Hello.
My OS is Windows7 64.
When i run wallet i see "Error: refresh failed, daemon is busy. Please try later. Block received: 0"
What am I doing wrong.
You have to wait for the daemon to sync with the network.
newbie
Activity: 56
Merit: 0
Hello.
My OS is Windows7 64.
When i run wallet i see "Error: refresh failed, daemon is busy. Please try later. Block received: 0"
What am I doing wrong.

Is your bitmonerod program still downloading the blockchain? Has it said synchronized ok?
full member
Activity: 126
Merit: 100
Hello.
My OS is Windows7 64.
When i run wallet i see "Error: refresh failed, daemon is busy. Please try later. Block received: 0"
What am I doing wrong.
newbie
Activity: 56
Merit: 0
Listed us here:

https://www.swaphole.com/#!voting

Make sure to copy and paste because btctalk breaks the link if there's a # in there.

Also, if you haven't voted in a while here's another link bump: https://comkort.com/vote
legendary
Activity: 1484
Merit: 1005
Quote
I've been reading your MC2 thread. It's impressive to speak little of it. As far as bad situations go, I'm glad you were who we have now. The incredible amount of help and time you, and everyone else, have put forth is nothing small. If I didn't feel like the MRO would be worth something some day I'd send it all to you guys Smiley

I'm sorry if I neglected to mention that the major hook into this, apart from the badass protocol, are the people that it has brought toward it. You, NoodleDoodle, Smooth, Othe, David Latapie, eizh are the reason that this will succeed in my mind. Not just a gui or pool.

That I can come here every day and you guys are posting is more than a reassurance for me. You guys even showed me how to install this on ubuntu, which I'm coming to see is a great alternative to windows.

I'm sure, under your combined leadership, that I will very soon be coming to this thread and seeing hundreds of posts from many new people pouring in.
Thanks for the kind words. This has been the first thing I've really been excited about since mining Tenebrix/Litecoin back when their genesis blocks came out and I'm happy to give the project as much spare time as I possible can on top of my full-time work on MC2.
legendary
Activity: 2968
Merit: 1198
I do have a newbie question though, why can't someone compile the linux source? Why is it better to compile linux version yourself, but we all trust windows binaries?

GCC often has architecture specific optimizations when compiling, so it tends to be faster if you build yourself.

Compiling on Windows tends to be a pain in the ass, so we recommend people just use the binaries.

It is possible to build separate Windows binaries for different architectures (Nehalem, Haswell, etc) that will perform better on the corresponding hardware but as you say its a pain in the ass to build all these and keep them updated whenever there is a patch, so I can't blame anyone for not doing it. It's nice that Windows binaries get built at all.

However, if someone wants to step up and build (and maintain) a bunch of these different binaries, I'm sure the community would be grateful.
newbie
Activity: 56
Merit: 0
I've been reading your MC2 thread. It's impressive to speak little of it. As far as bad situations go, I'm glad you were who we have now. The incredible amount of help and time you, and everyone else, have put forth is nothing small. If I didn't feel like the MRO would be worth something some day I'd send it all to you guys Smiley

I'm sorry if I neglected to mention that the major hook into this, apart from the badass protocol, are the people that it has brought toward it. You, NoodleDoodle, Smooth, Othe, David Latapie, eizh are the reason that this will succeed in my mind. Not just a gui or pool.

That I can come here every day and you guys are posting is more than a reassurance for me. You guys even showed me how to install this on ubuntu, which I'm coming to see is a great alternative to windows.

I'm sure, under your combined leadership, that I will very soon be coming to this thread and seeing hundreds of posts from many new people pouring in.
hero member
Activity: 655
Merit: 500
I do have a newbie question though, why can't someone compile the linux source? Why is it better to compile linux version yourself, but we all trust windows binaries?

GCC often has architecture specific optimizations when compiling, so it tends to be faster if you build yourself.

Compiling on Windows tends to be a pain in the ass, so we recommend people just use the binaries.

Ok thanks, that makes sense.
legendary
Activity: 1484
Merit: 1005
I do have a newbie question though, why can't someone compile the linux source? Why is it better to compile linux version yourself, but we all trust windows binaries?

GCC often has architecture specific optimizations when compiling, so it tends to be faster if you build yourself.

Compiling on Windows tends to be a pain in the ass, so we recommend people just use the binaries.
legendary
Activity: 1484
Merit: 1005
How many Monero are currently in circulation?

~400k of 18.45m
Jump to: