Skip to content

Commit d38a558

Browse files
Update installation instructions to use LinuxDroid setup
- Updated installation steps to match LinuxDroid README - Added proper step-by-step LinuxDroid installation guide - Included one-command quick install option - Added alternative CLI-only installation method - Updated hero section to mention LinuxDroid integration - Removed outdated Kali-Linux-for-Android specific steps As per maintainer feedback in #10
1 parent 41f9d33 commit d38a558

1 file changed

Lines changed: 57 additions & 13 deletions

File tree

index.html

Lines changed: 57 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@
376376
<section class="hero">
377377
<div class="hero-content">
378378
<h1>🔒 Professional Penetration Testing on Android</h1>
379-
<p>Run full-featured Kali Linux on your Android device. Access 600+ security tools anywhere, anytime.</p>
379+
<p>Part of LinuxDroid - Run full-featured Kali Linux on your Android device. Access 600+ security tools anywhere, anytime.</p>
380380
<div class="cta-buttons">
381381
<a href="#install" class="btn btn-primary">Get Started</a>
382382
<a href="https://github.com/AryanVBW/Kali-Linux-for-Android" class="btn btn-secondary">View on GitHub</a>
@@ -428,35 +428,79 @@ <h2 class="section-title">🚀 Quick Installation</h2>
428428
<div class="step">
429429
<span class="step-number">1</span>
430430
<strong>Install Termux</strong>
431-
<p>Download Termux from F-Droid (recommended) or GitHub releases</p>
431+
<p>Download Termux from F-Droid or NetHunter Store (recommended for better compatibility)</p>
432432
<div class="code-block">
433-
# Termux provides the terminal environment
433+
# Download from F-Droid or NetHunter Store<br>
434+
# https://f-droid.org/<br>
435+
# https://store.nethunter.com/
434436
</div>
435437
</div>
436438
<div class="step">
437439
<span class="step-number">2</span>
438-
<strong>Update Packages</strong>
439-
<p>Ensure Termux is up to date before installation</p>
440+
<strong>Update & Setup Storage</strong>
441+
<p>Update packages and grant storage permissions</p>
440442
<div class="code-block">
441-
pkg update && pkg upgrade -y
443+
pkg update -y && pkg upgrade -y<br>
444+
termux-setup-storage
442445
</div>
443446
</div>
444447
<div class="step">
445448
<span class="step-number">3</span>
446-
<strong>Clone & Run Installer</strong>
447-
<p>Download and execute the automated installation script</p>
449+
<strong>Install Required Packages</strong>
450+
<p>Install wget and figlet for the LinuxDroid installer</p>
448451
<div class="code-block">
449-
git clone https://github.com/AryanVBW/Kali-Linux-for-Android<br>
450-
cd Kali-Linux-for-Android<br>
451-
bash install.sh
452+
pkg install wget -y && pkg install figlet -y
452453
</div>
453454
</div>
454455
<div class="step">
455456
<span class="step-number">4</span>
457+
<strong>Download LinuxDroid Scripts</strong>
458+
<p>Get the LinuxDroid menu and configuration files</p>
459+
<div class="code-block">
460+
wget https://github.com/AryanVBW/LinuxDroid/releases/download/scripts/LinuxDroidmenu.sh && chmod +x LinuxDroidmenu.sh<br>
461+
wget https://github.com/AryanVBW/LinuxDroid/releases/download/A1/default.bashrc && chmod +x default.bashrc<br>
462+
rm -rf .bashrc && cp default.bashrc .bashrc
463+
</div>
464+
</div>
465+
<div class="step">
466+
<span class="step-number">5</span>
467+
<strong>Run LinuxDroid Installer</strong>
468+
<p>Execute the main installation script</p>
469+
<div class="code-block">
470+
wget https://github.com/AryanVBW/LinuxDroid/releases/download/scripts/LinuxDroid.sh && chmod +x LinuxDroid.sh && bash LinuxDroid.sh
471+
</div>
472+
</div>
473+
<div class="step">
474+
<span class="step-number">6</span>
456475
<strong>Start Kali Linux</strong>
457-
<p>Launch your Kali environment and start hacking!</p>
476+
<p>Follow the on-screen menu to select and launch Kali Linux!</p>
477+
<div class="code-block">
478+
# Use the LinuxDroid menu to start Kali<br>
479+
./LinuxDroidmenu.sh
480+
</div>
481+
</div>
482+
</div>
483+
484+
<div class="install-steps" style="margin-top: 40px;">
485+
<h3 style="text-align: center; color: #1a1a2e; margin-bottom: 20px;">⚡ Quick Install (One Command)</h3>
486+
<div class="step">
487+
<strong>Automated Installation</strong>
488+
<p>Use this single command for automatic setup</p>
489+
<div class="code-block">
490+
curl -sSL https://raw.githubusercontent.com/AryanVBW/LinuxDroid/refs/heads/main/1click.install.sh | bash
491+
</div>
492+
</div>
493+
</div>
494+
495+
<div class="install-steps" style="margin-top: 40px;">
496+
<h3 style="text-align: center; color: #1a1a2e; margin-bottom: 20px;">🔧 Alternative: Kali CLI Only</h3>
497+
<div class="step">
498+
<strong>Install Kali Command Line Interface</strong>
499+
<p>For a lightweight CLI-only installation</p>
458500
<div class="code-block">
459-
./start-kali.sh
501+
pkg update -y && pkg install wget curl proot tar -y<br>
502+
wget https://github.com/AryanVBW/LinuxDroid/releases/download/Vivek1/kali-cli.sh -O kali-cli.sh<br>
503+
chmod +x kali-cli.sh && bash kali-cli.sh
460504
</div>
461505
</div>
462506
</div>

0 commit comments

Comments
 (0)