Bitcoin Forum
May 05, 2024, 07:35:29 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 [31] 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 ... 2123 »
  Print  
Author Topic: [XMR] Monero - A secure, private, untraceable cryptocurrency  (Read 4667224 times)
GreekBitcoin
Legendary
*
Offline Offline

Activity: 1428
Merit: 1001


getmonero.org


View Profile WWW
May 03, 2014, 07:15:13 AM
 #601

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...
1714894529
Hero Member
*
Offline Offline

Posts: 1714894529

View Profile Personal Message (Offline)

Ignore
1714894529
Reply with quote  #2

1714894529
Report to moderator
The Bitcoin network protocol was designed to be extremely flexible. It can be used to create timed transactions, escrow transactions, multi-signature transactions, etc. The current features of the client only hint at what will be possible in the future.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714894529
Hero Member
*
Offline Offline

Posts: 1714894529

View Profile Personal Message (Offline)

Ignore
1714894529
Reply with quote  #2

1714894529
Report to moderator
1714894529
Hero Member
*
Offline Offline

Posts: 1714894529

View Profile Personal Message (Offline)

Ignore
1714894529
Reply with quote  #2

1714894529
Report to moderator
1714894529
Hero Member
*
Offline Offline

Posts: 1714894529

View Profile Personal Message (Offline)

Ignore
1714894529
Reply with quote  #2

1714894529
Report to moderator
eizh
Hero Member
*****
Offline Offline

Activity: 560
Merit: 500



View Profile
May 03, 2014, 07:24:25 AM
 #602

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.
blaaaaacksuit
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250

Who cares?


View Profile
May 03, 2014, 07:29:03 AM
 #603

Does anyone know how many coins are currently in circulation?
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
May 03, 2014, 07:33:18 AM
 #604

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")
smooth
Legendary
*
Offline Offline

Activity: 2968
Merit: 1198



View Profile
May 03, 2014, 07:34:34 AM
 #605

Does anyone know how many coins are currently in circulation?

Slightly below 400k.
mickey_miner
Sr. Member
****
Offline Offline

Activity: 910
Merit: 250


Proof-of-Stake Blockchain Network


View Profile
May 03, 2014, 08:43:20 AM
 #606

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
Hero Member
*****
Offline Offline

Activity: 560
Merit: 500



View Profile
May 03, 2014, 08:51:52 AM
 #607

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
mkmen
Full Member
***
Offline Offline

Activity: 157
Merit: 100



View Profile
May 03, 2014, 09:17:02 AM
 #608

For some reason I'm not able to compile latest source on fresh VM with ubuntu 13.10.

http://pastebin.com/dpUqrzkm

Any hints?
Xdragon
Hero Member
*****
Offline Offline

Activity: 543
Merit: 500


View Profile
May 03, 2014, 10:09:30 AM
Last edit: May 03, 2014, 11:04:59 AM by Xdragon
 #609

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. Smiley 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 Offline

Activity: 952
Merit: 1000


Stagnation is Death


View Profile WWW
May 03, 2014, 11:14:21 AM
 #610

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 Offline

Activity: 2968
Merit: 1198



View Profile
May 03, 2014, 11:17:31 AM
 #611

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 Offline

Activity: 2968
Merit: 1198



View Profile
May 03, 2014, 11:18:38 AM
 #612

For some reason I'm not able to compile latest source on fresh VM with ubuntu 13.10.

http://pastebin.com/dpUqrzkm

Any hints?

I'm not sure what you are missing. Did you install build-essential and boost-all-dev?

mkmen
Full Member
***
Offline Offline

Activity: 157
Merit: 100



View Profile
May 03, 2014, 11:28:00 AM
 #613

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
Hero Member
*****
Offline Offline

Activity: 543
Merit: 500


View Profile
May 03, 2014, 11:28:57 AM
 #614

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 Offline

Activity: 2128
Merit: 1120



View Profile
May 03, 2014, 11:30:14 AM
 #615

For some reason I'm not able to compile latest source on fresh VM with ubuntu 13.10.
http://pastebin.com/dpUqrzkm
Any hints?

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 Offline

Activity: 2968
Merit: 1198



View Profile
May 03, 2014, 11:39:12 AM
 #616

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:

Code:
-- Looking for include file pthread.h - not found

Does it exist on your system? It should be in /usr/include/pthread.h
coa032
Hero Member
*****
Offline Offline

Activity: 602
Merit: 500


View Profile
May 03, 2014, 11:41:27 AM
 #617

WTB 350 MRO for 0.11 BTC...it is not fixed price,we can make a deal
mkmen
Full Member
***
Offline Offline

Activity: 157
Merit: 100



View Profile
May 03, 2014, 11:47:18 AM
 #618

Does not make sense that this file would be missing:

Code:
-- 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
Hero Member
*****
Offline Offline

Activity: 794
Merit: 1000


Monero (XMR) - secure, private, untraceable


View Profile WWW
May 03, 2014, 11:51:59 AM
 #619

Does not make sense that this file would be missing:

Code:
-- 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.

About me | zRMicroArray - phase 2 - Gene Expression Analysis software | [Weed Like to Talk - Bulgaria] Start a wave of cannabis seminars in Europe | Monero weighted average price stats: moneroprice.i2p
BTC: 1KoCX7TWKVGwqmmFw3CKyUSrKRSStueZar | NMC: NKhYEYpe1Le9MwHrwKsdSm5617J4toVar9 | XMR (Tip me a beer OpenAlias Monero address): tip.changetheworldwork.com
[XMR] Monero - A secure, private, untraceable cryptocurrency: 4AyRmUcxzefB5quumzK3HNE4zmCiGc8vhG6fE1oJpGVyVZF7fvDgSpt3MzgLfQ6Q1719xQhmfkM9Z2u NXgDMqYhjJVmc6KX
Quanttek
Member
**
Offline Offline

Activity: 93
Merit: 10


View Profile
May 03, 2014, 12:20:08 PM
 #620

I just downloaded the latest Binaries and now getting this error:
Code:
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:
Code:
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
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 [31] 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 ... 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!