Author

Topic: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] - page 585. (Read 2376034 times)

hero member
Activity: 756
Merit: 501
ok, i ran that code trying it for the Pine64.  I still got the -msse2 error, so i commented that line out.  the project built (it did take a while, it was running before i posted the last comment).

My problem is that nothing happens when i try to run the magid executable.  no error, the program does seem to open, its not listed in task manager, etc.  oh well.  i may have to wait for the "official" pine64/arm build
You need to tell it to start...  Wink

IIRC it should be
Code:
./magid start
legendary
Activity: 1750
Merit: 1005
U guys have slack.
I've searched and found the following link setup by lionheart78  

https://coinmagi.slack.com/

Not sure how to join - is it invite only?

Yes, this is the slack for magi. I'll get it into the OP.

111magic, I guess you're the manager, would we need invitation to join? Any guide will be great.
I will look into that and post the info here.
legendary
Activity: 1190
Merit: 1009
Coin of the Magi!
Who can make a good roadmap? Joe?
I can help here if needed - but will need to know the main points - is there anything like a slack group for Magi, so these topics can be discussed in real-time? I can help set one up if you guys agree we need one.

Bear with me..
legendary
Activity: 1190
Merit: 1009
Coin of the Magi!
U guys have slack.
I've searched and found the following link setup by lionheart78  

https://coinmagi.slack.com/

Not sure how to join - is it invite only?

Yes, this is the slack for magi. I'll get it into the OP.

111magic, I guess you're the manager, would we need invitation to join? Any guide will be great.
legendary
Activity: 1190
Merit: 1009
Coin of the Magi!
The logo looks simple, yet gives a cleaner image of Coin Magi itself. I like it due to the simplicity of the same, while at the same time delivering a colorful appearance, that it is sort of eye catching.

If I were to vote for a new logo for Coin Magi, that would be the blue one. I kinda of miss the II symbol which appeared on the original logo, which helped reflect Coin Magi's unique PoS II, but even still, it looks nice.

Nevertheless, I'm looking forward for the new release of the Magi wallet, as well as more exciting stuff like the logo, to help increase Coin Magi's popularity and value.  Grin

Thanks for the feedback; I'll see how it looks like by squeezing in a II.
legendary
Activity: 1190
Merit: 1009
Coin of the Magi!
ok, i ran that code trying it for the Pine64.  I still got the -msse2 error, so i commented that line out.  the project built (it did take a while, it was running before i posted the last comment).

My problem is that nothing happens when i try to run the magid executable.  no error, the program does seem to open, its not listed in task manager, etc.  oh well.  i may have to wait for the "official" pine64/arm build

Yeah, guess so. I'll get one and try to sort out a binary (and Pi too) as you're badly looking forward to it.  Cheesy
newbie
Activity: 20
Merit: 0
ok, i ran that code trying it for the Pine64.  I still got the -msse2 error, so i commented that line out.  the project built (it did take a while, it was running before i posted the last comment).

My problem is that nothing happens when i try to run the magid executable.  no error, the program does seem to open, its not listed in task manager, etc.  oh well.  i may have to wait for the "official" pine64/arm build
newbie
Activity: 20
Merit: 0
Thanks my9bot!  does that create the miner daemon, or the wallet?  I am looking to just have the wallet


I have been with magi for over a year, I can probably wait longer!
I am just looking to run the wallet so I can have a node going on my Pine64.  Its small, and low power, so it could be really good for that.
I tried making it myself with the git repository files, but I ended up getting an unknown switch error (i think it was -msse2, or something like that)


I'm planning at some point to make a pi build - not sure if that will help with a Pine64 or not.

Magi price is looking very nice today

Build your MagiCoin XMG Wallet
tested at pi2

Code:
sudo apt-get update
sudo apt-get upgrade

sudo apt-get install -y gcc-4.9 g++-4.9
sudo apt-get install -y libgmp-dev libcurl4-openssl-dev libjansson-dev git

