forked from mikeallisonJS/simplecoin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgettingstarted.php
More file actions
65 lines (49 loc) · 3.03 KB
/
gettingstarted.php
File metadata and controls
65 lines (49 loc) · 3.03 KB
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
<?php
/*
Copyright (C) 2013 Jesse B. Crawford
This file is part of SimpleBTC.
SimpleBTC is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
SimpleBTC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Foobar. If not, see <http://www.gnu.org/licenses/>.
SimpleBTC (overhaul) Developer: 16LJ4z5BzZpDTzXBL2n34o8Me6WAM2RhLd
SimpleCoin (unmaintained original) Developer: 1Fc2ScswXAHPUgj3qzmbRmwWJSLL2yv8Q
*/
$pageTitle = "- Getting Started";
include ("includes/config.php");
include ("includes/header.php");
?>
<b><u>Get a Bitcoin Address</u></b><br/>
Download the client to your PC from: <a href="http://www.bitcoin.org//" target="_blank" style="color: blue">bitcoin.org</a><br/><br/>
<b><u>Setup a bitcoin miner</u></b><br/><br/>
<b><u>ATI/AMD Users</u></b><br/>
You will need to download and install the AMD Stream SDK from <a href="http://developer.amd.com/SDKS/AMDAPPSDK/DOWNLOADS/Pages/default.aspx" target="_blank" style="color: blue">HERE</a> before you can begin mining<br/><br/>
<b><u>Advanced Windows & Linux (for best mining results)</u></b><br/>
Download cgminer <a href="https://bitcointalk.org/index.php?topic=28402.0" target="_blank">HERE</a><br/>
Follow the directions for your operating system in the above link to install<br/>
Run cgminer: cgminer -o http://<?php echo $config['site']['poolname'] ?>:<?php echo $config['site']['poolport'] ?> -u username.1 -p x<br/>
Run cgminer for max performance: cgminer -o http://<?php echo $config['site']['poolname'] ?>:<?php echo $config['site']['poolport'] ?> -u username.1 -p x -I 8<br/><br/>
<b><u>Easy Windows</u></b><br/>
Download GUIMiner: <a href="https://forum.bitcoin.org/index.php?topic=3878.0" target="_blank">HERE</a><br>
<img src="/images/guiminer.jpg"><br/>
<u>GUIMiner options</u><br/>
Server: Other<br />
Host: <?php echo $config['site']['poolname'] ?><br />
Port: <?php echo $config['site']['poolport'] ?><br />
Username: <your user name>.<miner name (default is 1)><br/>
Password: <your miner password (default is 'x')><br/>
Device: Select the graphics card/cpu you would like to use<br/>
Extra Flags: Can be blank, but I find "-v -w128 -f 60" to work well<br/><br/>
<b><u>Easy Linux</u></b><br/>
Download hashkill: <a href="https://forum.bitcoin.org/index.php?topic=6819.0" target="_blank">HERE</a><br/>
Decompress (tar zxvf hashkill-0.2.4-x86.tar.gz)<br/>
Change directory to hashkill<br/>
Run: sudo ./install.sh<br/>
Run hashkill: hashkill-gpu -p bitcoin minername:password:<?php echo $config['site']['poolname'] ?>:<?php echo $config['site']['poolport'] ?>
<?php include("includes/footer.php"); ?>