{"id":13910997,"url":"https://github.com/ItsMeAbhishekRai/Ultimate-Termux-Linux-Installer","last_synced_at":"2025-07-18T10:32:04.431Z","repository":{"id":43955636,"uuid":"185052644","full_name":"ItsMeAbhishekRai/Ultimate-Termux-Linux-Installer","owner":"ItsMeAbhishekRai","description":"Ultimate-Termux-Linux-Installer","archived":false,"fork":false,"pushed_at":"2025-03-08T05:02:08.000Z","size":17,"stargazers_count":471,"open_issues_count":0,"forks_count":59,"subscribers_count":31,"default_branch":"master","last_synced_at":"2025-05-23T03:12:13.202Z","etag":null,"topics":["hacking-tools","install-script","installer-script","linux","package","packages","packages-manager","termux","termux-tool","termux-tools"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ItsMeAbhishekRai.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-05-05T15:58:45.000Z","updated_at":"2025-05-17T11:18:03.000Z","dependencies_parsed_at":"2025-04-06T19:10:42.357Z","dependency_job_id":"8c4e0eee-4bf6-4c24-b5b3-32c064b88e26","html_url":"https://github.com/ItsMeAbhishekRai/Ultimate-Termux-Linux-Installer","commit_stats":null,"previous_names":["itsmeabhishekrai/termux-all-packages-install"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/ItsMeAbhishekRai/Ultimate-Termux-Linux-Installer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ItsMeAbhishekRai%2FUltimate-Termux-Linux-Installer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ItsMeAbhishekRai%2FUltimate-Termux-Linux-Installer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ItsMeAbhishekRai%2FUltimate-Termux-Linux-Installer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ItsMeAbhishekRai%2FUltimate-Termux-Linux-Installer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ItsMeAbhishekRai","download_url":"https://codeload.github.com/ItsMeAbhishekRai/Ultimate-Termux-Linux-Installer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ItsMeAbhishekRai%2FUltimate-Termux-Linux-Installer/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265742327,"owners_count":23820828,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hacking-tools","install-script","installer-script","linux","package","packages","packages-manager","termux","termux-tool","termux-tools"],"created_at":"2024-08-07T00:01:53.715Z","updated_at":"2025-07-18T10:32:04.420Z","avatar_url":"https://github.com/ItsMeAbhishekRai.png","language":"Shell","funding_links":[],"categories":["Shell"],"sub_categories":[],"readme":"# 🚀 Ultimate Termux \u0026 Linux Tool Installer\n\n### 📌 A powerful script that automates the installation of essential tools for **Termux** \u0026 **Linux** users! 🚀\n\n---\n\n## 📖 About This Tool\nThis script is designed to **automate the installation** of hacking, development, networking, and security tools on **Termux and Linux** systems. It includes a variety of **pentesting, OSINT, privacy, and coding tools** that are useful for cybersecurity professionals, ethical hackers, and developers.\n\n---\n\n## 🎯 Features\n✅ **Works on both Termux \u0026 Linux**\n✅ **Automatic package manager detection** (`apt`, `pacman`, `dnf`)\n✅ **Installs essential tools for hacking, networking, anonymity, and security**\n✅ **Colorful and stylish terminal output**\n✅ **Fast, reliable, and lightweight script**\n\n---\n\n## 🔥 Installation\n\n### 📌 **For Termux Users:**\n```bash\napt update \u0026\u0026 apt install git -y\ngit clone https://github.com/ItsMeAbhishekRai/Ultimate-Termux-Linux-Installer.git\ncd Ultimate-Termux-Linux-Installer\nchmod +x install.sh\nbash install.sh\n```\n\n### 📌 **For Linux Users:**\n```bash\nsudo apt update \u0026\u0026 sudo apt install git -y\ngit clone https://github.com/ItsMeAbhishekRai/Ultimate-Termux-Linux-Installer.git\ncd Ultimate-Termux-Linux-Installer\nchmod +x install.sh\nsudo bash install.sh\n```\n\n---\n\n## ❗ Common Issues \u0026 Fixes\n\n### 🔴 **Problem:** `$'\\r': command not found` \u0026 `syntax error near unexpected token`\n**Issue:** This error occurs when the script is in Windows (CRLF) format and executed in Linux or Termux.\n\n### ✅ **Solution: Convert Script from CRLF to LF**\nYour script contains Windows-style line endings (CRLF). Convert it to Linux-compatible format (LF) by following these steps:\n\n#### **1️⃣ Convert the Script**\n```bash\ndos2unix install.sh\n```\nIf `dos2unix` is not installed, install it:\n\n**For Termux:**\n```bash\npkg install dos2unix\n```\n\n**For Linux:**\n```bash\nsudo apt install dos2unix\n```\n\n#### **2️⃣ Check \u0026 Remove CRLF Manually (If `dos2unix` Doesn't Work)**\n```bash\nsed -i 's/\\r$//' install.sh\n```\n\n#### **3️⃣ Execute the Script Again**\n```bash\nbash install.sh\n```\n\n---\n\n## 📜 Tools Installed\n### 🔹 **Basic Utilities**\n✔ Python, Python2, Python3, Git, Curl, Tar, Zip, Unzip, Wget, Nano, Vim, Figlet, Toilet, Cowsay, Lolcat, Neofetch\n\n### 🔹 **Networking \u0026 Scanning**\n✔ Nmap, Netcat, Whois, Macchanger, Proxychains, DNSutils\n\n### 🔹 **Ethical Hacking \u0026 Exploitation**\n✔ Metasploit, Routersploit, SQLmap, Hydra, John, Aircrack-ng\n\n### 🔹 **Web \u0026 OSINT Tools**\n✔ TheHarvester, Wpscan, Waybackurls, Subfinder, WhatWeb\n\n### 🔹 **Password Cracking**\n✔ Hashcat, Cupp, Crunch\n\n### 🔹 **Reverse Engineering \u0026 Malware Analysis**\n✔ Radare2, Ghidra\n\n### 🔹 **Development Tools**\n✔ Clang, Cmake, Make, GCC, G++, Lua, Node.js, Termux API\n\n### 🔹 **Anonymity \u0026 Privacy**\n✔ Tor, Torsocks, Proxychains, Privoxy\n\n### 🔹 **Wireless Security**\n✔ Hcxtools, Reaver, Pixiewps\n\n### 🔹 **Extra Utilities**\n✔ Aria2, Htop, Exiftool, Tmux\n\n---\n\n## 📢 Social Media\n🌟 **Follow Me for More Updates!**\n\n📷 **Instagram:** [@ItsMeAbhishekRai](https://www.instagram.com/ItsMeAbhishekRai)  \n💻 **GitHub:** [ItsMeAbhishekRai](https://github.com/ItsMeAbhishekRai)  \n▶️ **YouTube:** [@ItsMeAbhishekRai](https://www.youtube.com/@ItsMeAbhishekRai)  \n📌 **Pinterest:** [ItsMeAbhishekRai](https://in.pinterest.com/ItsMeAbhishekRai/)  \n\n---\n\n## 📜 License\nThis project is licensed under the **MIT License** - feel free to modify and share! 🎯\n\n---\n\n## 🛠 Contributing\nFeel free to **fork this repository** and submit pull requests! Suggestions and improvements are always welcome. 💡\n\n---\n\n## ❓ FAQ\n**Q: Can I use this script on Windows?**  \nA: No, this script is specifically for Termux (Android) and Linux.\n\n**Q: What to do if a package fails to install?**  \nA: Run the script again or manually install the package using `apt`.\n\n**Q: Can I request additional tools?**  \nA: Yes! Open an issue on GitHub, and I'll consider adding it. 🚀\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FItsMeAbhishekRai%2FUltimate-Termux-Linux-Installer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FItsMeAbhishekRai%2FUltimate-Termux-Linux-Installer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FItsMeAbhishekRai%2FUltimate-Termux-Linux-Installer/lists"}