sudo apt-get install -y libdb5.3-dev libdb5.3++-dev
sudo apt-get install -y libboost-all-dev
sudo apt-get install -y libqrencode-dev
sudo apt-get install -y libminiupnpc-dev libminiupnpc

for v1.3.0-RC :
Code:
BRANCH="1.3.0rc"
mkdir $BRANCH
cd $BRANCH
git init
git remote add -t $BRANCH -f origin https://github.com/magi-project/magi.git
git checkout $BRANCH

cd src/

Now edit your makefile.unix
goto line 108 :

Code:
ifeq ($(xCPUARCH),armv7l)

and replace it with :

Code:
ifeq ($(xCPUARCH),armv7l)
xCXXFLAGS+=-Ofast -mcpu=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard

now build magid with :
Code:
make -f makefile.unix xCPUARCH=armv7l
legendary
Activity: 1484
Merit: 1029
...Pi BUILD INSTRUCTIONS SNIPPED...
Thank you very much for that My9bot - I've bookmarked this page for when I get around to the build =)
legendary
Activity: 1750
Merit: 1005
Shit happens, lesson learnt.  Smiley
Yes thats right. I learnt the lessons with keeping the coins on exchanges like Cryptsy.  Shocked
hero member
Activity: 756
Merit: 501
Shit happens, lesson learnt.  Smiley
legendary
Activity: 1750
Merit: 1005
FYI around 20k XMG were lost when my hard drive crashed. Make backups! Wink

edit: Or was it 2k? Not sure anymore, which is the worst...  Grin
Wow. I'am very sorry to hear that. Indeed its very important to make backups.
hero member
Activity: 756
Merit: 501
FYI around 20k XMG were lost when my hard drive crashed. Make backups! Wink

edit: Or was it 2k? Not sure anymore, which is the worst...  Grin
full member
Activity: 239
Merit: 100
I have been with magi for over a year, I can probably wait longer!
I am just looking to run the wallet so I can have a node going on my Pine64.  Its small, and low power, so it could be really good for that.
I tried making it myself with the git repository files, but I ended up getting an unknown switch error (i think it was -msse2, or something like that)


I'm planning at some point to make a pi build - not sure if that will help with a Pine64 or not.

Magi price is looking very nice today

Build your MagiCoin XMG Wallet
tested at pi2

Code:
sudo apt-get update
sudo apt-get upgrade

sudo apt-get install -y gcc-4.9 g++-4.9
sudo apt-get install -y libgmp-dev libcurl4-openssl-dev libjansson-dev git

sudo apt-get install -y libdb5.3-dev libdb5.3++-dev
sudo apt-get install -y libboost-all-dev
sudo apt-get install -y libqrencode-dev
sudo apt-get install -y libminiupnpc-dev libminiupnpc

for v1.3.0-RC :
Code:
BRANCH="1.3.0rc"
mkdir $BRANCH
cd $BRANCH
git init
git remote add -t $BRANCH -f origin https://github.com/magi-project/magi.git
git checkout $BRANCH

cd src/

Now edit your makefile.unix
goto line 108 :

Code:
ifeq ($(xCPUARCH),armv7l)

and replace it with :

Code:
ifeq ($(xCPUARCH),armv7l)
xCXXFLAGS+=-Ofast -mcpu=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard

now build magid with :
Code:
make -f makefile.unix xCPUARCH=armv7l
legendary
Activity: 1470
Merit: 1010
Join The Blockchain Revolution In Logistics
re: ◥◣ TALK◥◣ suggested POS coins

XMG ... stop bye, say "hello planet!"

you all need a rep Wink

https://bitcointalksearch.org/topic/talk-suggested-pos-coins-1718048
legendary
Activity: 1484
Merit: 1029
I have been with magi for over a year, I can probably wait longer!
I am just looking to run the wallet so I can have a node going on my Pine64.  Its small, and low power, so it could be really good for that.
I tried making it myself with the git repository files, but I ended up getting an unknown switch error (i think it was -msse2, or something like that)


