-
Notifications
You must be signed in to change notification settings - Fork 29
/
index.html
423 lines (346 loc) · 15.2 KB
/
index.html
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LinuxDroid</title>
<style>
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background: #f5f5f5; /* Light grey background for a cleaner look */
color: #333;
text-align: center;
}
h1, h2, h3, h4 {
font-family: 'Poppins', sans-serif; /* Keep using a modern font */
font-weight: 700; /* Consistent font weight */
color: #2c3e50; /* Darker color for headings */
margin: 20px 0;
}
h1 {
font-size: 3em;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
h2 {
font-size: 2.5em;
color: #2980b9; /* Slightly brighter color */
}
h3 {
font-size: 2em;
color: #34495e; /* A softer color */
}
h4 {
font-size: 1.5em;
color: #7f8c8d; /* Lighter gray */
}
p {
text-align: justify;
margin: 15px 0;
}
a {
color: #3498db;
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: #2980b9;
}
img {
vertical-align: middle;
max-width: 100%;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Shadow for depth */
}
ul {
list-style-type: none;
padding: 0;
}
ul li {
background: #ffffff; /* White background for list items */
margin: 10px 0;
padding: 15px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: transform 0.2s ease;
}
ul li:hover {
transform: translateY(-2px); /* Hover effect for list items */
}
pre {
background: #ecf0f1; /* Light grey for code blocks */
padding: 10px;
border-radius: 5px;
overflow-x: auto;
}
.button {
display: inline-block;
padding: 10px 25px;
margin: 10px 0;
font-size: 16px;
color: #fff;
background-color: #3498db;
border: none;
border-radius: 25px; /* Rounded buttons */
cursor: pointer;
text-align: center;
transition: background-color 0.3s ease, transform 0.2s ease; /* Transition effects */
}
.button:hover {
background-color: #2980b9;
transform: translateY(-2px); /* Slight lift effect */
}
.center {
text-align: center;
}
.image-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
justify-items: center;
}
.logo-container {
position: relative;
display: inline-block;
padding: 20px;
background: rgba(255, 255, 255, 0.9); /* More opaque for better visibility */
border-radius: 15px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* Responsive Media Queries */
@media (max-width: 768px) {
h1 { font-size: 2.5em; }
h2 { font-size: 2em; }
h3 { font-size: 1.5em; }
.button { font-size: 14px; padding: 8px 20px; }
}
</style>
</head>
<body>
<h1>Linux CLI + GUI for Android</h1>
<div class="center logo-container">
<a href="https://github.com/AryanVBw">
<img src="https://raw.githubusercontent.com/AryanVBW/LinuxDroid/main/LinuxDroid/Banner/IMG_20231220_014524-removebg-preview.png" height="250" alt="LinuxDroid">
</a>
</div>
<h2>LinuxDroid</h2>
<p><strong>LinuxDroid</strong> is a Linux Command Line Interface (CLI) and Graphical User Interface (GUI) for Android, offering a collection of original open-source operating systems. This platform enables users to experience a variety of Linux distributions on Android devices.</p>
<div class="center">
<a href="https://github.com/AryanVBW/LinuxDroid/tree/main#linuxdroid"></a>
<img src="https://github.com/AryanVBW/LinuxDroid/releases/download/L1/Os2.gif" alt="LinuxDroid">
</a>
</div>
<h3>One-Click Installation Script</h3>
<p>This script streamlines the installation process, providing a seamless experience for various operating systems. Whether you prefer a graphical interface or the command line, it's designed for simplicity and efficiency.</p>
<pre><code>
curl -sSL https://raw.githubusercontent.com/AryanVBW/LinuxDroid/refs/heads/main/1click.install.sh | bash
</code></pre>
<p><strong>Supported OS:</strong></p>
<ul>
<li>Parrot 🦜 Os <img src="https://raw.githubusercontent.com/AryanVBW/LinuxDroid/main/LinuxDroid/Icon/Parrot.png" height="12"></li>
<li>Kali <img src="https://raw.githubusercontent.com/AryanVBW/LinuxDroid/main/LinuxDroid/Icon/Kali.png" height="12"></li>
<li>Ubuntu <img src="https://raw.githubusercontent.com/AryanVBW/LinuxDroid/main/LinuxDroid/Icon/ubuntu-logo.png" height="12"></li>
<li>Arch <img src="https://raw.githubusercontent.com/AryanVBW/LinuxDroid/main/LinuxDroid/Icon/archBg.png" height="12"></li>
<li>Debian <img src="https://raw.githubusercontent.com/AryanVBW/LinuxDroid/main/LinuxDroid/Icon/debiBg.png" height="12"></li>
<li>Manjaro <img src="https://raw.githubusercontent.com/AryanVBW/LinuxDroid/main/LinuxDroid/Icon/d90e746a72ab1fd0d3e9638477e456ab4b4767cd.png" height="12"></li>
<li>Void <img src="https://raw.githubusercontent.com/AryanVBW/LinuxDroid/main/LinuxDroid/Icon/void.png" height="12"></li>
<li>Alpine <img src="https://raw.githubusercontent.com/AryanVBW/LinuxDroid/main/LinuxDroid/Icon/alpineBg.png" height="12"></li>
<li>Fedora <img src="https://raw.githubusercontent.com/AryanVBW/LinuxDroid/main/LinuxDroid/Icon/Fedorabg.png" height="12"></li>
<li>NethunterRootLess (Hacking specialized Linux) <img src="https://github.com/AryanVBW/Myimage/releases/download/m3/kali-nethunter-dragon-tm.png" height="12"></li>
<li>BlackBox (coming🔜) <img src="https://raw.githubusercontent.com/AryanVBW/LinuxDroid/main/LinuxDroid/Icon/bosckbocBg.png" height="12"></li>
<li>CentOS (coming 🔜) <img src="https://raw.githubusercontent.com/AryanVBW/LinuxDroid/main/LinuxDroid/Icon/centosbg.png" height="12"></li>
</ul>
<h3>Supported Desktop Environments:</h3>
<ul>
<li>LXDE</li>
<li>LXQT</li>
<li>XFCE</li>
<li>MATE</li>
<li>KDE Plasma (Beta)</li>
<li>GNOME (coming soon)</li>
</ul>
<h3>Window Managers:</h3>
<ul>
<li>Awesome</li>
<li>Openbox</li>
<li>i3</li>
</ul>
<p>In addition to OS support, LinuxDroid also provides automated installation capabilities for Kali Nethunter across all Android versions. This project aims to facilitate diverse use cases, such as:</p>
<ul>
<li>Utilizing Apache local server environments</li>
<li>Conducting penetration testing (pentesting) with Kali</li>
</ul>
<h3>Features:</h3>
<ul>
<li>Full functionality of all Linux distributions supported</li>
<li>Complete tool compatibility with popular Kali and Ubuntu tools</li>
</ul>
<h4>Notable Tools Included:</h4>
<ul>
<li>Nmap</li>
<li>Wireshark</li>
<li>Metasploit</li>
<li>Burp Suite</li>
<li>Aircrack-ng</li>
<li>Hydra</li>
<li>John the Ripper</li>
<li>SQLMap</li>
<li>LibreOffice</li>
<li>Visual Studio Code</li>
<li>Mozilla Firefox</li>
</ul>
<h1>Installation:</h1>
<div class="center">
<img src="https://github.com/AryanVBW/LinuxDroid/releases/download/S1/Step1.png" height="200">
</div>
<div class="center">
<a href="https://f-droid.org/repo/com.termux_118.apk"></a>
<div class="center">
<a href="https://f-droid.org/repo/com.termux_118.apk" class="button">Download Termux</a>
</div>
<p>From the NetHunter Store, install Termux, NetHunter-KeX client, and Hacker’s keyboard. Note: The button “install” may not change to “installed” in the store client after installation - just ignore it. Starting Termux for the first time may seem stuck while displaying “installing” on some devices - just hit enter.</p>
<div class="center">
<img src="https://github.com/AryanVBW/LinuxDroid/releases/download/S1/Step2.png" height="200">
</div>
<h1>Open Termux and type:</h1>
<pre><code>
pkg update -y && pkg upgrade -y
termux-setup-storage
pkg install wget -y && pkg install figlet -y
wget https://github.com/AryanVBW/LinuxDroid/releases/download/scripts/LinuxDroidmenu.sh && chmod +x LinuxDroidmenu.sh
wget https://github.com/AryanVBW/LinuxDroid/releases/download/A1/default.bashrc && chmod +x default.bashrc
rm -rf .bashrc && cp default.bashrc .bashrc
wget https://github.com/AryanVBW/LinuxDroid/releases/download/scripts/LinuxDroid.sh && chmod +x LinuxDroid.sh && bash LinuxDroid.sh
</code></pre>
<p>Choose the Linux distribution you want to install LinuxDroid automatically and set it up.</p>
<div class="center">
<img src="https://github.com/AryanVBW/LinuxDroid/releases/download/S1/Step3.png" height="200">
</div>
<div class="center">
<img src="https://github.com/AryanVBW/LinuxDroid/releases/download/A1/Osselectioncolor.gif">
</div>
<div class="center">
<img src="https://github.com/AryanVBW/LinuxDroid/releases/download/A1/Parrorselect.gif">
</div>
<h2>🚨 For manual installation of any Linux, follow these steps:</h2>
<div class="center">
<img src="https://github.com/AryanVBW/Myimage/releases/download/m3/kali-nethunter-tm.png" height="150">
</div>
<h4><img src="https://github.com/AryanVBW/Myimage/releases/download/m3/kali-nethunter-dragon-tm.png" height="15"> Copy it for NetHunter Rootless Edition:</h4>
<pre><code>
wget -O install-nethunter-termux https://offs.ec/2MceZWr
chmod +x install-nethunter-termux
./install-nethunter-termux
wget https://raw.githubusercontent.com/AryanVBW/LinuxDroid/main/Scripts/menu.sh && chmod +x menu.sh
wget https://raw.githubusercontent.com/AryanVBW/LinuxDroid/main/Scripts/default.bashrc
mv default.bashrc .bashrc
</code></pre>
<p>Kali NetHunter is the ultimate mobile penetration testing platform. It's based on Kali Linux, the most popular penetration testing distribution, and it allows you to run a full range of security tools on your Android device.</p>
<h3>With Kali NetHunter, you can:</h3>
<ul>
<li>Penetration test Android devices</li>
<li>Perform security research</li>
<li>Learn about ethical hacking</li>
</ul>
<p>Kali NetHunter is easy to install and use. Just follow the instructions in this guide and you'll be up and running in minutes.</p>
<div class="center"></div>
<img src="https://github.com/AryanVBW/Myimage/releases/download/m2/UbuntuCoF.png" height="100">
</div>
<h3><img src="https://raw.githubusercontent.com/AryanVBW/LinuxDroid/main/LinuxDroid/Icon/ubuntu-logo.png" height="16"> Copy it for Ubuntu 22.04 CLI:</h3>
<pre><code>
pkg update -y && pkg install wget curl proot tar -y && wget https://github.com/AryanVBW/LinuxDroid/blob/L2/Scripts/InstallScript/Cli/ubuntu22.sh -O ubuntu22.sh && chmod +x ubuntu22.sh && bash ubuntu22.sh
</code></pre>
<div class="center">
<img src="https://github.com/AryanVBW/Myimage/releases/download/m3/kali-tm.png" height="80">
</div>
<h2><img src="https://raw.githubusercontent.com/AryanVBW/LinuxDroid/main/LinuxDroid/Icon/Kali.png" height="20"> Copy it for KALI CLI:</h2>
<pre><code>
pkg update -y && pkg install wget curl proot tar -y && wget https://github.com/AryanVBW/LinuxDroid/releases/download/Vivek1/kali-cli.sh -O kali-cli.sh && chmod +x kali-cli.sh && bash kali-cli.sh
</code></pre>
<p>Maximum flexibility with no commitment. Install Kali NetHunter on any stock, unrooted Android device without voiding the warranty.</p>
<p><strong>Android Device Requirements:</strong></p>
<ul>
<li>Stock unmodified device, no root or custom recovery required</li>
</ul>
<h2>To see screenshot</h2>
<h3>Tap on Arrow👇</h3>
<div class="center">
<a href="https://github.com/AryanVBW/LinuxDroid/blob/L2/LooksN.md"></a>
<img src="https://raw.githubusercontent.com/AryanVBW/LinuxDroid/main/LinuxDroid/Arrow/1024arow2.png" height="120" alt="LinuxDroid">
</a>
</div>
<div class="center"></div>
<a href="https://github.com/AryanVBW/LinuxDroid/blob/L2/LooksN.md">
<img src="https://github.com/AryanVBW/LinuxDroid/releases/download/P1/kaliC.png" height="">
</a>
</div>
<div class="center">
<a href="https://github.com/AryanVBW/LinuxDroid/blob/L2/LooksN.md">
<img src="https://github.com/AryanVBW/LinuxDroid/releases/download/P1/downloadC.png" height="">
</a>
</div>
<div class="center">
<a href="https://github.com/AryanVBW/LinuxDroid/blob/L2/LooksN.md">
<img src="https://github.com/AryanVBW/LinuxDroid/releases/download/P1/ubantucross.png" height="">
</a>
</div>
<div class="center">
<a href="https://github.com/AryanVBW/LinuxDroid/blob/L2/LooksN.md">
<img src="https://github.com/AryanVBW/LinuxDroid/releases/download/L1/debian.jpg">
</a>
</div>
<div class="center">
<a href="https://github.com/AryanVBW/kali-Linux-Android">
<img src="https://github.com/AryanVBW/kali-Linux-Android/releases/download/44/020-NH-Rootless-KeX_s.png" alt="Darkside">
</a>
</div>
<p>Feel free to reach out, and let's build something amazing together! 🚀</p>
<div class="center">
<a href="https://github.com/aryanvbw">
<img src="https://github-readme-stats.vercel.app/api?username=aryanvbw&show_icons=true&theme=dark" alt="GitHub stats">
</a>
</div>
<div class="center">Visitor count<br>
<img src="https://profile-counter.glitch.me/Aryanvbw/count.svg" />
</div>
<p class="center">Made with ❤️ By <a href="https://aryanvbw.github.io">Vivek W</a></p>
<p class="center" style="font-size: 8px">v1.1.2</p>
<script>
function copyToClipboard(text) {
navigator.clipboard.writeText(text).then(function() {
alert('Copied to clipboard');
}, function(err) {
console.error('Could not copy text: ', err);
});
}
document.querySelectorAll('.copy-button').forEach(button => {
button.addEventListener('click', function() {
const textToCopy = this.getAttribute('data-copy');
copyToClipboard(textToCopy);
});
});
document.querySelectorAll('img').forEach(img => {
img.addEventListener('mouseover', function() {
this.style.transform = 'scale(1.1)';
this.style.transition = 'transform 0.3s ease';
});
img.addEventListener('mouseout', function() {
this.style.transform = 'scale(1)';
});
});
document.addEventListener('DOMContentLoaded', function() {
const textElements = document.querySelectorAll('h1, h2, h3, h4, p');
textElements.forEach(element => {
element.style.opacity = 0;
element.style.transition = 'opacity 1s ease';
setTimeout(() => {
element.style.opacity = 1;
}, 500);
});
});
</script>
</body>
</html></a></div>