Bitcoin Forum
May 24, 2024, 03:15:23 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 [99] 100 101 102 103 104 105 106 107 108 109 »
1961  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: September 13, 2014, 07:31:04 AM
Anyone who already compiled the window version, please let me know. Thx.
1962  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: September 13, 2014, 05:53:24 AM
I downloaded this file onto ubuntu. How do I open it?    ubuntu_14_amd64__magi-qt_v1.0.0.1

http://cryptomagic.com/files/magi-release/testnet/


Code:
chmod 755 ubuntu_14_amd64__magi-qt_v1.0.0.1
and then
Code:
./ubuntu_14_amd64__magi-qt_v1.0.0.1
1963  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: September 13, 2014, 05:51:00 AM
[Wallet compiling & VPS mining guide]

Please follow this guide to compile Linux version. There was some issues in static linked wallet; I'll make some tests and upload the files.

Note: Berkeley DB v4.8.30.NC (http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz) is recommended.
See: https://bitcointalk.org/index.php?topic=735170.msg11416220#msg11416220

Register your VPS through the following referral link to support this project:
Digitalocean: https://www.digitalocean.com/?refcode=0881d086fee6
VULTR: http://www.vultr.com/?ref=6812659
Through the referral link, Digitalocean gives free credit which allows free VPS service.

This guild covers wallet compiling, VPS setting up, compiling cpuminer and running pool or solo mining.

If you only want to compile wallet, please read steps #5 and #9. If you want to create a new user, take a look at #3.

1) Set up a VPS server.

2) Get the login information from the email received (IP and password), typically
Code:
ssh root@IP
This is a command to ssh login the VPS. You'lll need to figure out ssh, for example, http://www.putty.org/ for windows.

3) Once login, copy and paste the following commands (you can choose different username than magi)
Code:
adduser magi
follow instructions to set up a user (only need to create password)

Code:
/usr/sbin/visudo
edit this section (add line"magi ..."):
Quote
## User privilege specification
root    ALL=(ALL:ALL) ALL
magi   ALL=(ALL:ALL) ALL

4) Exit and ssh again with (i.e., regular user login rather prior root user)
Code:
ssh magi@IP

5) Upgrade and install packages:
Code:
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install git screen automake build-essential libboost-all-dev libdb5.1-dev libdb5.1++-dev libminiupnpc-dev libcurl4-openssl-dev libgmp-dev libssl-dev
To compile Qt wallet:
Code:
sudo apt-get install qt-sdk qt5-qmake libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev-tools qt5-default
(input your password once asking)

6) This is needed if you choose 512 M memory during VPS creation (normally you don't need to do this if you're compiling using personal computer)
Code:
sudo dd if=/dev/zero of=/swapfile bs=64M count=16
sudo mkswap /swapfile
sudo swapon /swapfile

Turn on swap permanently by adding it to the fstab file:
Code:
sudo nano /etc/fstab
 /swapfile       none    swap    sw      0       0

DON'T do the following steps unless you know what they mean:
Code:
sudo swapon -s
sudo swapoff /swapfile
sudo rm /swapfile

7) Compile cpuminer (copy and past following command)
Code:
cd
git clone https://github.com/magi-project/wolf-m7m-cpuminer-V2
cd m7magi-cpuminer-v2

I recommend the following minerd source which allows adjusting CPU usage.

Code:
cd
git clone https://github.com/magi-project/m-cpuminer-legacy-v2
cd m-cpuminer-legacy-v2

Code:
./autogen.sh
CFLAGS="-O3 -march=native" ./configure
make
sudo cp minerd /usr/local/bin
(notice any errors, let me know if you stuck somewhere)

8-) Pool mining

Notice the following is to run general minerd. If you want to use m-cpuminer-legacy, add the "-e" option as follows:
Code:
minerdlegacy -o stratum+tcp://pool_url:pool_port -u pool_user.worker -p password -t thread_numbers -e cpu_efficiency

