Bitcoin Forum
May 05, 2024, 03:10:56 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 »
  Print  
Author Topic: [ANN] [EMD] - Emerald Crypto - PoW - Scrypt - low Difficulty - CPU mining  (Read 96672 times)
mintminty59
Full Member
***
Offline Offline

Activity: 139
Merit: 100



View Profile
June 25, 2017, 04:24:16 PM
 #641

My unbuntu wont let me install it, how did you solve it?

1714878656
Hero Member
*
Offline Offline

Posts: 1714878656

View Profile Personal Message (Offline)

Ignore
1714878656
Reply with quote  #2

1714878656
Report to moderator
Every time a block is mined, a certain amount of BTC (called the subsidy) is created out of thin air and given to the miner. The subsidy halves every four years and will reach 0 in about 130 years.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714878656
Hero Member
*
Offline Offline

Posts: 1714878656

View Profile Personal Message (Offline)

Ignore
1714878656
Reply with quote  #2

1714878656
Report to moderator
1714878656
Hero Member
*
Offline Offline

Posts: 1714878656

View Profile Personal Message (Offline)

Ignore
1714878656
Reply with quote  #2

1714878656
Report to moderator
1714878656
Hero Member
*
Offline Offline

Posts: 1714878656

View Profile Personal Message (Offline)

Ignore
1714878656
Reply with quote  #2

1714878656
Report to moderator
Spidersbox
Legendary
*
Offline Offline

Activity: 1294
Merit: 1039


View Profile
June 25, 2017, 04:38:08 PM
 #642

My unbuntu wont let me install it, how did you solve it?
Mostly I work on older versions of ubuntu ...
try sudo apt-get install libboost-all-dev
Spidersbox
Legendary
*
Offline Offline

Activity: 1294
Merit: 1039


View Profile
June 25, 2017, 04:39:55 PM
 #643

My unbuntu wont let me install it, how did you solve it?
Mostly I work on older versions of ubuntu ...
try sudo apt-get install libboost-all-dev
if you get error: undefined macro: AC_PROG_LIBTOOL
try sudo apt-get install libtool
mintminty59
Full Member
***
Offline Offline

Activity: 139
Merit: 100



View Profile
June 25, 2017, 04:51:49 PM
 #644

My unbuntu wont let me install it, how did you solve it?
Mostly I work on older versions of ubuntu ...
try sudo apt-get install libboost-all-dev
if you get error: undefined macro: AC_PROG_LIBTOOL
try sudo apt-get install libtool

That installs a higher version thats the issue.

Spidersbox
Legendary
*
Offline Offline

Activity: 1294
Merit: 1039


View Profile
June 25, 2017, 04:54:26 PM
 #645

My unbuntu wont let me install it, how did you solve it?
Mostly I work on older versions of ubuntu ...
try sudo apt-get install libboost-all-dev
if you get error: undefined macro: AC_PROG_LIBTOOL
try sudo apt-get install libtool

That installs a higher version thats the issue.
oops - I meant sudo apt-get install libboost1.48-all-dev  Smiley
mintminty59
Full Member
***
Offline Offline

Activity: 139
Merit: 100



View Profile
June 25, 2017, 05:13:28 PM
 #646

My unbuntu wont let me install it, how did you solve it?
Mostly I work on older versions of ubuntu ...
try sudo apt-get install libboost-all-dev
if you get error: undefined macro: AC_PROG_LIBTOOL
try sudo apt-get install libtool

That installs a higher version thats the issue.
oops - I meant sudo apt-get install libboost1.48-all-dev  Smiley

Didnt work says package not found .

I then tried this.

Reading state information... Done
E: Unable to locate package libboost1.48-all-dev
E: Couldn't find any package by glob 'libboost1.48-all-dev'
E: Couldn't find any package by regex 'libboost1.48-all-dev'


mkdir ~/Desktop/boost_build && cd ~/Desktop/boost_build && \
wget http://sourceforge.net/projects/boost/files/boost/1.48.0/boost_1_48_0.tar.gz && \
tar xvf boost_1_48_0.tar.gz && cd boost_1_48_0 && \
sed -i_bak -e 's#PREFIX=/usr/local#PREFIX=/opt#' -e 's#LIBDIR=#LIBDIR=/opt/boost/lib#' \
-e 's#INCLUDEDIR=#INCLUDEDIR=/opt/boost/include#' bootstrap.sh && \
./bootstrap.sh && ./b2 && \
sudo ./bjam install

