forked from bitcoinclassic/bitcoinclassic.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgettingstarted.html
More file actions
104 lines (95 loc) · 4.46 KB
/
Copy pathgettingstarted.html
File metadata and controls
104 lines (95 loc) · 4.46 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
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
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<title>Bitcoin Classic</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Bitcoin Classic">
<link rel="shortcut icon" href="assets/img/favicon.ico" type="image/icon">
<link rel="icon" href="assets/img/favicon.ico" type="image/icon">
<link rel="stylesheet" href="assets/css/bitcoin-classic.css">
<script src="assets/js/jquery-3.1.1.min.js"></script>
</head>
<body>
<div id="container">
<header>
<div class="grid">
<div class="col-1-3">
<a href="/"><img src="assets/img/bitcoinclassic-dark-206x29@2x.png" alt="Bitcoin Classic Logo"></a>
</div>
<div class="col-2-3">
<button id="openMenu" class="openMenu" name="Menu toggle">
<img src="assets/img/menu_open.png" alt="Open menu">
</button>
</div>
</div>
<nav>
<ul class="menu">
<li>
<a class="" href="#" title="Getting started">Getting Started</a>
<ul>
<li><a class="" title="Overview">Overview</a></li>
<li><a class="" href="/downloads/index.html" title="Downloads">Downloads</a></li>
<li><a class="" href="/linuxbuilds.html" title="Linux builds">Linux builds</a></li>
</ul>
</li>
<li><a class="" href="/community.html" title="Get Involved">Get Involved</a></li>
<li><a class="" href="/roadmap.html" title="Roadmap">Roadmap</a></li>
<li><a class="" href="#" title="Developers">Developers</a>
<ul>
<li><a class="" href="/devel/index.html" title="Devel">Overview</a></li>
<li><a class="" href="/devel/Blocksize.html" title="Blocksize">Blocksize</a></li>
<li><a class="" href="/devel/Flexible%20Transactions.html" title="FT">Flexible Transactions</a></li>
<li><a class="" href="/devel/AdminServer.html" title="AdminServer">Admin Server</a></li>
<li><a class="" href="/devel/NetworkManager.html" title="NetworkManager">Network Manager</a></li>
</ul>
</li>
<li><a class="" href="/news.html" title="News">News</a></li>
</ul>
</nav>
</header>
<div class="content">
<section>
<p>To start using Bitcoin you will need to connect to the Bitcoin Network. Bitcoin Classic is a so called "Full Node" and it builds the backbone of the network. It offers high levels of security, privacy and stability. However it has fewer end-user features and takes a lot of disk-space.</p>
<p>Bitcoin Classic is the best portal to the Bitcoin network with various features that allow you to use Bitcoin to the fullest.</p>
<p>To get started, you need to install the software and after installation the client will start downloading the entire blockchain of historical data (some 120GB at this moment). This may take half a day to several days, depending on how powerful your hardware is.</p>
<ul class="grid">
<li class="col-1-3">
<a href="linuxbuilds.html">
<p class="subHeader">Using Ubuntu / Arch</p>
<div>
<img src="assets/img/linux.jpg" alt="Linux builds image">
</div>
</a>
</li>
<li class="col-1-3">
<a href="downloads/index.html">
<p class="subHeader">Download</p>
<div>
<img src="assets/img/download.jpg" alt="Download Bitcoin Classic image">
</div>
</a>
</li>
<li class="col-1-3">
<a href="howtos.html">
<p class="subHeader">HOW TOs</p>
<div>
<img src="assets/img/howtos.jpg" alt="how-to's image">
</div>
</a>
</li>
</ul>
</section>
</div>
<footer>
<div class="grid">
<div class="col-1-3"><img src="assets/img/btcfooter.png"/>
</div>
<div class="col-2-3"><span id="copyright">© 2016-2017 Bitcoin Classic</br>
Content licensed under the <a href="https://creativecommons.org/licenses/by-sa/3.0/">CC by-sa</a></span></div>
</div>
</footer>
</div>
<script src="assets/js/bitcoin-classic.js"></script>
</body>
</html>