-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstallation.html
More file actions
83 lines (73 loc) · 6.15 KB
/
installation.html
File metadata and controls
83 lines (73 loc) · 6.15 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
<!doctype html>
<html>
<head>
<title>Git Commands - Installation</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel = "stylesheet" href = "design.css">
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</head>
<body class = "text-center" id = "bg-gradient">
<header class = "masthead mb-auto">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="index.html">Git Commands</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link " href="index.html">Homepage <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item active">
<a class="nav-link" href="installation.html">Installation</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="commands.html">Commands</a>
</li>
<li class="nav-item">
<a class="nav-link" href="help.html">Help</a>
</li>
</ul>
<img id = "optional" class = "imagesize" src = "http://getdrawings.com/vectors/github-icon-vector-31.png">
</div>
</nav>
</header>
<main>
<br><br><br>
<div class="container">
<h1 class="display-4">Installation Section</h1>
<p class="lead">Only available for windows</p>
</div>
<br><br><br>
<div class="row">
<div class="col-4">
<div class="list-group" id="list-tab" role="tablist">
<a class="list-group-item list-group-item-action list-group-item-dark active" id="list-home-list" data-toggle="list" href="#list-home" role="tab" aria-controls="home">What is Bash?</a>
<a class="list-group-item list-group-item-action list-group-item-dark" id="list-profile-list" data-toggle="list" href="#list-profile" role="tab" aria-controls="profile">Why install Bash?</a>
<a class="list-group-item list-group-item-action list-group-item-dark" id="list-messages-list" data-toggle="list" href="#list-messages" role="tab" aria-controls="messages">Enabling developer features</a>
<a class="list-group-item list-group-item-action list-group-item-dark" id="list-settings-list" data-toggle="list" href="#list-settings" role="tab" aria-controls="settings">Enable & Install Linux</a>
</div>
</div>
<div class="col-8">
<div class="tab-content" id="nav-tabContent">
<div class="tab-pane fade show active p-3" id="list-home" role="tabpanel" aria-labelledby="list-home-list">Bash is a unix shell used in linux and the GNU operating system. "Bash” is an abbreviation for the ‘Bourne-Again SHell’,a pun on the name of the "Bourne Shell" it replaces and being "born again". Bash is the default of interactive shell on various distributions of linux due to its popularity on Linux. With the release of Ubuntu on Windows, it is now possible to install bash on Windows as well.</div>
<div class="tab-pane fade p-3" id="list-profile" role="tabpanel" aria-labelledby="list-profile-list">The answer is the open-source development community. Powershell(Windows) and Bash(Linux) have different focus and design. Due to increase in the open-source programming languages, and the developer community adopting them, it becomes essential for an operating system to support it.
Having the Bash shell available to download in Windows removes the extra steps that the developers have to follow to use the same programming languages on Windows. Compared to using an operating system that has native support for bash, using powershell means more effort and a steeper learning curve.</div>
<div class="tab-pane fade p-2" id="list-messages" role="tabpanel" aria-labelledby="list-messages-list"><p>Now let's get to the installation</p>First step is to enable the developer feature of windows. Simply go to <p style = "font-style: italic;">Settings > Updates & Security > Use developer features</p> and select developer mode option. The device will then restart.</p></div>
<div class="tab-pane fade p-1" id="list-settings" role="tabpanel" aria-labelledby="list-settings-list">Go to <p style = "font-style: italic;">Control panel > Turn windows feature on or off > Check "windows subsystem for linux"</p> After restarting go to <p style = "font-style: italic;">windows store > download "Ubuntu".</p> After installing, type "bash" in command prompt and bash is ready to be used.</div>
</div>
</div>
</div>
</main>
<br><br><br><br><br><br><br>
<footer class = "mastfoot mt-auto">
<div class = "inner">
<p class = "design"> Design by Terrence A.T
</p>
</div>
</body>
</html>