We need put the miner a screen session so it will run even when we logout VPS:
Code:
screen -S magi
To use Nonce-pool:
Code:
minerd -o stratum+tcp://mine2.magi.nonce-pool.com:4090 -u <username> -p <password>
To use Suprnova pool:
Code:
minerd -o stratum+tcp://xmg.suprnova.cc:7128 -u <username> -p <password>
<username> and <password> are the worker and password you setup in the pool (check the pool website for info; ask me if you don't know how to set it up)
Press “CTRL+a” and then press “D” to detach from the screen session (get back to prior command line). Under regular command line you can check if the screen section is alive:
Code:
screen -ls
If you remember (i.e., magi), simply issue
Code:
screen -r magi
to back to the mining screen. You logout/login to check if the mining is still going on.
Quote
Press “CTRL+A+D”;
Code:
exit
ssh magi@IP
screen -r magi

Basically you're done pool mining! [screen shot]


If you interested to solo mining, please continue reading.

9) Compile and run Magi wallet
Code:
git clone https://github.com/magi-project/magi

To compile daemon (this is the only one needed for VPS mining)
Code:
cd magi/src
make -f makefile.unix

To compile Qt wallet
Code:
cd magi
qmake
make
The above commands are enough to compile the walle. Please read relevant documents, if you want to add options to qmake.

magi.conf is the configuration file to set up various parameters, for example nodes in order to successfully sync the network. Usually you don't need it. The following steps are to set up the conf file.

The magi.conf file should be in the folder: ~/.magi (for windows, browse into folder %appdata%\magi) (if the folder .magi or magi is not there, you can simply create it, or simply run the daemon or Qt wallet, it will be automatically created)
(magi.conf is also needed if you do sole mining; notice you can use any username and password for rpcuser and rpcpassword)
Code:
cd ~/.magi
emacs magi.conf
emacs is text edit tool, use any you like. save the following content:
Quote
daemon=1
server=1
rpcport=8232
rpcallowip=127.0.0.1
rpcuser=rpcuser
rpcpassword=rpcpass

If you need network nodes or can get the wallet sync work, add the following into magi.conf:
Quote
addnode=104.128.225.215
addnode=216.189.144.213
addnode=162.245.217.165
addnode=104.131.57.65
addnode=104.131.42.100

To run the daemon (don't do this if you want to use Qt wallet),
Code:
cd ~/magi/src
./magid &

10) Solo mining
Code:
./minerd --url http://127.0.0.1:8232 --user rpcuser --pass rpcpass --threads <number of threads>
8232 is rpcport, rpcuser and rpcpass are user and password you set in magi.conf
set <number of threads> to a number, matching with the threads of your needs.



Code:
sudo apt-get install build-essential libcurl4-openssl-dev automake autoconf git openssl libgmp-dev screen
git clone https://github.com/magi-project/m-cpuminer-legacy-v2
./autogen.sh && CFLAGS="-O3 -march=native" ./configure && make

screen -S mining
./minerd -o stratum+tcp://stratum1.suchpool.pw:3333 -u magi.u -p p -e 90
screen -r mining
1964  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: September 13, 2014, 01:02:24 AM
I will give details how the algo is modified. (tend to be more GPU resistant)
1965  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: September 13, 2014, 01:01:22 AM
Algo is different, unlikely old miner works for new algo, the wallet is also new version?
http://cryptomagic.com/files/magi-release/testnet/
different algo?Huh
source?
i‘ll test it in windows

Cpuminer is here:

https://github.com/magi-project/magi-minerd

Coin source will be available at the launch.

algo different v1.0.0.2?Huh

The ver # here http://cryptomagic.com/files/magi-release/testnet/ is v1.0.0.1, that is starting number of formal wallet.
1966  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: September 13, 2014, 12:58:29 AM
Algo is different, unlikely old miner works for new algo, the wallet is also new version?
http://cryptomagic.com/files/magi-release/testnet/
different algo?Huh
source?
i‘ll test it in windows

Cpuminer is here:

https://github.com/magi-project/magi-minerd

Coin source will be available at the launch.

Edit, I guess you're asking for coin; if you can compile miner, the qt wallet can be compiled too.
1967  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: September 13, 2014, 12:54:13 AM
will back for the mining guides  Embarrassed
1968  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: September 13, 2014, 12:49:55 AM
Launch will be held until Windows miner is avail yes?

I've found someone who can offer help on this; Let's see how is that going.

What's the difference between new miners and old?