it compiled ok, but deamon still fails at same point

Spidersbox
Legendary
*
Offline Offline

Activity: 1294
Merit: 1039


View Profile
June 25, 2017, 05:34:03 PM
 #647

I then tried this.

Reading state information... Done
E: Unable to locate package libboost1.48-all-dev
E: Couldn't find any package by glob 'libboost1.48-all-dev'
E: Couldn't find any package by regex 'libboost1.48-all-dev'


mkdir ~/Desktop/boost_build && cd ~/Desktop/boost_build && \
wget http://sourceforge.net/projects/boost/files/boost/1.48.0/boost_1_48_0.tar.gz && \
tar xvf boost_1_48_0.tar.gz && cd boost_1_48_0 && \
sed -i_bak -e 's#PREFIX=/usr/local#PREFIX=/opt#' -e 's#LIBDIR=#LIBDIR=/opt/boost/lib#' \
-e 's#INCLUDEDIR=#INCLUDEDIR=/opt/boost/include#' bootstrap.sh && \
./bootstrap.sh && ./b2 && \
sudo ./bjam install

it compiled ok, but deamon still fails at same point
you have to tell the compiler the new location of the boost file.
something like:
CPPFLAGS="-I/opt/boost/include/boost"
LDFLAGS="-L/opt/boost/lib"
mintminty59
Full Member
***
Offline Offline

Activity: 139
Merit: 100



View Profile
June 25, 2017, 05:44:30 PM
 #648

God this is fustrteing


Nope still same, I even used deb from archive.ubuntu.com

It still defaults to 1.58 I am totally stumped and close to giving up

Spidersbox
Legendary
*
Offline Offline

Activity: 1294
Merit: 1039


View Profile
June 25, 2017, 05:49:17 PM
 #649

God this is fustrteing


Nope still same, I even used deb from archive.ubuntu.com

It still defaults to 1.58 I am totally stumped and close to giving up
Never give up, Never surrender!

ok - try:
sudo add-apt-repository universe
sudo apt-get update
sudo apt-get install libboost1.48-all-dev
mintminty59
Full Member
***
Offline Offline

Activity: 139
Merit: 100



View Profile
June 25, 2017, 05:52:40 PM
 #650

Nope

david@david:~/emerald$ sudo add-apt-repository universe
'universe' distribution component is already enabled for all sources.
david@david:~/emerald$ sudo apt-get update
Hit:1 http://gb.archive.ubuntu.com/ubuntu zesty InRelease
Get:2 http://security.ubuntu.com/ubuntu zesty-security InRelease [89.2 kB]
Get:3 http://gb.archive.ubuntu.com/ubuntu zesty-updates InRelease [89.2 kB]
Hit:4 http://cz.archive.ubuntu.com/ubuntu xenial InRelease
Get:5 http://gb.archive.ubuntu.com/ubuntu zesty-backports InRelease [89.2 kB]
Hit:6 https://deb.nodesource.com/node_8.x zesty InRelease
Fetched 268 kB in 0s (324 kB/s)
Reading package lists... Done
david@david:~/emerald$ sudo apt-get install libboost1.48-all-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libboost1.48-all-dev
E: Couldn't find any package by glob 'libboost1.48-all-dev'
E: Couldn't find any package by regex 'libboost1.48-all-dev'
david@david:~/emerald$

Spidersbox
Legendary
*
Offline Offline

Activity: 1294
Merit: 1039


View Profile
June 25, 2017, 05:58:06 PM
 #651

humm,
What version of Ububtu are you using?
32 or 64 bit ?
mintminty59
Full Member
***
Offline Offline

Activity: 139
Merit: 100



View Profile
June 25, 2017, 06:00:38 PM
 #652

64 bit

Spidersbox
Legendary
*
Offline Offline

Activity: 1294
Merit: 1039


View Profile
June 25, 2017, 06:06:05 PM
 #653

64 bit
if desktop, click system settings, then details.
if server lsb_release -a

which ubuntu version ??

