100% Free Website to APK with all plans 🎉

Web Designing & Maintenance

Professional web design and maintenance to keep your website functional, secure, and visually appealing. Explore our services:

Custom Design

Tailored websites that are responsive and user-friendly across all devices.

WordPress Support

Expert support for WordPress customization, themes, and plugins.

Database Management

Efficient, secure, and organized database solutions for your business.

My Projects

Project 1

CKL

CKL is an educational blog website

HTML CSS JavaScript PHP
View Project →
Project 1

IFSC Tool

It is a tool which give full address of bank through IFSC code

HTML CSS JavaScript PHP
View Project →
Project 1

Aviin

Aviin is an e-commerce site in handcrafted jewelry and dresses. Built using PHP, HTML, and CSS, it offers a seamless shopping experience with a focus on unique, artisanal fashion.

HTML CSS JavaScript PHP WP
View Project →

Termux Commands

1. Basic Termux Commands

  1. pkg update – Update package lists
  2. pkg upgrade – Upgrade all installed packages
  3. pkg install <package_name> – Install a package
  4. pkg list-installed – List all installed packages
  5. pkg search <package_name> – Search for a package
  6. pkg uninstall <package_name> – Uninstall a package
  7. exit – Close Termux
  8. clear – Clear the terminal screen
  9. termux-reload-settings – Reload Termux settings
  10. termux-info – Show system information

2. File and Directory Management

  1. ls – List files in the current directory
  2. ls -la – List all files, including hidden ones
  3. cd <directory> – Change directory
  4. cd .. – Move to the previous directory
  5. mkdir <directory> – Create a new directory
  6. rm <file> – Delete a file
  7. rm -r <directory> – Delete a directory and its contents
  8. mv <source> <destination> – Move or rename a file
  9. cp <source> <destination> – Copy a file
  10. find <directory> -name <filename> – Search for a file

3. Text Editing & Viewing

  1. nano <filename> – Edit a file with Nano
  2. vim <filename> – Edit a file with Vim
  3. cat <filename> – Display file contents
  4. less <filename> – View large text files
  5. head -n 10 <filename> – Show the first 10 lines of a file
  6. tail -n 10 <filename> – Show the last 10 lines of a file

4. Network Commands

  1. ping google.com – Test internet connectivity
  2. curl <URL> – Fetch a webpage
  3. wget <URL> – Download a file
  4. whois <domain> – Get domain information
  5. nslookup <domain> – Get DNS details
  6. traceroute <host> – Trace the path to a host
  7. netstat -tulnp – Show network connections
  8. ifconfig – Display network information
  9. ip a – Show IP addresses
  10. ssh user@host – Connect to a remote server

5. Storage Management

  1. termux-setup-storage – Enable storage access
  2. df -h – Check available disk space
  3. du -sh <directory> – Check directory size
  4. rm -rf <directory> – Delete files permanently

6. Process Management

  1. ps aux – List running processes
  2. top – Display running processes dynamically
  3. kill <PID> – Terminate a process
  4. pkill <name> – Kill a process by name
  5. htop – Interactive process viewer

7. Scripting & Automation

  1. chmod +x <script.sh> – Make a script executable
  2. ./script.sh – Run a script
  3. bash <script.sh> – Run a script with Bash
  4. sh <script.sh> – Run a script with SH

8. Ethical Hacking & Security

  1. nmap -sV <IP> – Scan open ports
  2. sqlmap -u <URL> – Test for SQL Injection
  3. hydra -l user -P passlist.txt <IP> ssh – Brute-force SSH login
  4. metasploit – Start Metasploit framework
  5. wireshark – Capture network packets
  6. aircrack-ng – Crack WiFi passwords
  7. john <password_file> – Crack passwords
  8. hashcat -m 0 -a 3 hash.txt ?a?a?a – Bruteforce hash

9. Programming & Development

  1. python3 – Open Python interpreter
  2. python3 <script.py> – Run a Python script
  3. pip install <package> – Install a Python package
  4. node – Open Node.js interpreter
  5. npm install <package> – Install an NPM package
  6. gcc <file.c> -o output – Compile a C program
  7. javac <file.java> – Compile a Java program
  8. java <class_name> – Run a Java program
  9. php <file.php> – Run a PHP script

10. Termux API (Requires Termux API Package)

  1. termux-battery-status – Show battery info
  2. termux-camera-info – Show camera details
  3. termux-camera-photo -c 0 -o photo.jpg – Take a photo
  4. termux-vibrate -d 1000 – Vibrate for 1 second
  5. termux-clipboard-get – Get clipboard text
  6. termux-clipboard-set "Hello" – Set clipboard text
  7. termux-location – Get current GPS location

11. System Monitoring

  1. uptime – Show system uptime
  2. uname -a – Show system details
  3. date – Show current date and time
  4. cal – Show calendar
  5. watch -n 1 <command> – Run a command every second
  6. logcat – View system logs

12. Package Management & Repositories

  1. apt update – Update package lists
  2. apt upgrade – Upgrade installed packages
  3. apt list – List available packages
  4. apt show <package> – Show package details
  5. dpkg -i <package.deb> – Install a Debian package
  6. dpkg -r <package> – Remove a package

13. Compression & Archiving

  1. zip -r archive.zip folder/ – Create a ZIP archive
  2. unzip archive.zip – Extract a ZIP file
  3. tar -czvf archive.tar.gz folder/ – Create a tar.gz archive
  4. tar -xzvf archive.tar.gz – Extract a tar.gz archive

14. Database Management

  1. sqlite3 <database.db> – Open an SQLite database
  2. mysql -u root -p – Open MySQL console
  3. psql -U user -d database – Connect to PostgreSQL

15. Miscellaneous

  1. fortune – Display a random quote
  2. cowsay "Hello!" – Print a message with ASCII art
  3. figlet "Termux" – Print large text
  4. lolcat file.txt – Show colorful text
  5. toilet -f big Hello – Stylish ASCII text
  6. termux-toast "Hello, World!" – Display a pop-up message
  7. sl – Watch a steam locomotive animation
  8. cmatrix – Show a Matrix-like effect

Bonus: One-liner Scripts

  • find . -type f -exec chmod 644 {} \; – Fix file permissions
  • find . -type d -exec chmod 755 {} \; – Fix directory permissions
  • python3 -m http.server 8080 – Start a local web server

Post a Comment