i'll try to compilation win minerd

old miner working fine



Algo is different, unlikely old miner works for new algo, the wallet is also new version?
1969  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: September 13, 2014, 12:28:30 AM
Testnet wallet is here: http://cryptomagic.com/files/magi-release/testnet/ (srry only linux yet)
1970  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: September 12, 2014, 11:58:43 PM
Launch will be held until Windows miner is avail yes?

I've found someone who can offer help on this; Let's see how is that going.
1971  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: September 12, 2014, 11:52:26 PM
What about swap plan? Any changes?

Like we've discussed, 5% out of coins, that is 1.25 million out of 25 million total XMG for swap. Swap will be delayed for sure. The general direction is that in circulation will be primary coins freshly mined, while we have to have our prior community and magicoin holder happy too because of aforementioned reasons.Though the timing of delay is yet to be decided, affirmative delay until 1 or 2 months PoW mining won't be very realistic; for example, in a situation that mining is very hard and most of XMG minted, then we can have a portion of swap coins existing. Sending out swap coins can be daily or weekly; how much sent will be under certain conditions. I will be observing the mining process to see how many coins being minted, say in a or two weeks, and then consider how to carrier out the swap.
1972  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: September 12, 2014, 10:45:07 PM
made a teaser for XMG


This is very nice; just missed.
1973  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: September 12, 2014, 10:42:58 PM
I have sent message to people who are able to make windows compilation; if anyone else can do that, just let me know. Thanks. The miner is bit different from other versions, need gfortran libraries.
1974  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: September 12, 2014, 10:32:05 PM
The cpuminer is uploaded here:

https://github.com/magi-project/magi-minerd

I will push more detail information into this post, including setting up digitalocean, AWS, linux miner compiling etc; I will be in the IRC channel tonight, ask me any questions you may have.

The qt wallet (testnet for testing the miner) will be uploaded available likely 1 hour later.

libgmp-dev and gfortran need to be installed addition to regular packages.

This post is under updating.
great, i will need some instruction for linux. did u guys decided what happens with swap coin? if the swap will be fair i will buy more magic on swisscex.. thanks

I will post instructions soon. Coin swap plan is about to be announced; I won't suggest keeping buying. Overall we agreed with the postpone plan for swap; also have asked swisscex to disable transactions there, no point keeping it and also to avoid any potential issues stuck in exchange, seems like some people already complained that. withdraw all of coin to local wallet if possible just in case.
1975  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: September 12, 2014, 10:26:30 PM

Will you have a windows ready miner for launch tomorrow?

I will also need a Windows build

The windows miner will be the high priority; sending pm to some people who is used to compile on windows. I will take a look once other things updated.
1976  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: September 12, 2014, 10:22:26 PM
This is probably posted somewhere but can someone give the instructions to run https://github.com/magi-project/magi-minerd on ubuntu?



NVM!!!! They are right there on the page. https://github.com/magi-project/magi-minerd

Hope you have compiled it successfully. In addition to what listed there, do this
Code:
sudo apt-get install libjansson-dev libgmp-dev gfotran
The git page is to be updated.
1977  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: September 12, 2014, 08:55:38 PM
The cpuminer is uploaded here:

https://github.com/magi-project/magi-minerd

I will push more detail information into this post, including setting up digitalocean, AWS, linux miner compiling etc; I will be in the IRC channel tonight, ask me any questions you may have.

The qt wallet (testnet for testing the miner) will be uploaded available likely 1 hour later.

libgmp-dev and gfortran need to be installed addition to regular packages.

This post is under updating.
1978  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: September 12, 2014, 09:06:05 AM
Almost there; a few hours be back.
1979  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: September 12, 2014, 07:32:47 AM
One question, At the open time of this coin, can it mining with GPU ? (I'm looking for CPU-Only)

Nope, no GPU Smiley Check out OP for details.
1980  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN-Launch on Sep 13] [XMG] Magi | 1st POS-II | Fair Distr | Tor | M7M CPU only on: September 12, 2014, 07:30:03 AM
With the exchanges RockyTrade do not come magicoin!
Dev help me!

PMed you...
Pages: « 1 ... 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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 [99] 100 101 102 103 104 105 106 107 108 109 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!