I'll set up the same and see what the problem is so others can compile it also.

I'll compile ubuntu versions and make them available for download also for users who do not want to go through this ...
mintminty59
Full Member
***
Offline Offline

Activity: 139
Merit: 100



View Profile
June 25, 2017, 06:16:29 PM
 #654

64 bit
if desktop, click system settings, then details.
if server lsb_release -a

which ubuntu version ??

I'll set up the same and see what the problem is so others can compile it also.

I'll compile ubuntu versions and make them available for download also for users who do not want to go through this ...

No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 17.04
Release:        17.04
Codename:       zesty


I think I have borked this install now, I think I have to start again perhaps I removed boost 1.62 but the default one 1.58 is still there. I have no idea how to uninstall this.

mdnajir
Full Member
***
Offline Offline

Activity: 196
Merit: 100



View Profile
June 25, 2017, 06:21:42 PM
 #655

Hello everybody will associateyone shrewdness I will get an updated blockchain for this coin to adjust my wallet? Please let American state apprehend thanks tinny
Spidersbox
Legendary
*
Offline Offline

Activity: 1294
Merit: 1039


View Profile
June 25, 2017, 06:38:19 PM
 #656

64 bit
if desktop, click system settings, then details.
if server lsb_release -a

which ubuntu version ??

I'll set up the same and see what the problem is so others can compile it also.

I'll compile ubuntu versions and make them available for download also for users who do not want to go through this ...

No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 17.04
Release:        17.04
Codename:       zesty


I think I have borked this install now, I think I have to start again perhaps I removed boost 1.62 but the default one 1.58 is still there. I have no idea how to uninstall this.
most the time you can:
sudo apt-get remove --purge (then the package name)

sometimes you can :
sudo apt-get autoremove

for the one you manually downloaded and built - you just remove the directories:
just looking at http://lists.boost.org/boost-users/2005/01/9444.php which says to delete /usr/local/lib/libboost* and /usr/local/include/boost
(adjust paths to where you installed)
Spidersbox
Legendary
*
Offline Offline

Activity: 1294
Merit: 1039


View Profile
June 25, 2017, 06:42:36 PM
 #657

Hello everybody will associateyone shrewdness I will get an updated blockchain for this coin to adjust my wallet? Please let American state apprehend thanks tinny
I think you are looking for this: http://www.emeraldcrypto.de/
mintminty59
Full Member
***
Offline Offline

Activity: 139
Merit: 100



View Profile
June 25, 2017, 07:12:08 PM
 #658

I started again and downloaded Ubuntu 14

now this happens

-lboost_filesystem -lboost_program_options -lboost_thread -lQtGui -lQtCore -lpthread
/usr/bin/ld: cannot find -loleaut32
collect2: error: ld returned 1 exit status
make: *** [emerald-qt] Error 1


I am going to scream

pazor_true
Legendary
*
Offline Offline

Activity: 1460
Merit: 1025


i love Emerald (EMD)


View Profile
June 25, 2017, 07:22:27 PM
 #659

I started again and downloaded Ubuntu 14

now this happens

-lboost_filesystem -lboost_program_options -lboost_thread -lQtGui -lQtCore -lpthread
/usr/bin/ld: cannot find -loleaut32
collect2: error: ld returned 1 exit status
make: *** [emerald-qt] Error 1


I am going to scream

what if you try to run a debian 8 (64bit) linux ?

BTC 12jiBjT2GSWYk2HwYdPqsQMuLqZ1br9D37 - i am Pazor
pazor_true
Legendary
*
Offline Offline

Activity: 1460
Merit: 1025


i love Emerald (EMD)


View Profile
June 25, 2017, 07:23:47 PM
 #660

I started again and downloaded Ubuntu 14

now this happens

-lboost_filesystem -lboost_program_options -lboost_thread -lQtGui -lQtCore -lpthread
/usr/bin/ld: cannot find -loleaut32
collect2: error: ld returned 1 exit status
make: *** [emerald-qt] Error 1


I am going to scream

or you try to run the dockerfile provided on
    https://github.com/wetrust/EmeraldCryptoCoin

BTC 12jiBjT2GSWYk2HwYdPqsQMuLqZ1br9D37 - i am Pazor
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 »
  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!