Posts

Showing posts from October, 2023

Step-by-step tutorial on how to use Tamp

Step-by-step tutorial on how to use Tamp Requirements: Termux installed on your Android device Installation: Clone the Tamp repository: git clone https://github.com/1Tech-X/Tamp.git Change to the Tamp directory: cd Tamp Run the installation script: bash install.sh Usage: To start the Tamp web server, simply run the following command: tamp -start This will start the Apache2 server and MariaDB database. You can then access your website at http://localhost:8080 in your web browser. To update the Tamp web server: curl -LO https://raw.githubusercontent.com/1Tech-X/Tamp/main/update_tamp.sh bash update_tamp.sh   To fix a common PhpMyAdmin error: curl -LO https://raw.githubusercontent.com/1Tech-X/Tamp/main/fix_phpmyadmin.sh bash fix_phpmyadmin.sh Troubleshooting: If you are having trouble with Tamp, please refer to the documentation on the Tamp GitHub repository: https://github.com/1Tech-X/Tamp Additional tips: You can use the tamp -h command to view a list of all available commands. You c...

Termux install sshd(SSH)

SSH into Your Phone: A Detailed Guide for Accessing Termux from Your Computer 1. Install OpenSSH Upgrade your package on Termux with pkg upgrade then use the command pkg install openssh to install OpenSSH. 2. Set Passwords Use the 'passwd' command to set a password. 3. Find Username Run the whoami command on Termux, it will tell you your username. Save this value for later use, it may be in the form of 'u0_a254'. 4. Find Host Run ipconfig command on Termux, and there will be a form similar to 'inet addr:192.168.0.100' in the results, note down this value. 5. Start the SSH Server on Termux Start the server with the sshd command, and confirm whether the server is listening through the logcat -s 'ssh:*' command. If it successfully starts, you will see a message similar to "Server listening on port 8022". 6. SSH Remote Login from Your Computer On your computer, use the ssh <username>@<host> -p8022 command, where userna...

Termux Change Repo

1. type termux-change-repo termux-change-repo 2. select "Mirrors by AlbatrHosted...", backspace as checked the box, enter as submit(OK) [ Youtube References ]

Termux install python ftp (pyftpdlib)

pkg install python -y pkg install python-pip -y python -m pip install pyftpdlib -y python -m pyftpdlib -w