I'm planning at some point to make a pi build - not sure if that will help with a Pine64 or not.

Magi price is looking very nice today
newbie
Activity: 20
Merit: 0
I have been with magi for over a year, I can probably wait longer!
I am just looking to run the wallet so I can have a node going on my Pine64.  Its small, and low power, so it could be really good for that.
I tried making it myself with the git repository files, but I ended up getting an unknown switch error (i think it was -msse2, or something like that)

Has anyone tried running this on a Pine64?  I have one with ROKOS v7 on it, and have successfully got it to attach to a NAS for a bitcoin node, and now i would like to do the same for a magicoin node.  When i download the wallet from the website, it does not actually seem to open for me.  Suggestions to make it open?

I guess there isn't well established process of running magi on Pine64. I recommend either compiling the daemon from source, or if you could stick to magi that far, I'll get this issue sorted out in the near future.
full member
Activity: 173
Merit: 151
thanks Smiley i've been running it for several months though, with enough connections.
but now it's stuck/forked - so will have to re-sync the chain. a bootstrap would be very helpful
Sorry, I understand you now -

Will this link to a blockchain download help you?

http://coinmagi.org/bin/block-chain/

that did the trick, it's synced and staking Grin thank you very much!

Great to hear - I wish you happy staking!

I'm using the following settings in my magi.conf which stops me from having to use coin control to keep my staking weight up - might be useful to you - some other people on here tweak them differently
Code:
# posii=0 to disable PoS staking; default = 1
posii=1
# Transaction under stake with a value greater than the threshold is being splitted
stakesplitthreshold=150
# Transactions with values less than the threshold will combine into one
stakecombinethreshold=74

I use posii=0 to ensure the blockchain is fully synced before staking, you can fork if staking when syncing. Just allow the chain to sync after starting the wallet , get the green checkmark in the qt wallet, then enable staking.
legendary
Activity: 3220
Merit: 1363
www.Crypto.Games: Multiple coins, multiple games
While this sounds secondary, I'd post preliminary switch of logo to a new version (blue the primary) for clarity and simplicity: 





I propose in all of the situations where logos are used a switch should be done. Pls help to spread the words.

Here is a link to png files: http://coinmagi.org/files/logo/v2/, where you can also find the .svg. You're very welcome to improve / design logos.

@goldlabel, initial logo pngs will be remained here: http://coinmagi.org/files/logo/v1/



The logo looks simple, yet gives a cleaner image of Coin Magi itself. I like it due to the simplicity of the same, while at the same time delivering a colorful appearance, that it is sort of eye catching.

If I were to vote for a new logo for Coin Magi, that would be the blue one. I kinda of miss the II symbol which appeared on the original logo, which helped reflect Coin Magi's unique PoS II, but even still, it looks nice.

Nevertheless, I'm looking forward for the new release of the Magi wallet, as well as more exciting stuff like the logo, to help increase Coin Magi's popularity and value.  Grin
legendary
Activity: 1484
Merit: 1029
thanks Smiley i've been running it for several months though, with enough connections.
but now it's stuck/forked - so will have to re-sync the chain. a bootstrap would be very helpful
Sorry, I understand you now -

Will this link to a blockchain download help you?

http://coinmagi.org/bin/block-chain/

that did the trick, it's synced and staking Grin thank you very much!

Great to hear - I wish you happy staking!

I'm using the following settings in my magi.conf which stops me from having to use coin control to keep my staking weight up - might be useful to you - some other people on here tweak them differently
Code:
# posii=0 to disable PoS staking; default = 1
posii=1
# Transaction under stake with a value greater than the threshold is being splitted
stakesplitthreshold=150
# Transactions with values less than the threshold will combine into one
stakecombinethreshold=74
Jump to: