Skip to main content

Posts

Showing posts from April, 2024

How to Install Nerd fonts in Termux Using Nerd-Installer

Termux-nerd-installer is a tool that helps you install nerd fonts in Termux. Nerd fonts are fonts that have symbols for programming languages, filetypes, and other technical terms. This can make your terminal look more stylish and informative. Termux-nerd-installer is a free and open-source tool. It is written in Python and is available on GitHub. To use Termux-nerd-installer, you first need to install it. You can do this by running the following command in Termux: ``` 1st. "git clone https://github.com/notflawffles/termux-nerd-installer.git" 2nd. " cd termux-nerd-installer" 3rd. " make install" ``` Once Termux-nerd-installer is installed, you can run it by typing the following command: ``` " termux-nerd-installer l i " ``` This will open a menu where you can select the nerd font that you want to install. Once you have selected a font, Termux-nerd-installer will install it for you. Termux-nerd-installer supports a variety of nerd fonts, including...

How to use Termux-x11 with Xfce4 Desktop on Android

Setting up Termux-X11 with Xfce4 for a Smooth Desktop Experience on Android Are you eager to transform your Android device into a dynamic desktop environment using Termux-X11 with Xfce4? This guide will walk you through the setup process, ensuring a seamless experience. Let's dive in! Prerequisites: Ensure you have the latest releases of Termux and Termux-X11 installed from GitHub or F-Droid. If unsure about your device architecture, opt for the universal version. Updating Repositories: Begin by launching Termux and entering the command `termux-change-repo`. Navigate the dialog box to select the main repository, followed by Grimler or later for optimal performance. Execute `yes | pkg upgrade` to upgrade outdated packages. Repository Selection: Re-run `termux-change-repo` to select a single mirror from the available options. Configuration: Edit `~/.termux/termux.properties` and uncomment the line `allow-external-apps = true`. Save the changes and update the terminal settings with `t...

My Experience Recovering a Hacked Facebook Account

My Experience Recovering a Hacked Facebook Account After a harrowing experience with a hacked Facebook account, I finally regained control with the help of Meta verification. Here's how it all went down: Initial Hack Last Friday, my Facebook account was compromised by a hacker who changed my email, phone number, and set up 2FA. This left me in a bind, unable to change my password or remove the hacker's information. Recovery Process Meta Verification: I followed the process to have my account Meta-verified. Despite not having access to my password or phone number, I could complete the verification using my legal name, a profile picture, and 2FA. Uploading my license helped verify my identity. Contacting Support: After Meta verification, I gained access to live chat and email support. It took approximately three hours from submission to approval. Email Correspondence: I exchanged around 20 emails with support, providing details about my account, the hacking...

Mozilla Firefox version 125 | Tech News

 Mozilla Firefox version 125 has been released and is now available for download. Here's what's new in this update: 1. Improved Performance: The latest version of Firefox brings improvements to page load times, responsiveness, and overall performance. This makes browsing faster and smoother than before. 2. Picture-in-Picture (PiP) Enhancements: PiP mode allows users to watch videos in a separate window while continuing to browse other websites. In Firefox 125, the PiP feature has received several enhancements, including better audio handling, improved resizing, and more. 3. WebExtensions API Updates: Firefox 125 includes updates to the WebExtensions API that allow developers to create browser extensions with greater ease and flexibility. These changes also ensure compatibility with future versions of the browser. 4. New Developer Features: Developers can take advantage of new features such as CSS Cascade Layers, which provide an easier way to manage complex stylesheets; :has() ...

Installing GNOME 46 (Rawhide) on Fedora with Termux

Installing GNOME 46 (Rawhide) on Fedora with Termux In this extensive guide, we will walk through the process of setting up and installing GNOME 46 (currently available in Fedora Rawhide, Manjaro unstable, and Debian Experimental for arm64) on Termux. This tutorial assumes that you already have Termux installed on your Android device. If you haven’t yet, please download it from F-Droid or Google Play Store. Before starting the installation procedure, make sure your Termux application has been granted external storage permissions. You can do so by updating and upgrading Termux as follows: $ pkg update && pkg upgrade -y && pkg install termux-x11-nightly pulseaudio proot-distro -y && termux-setup-storage Now follow these steps to configure and install GNOME 46 on Fedora within Termux: Install Termux X11. For universal APK support, visit Termux X11 Releases . Afterward, open Termux and execute the following commands: ...

Hardware Acceleration in Termux

Hardware Acceleration in Termux > [!NOTE]   > I would like to include here all the information I got while I am still researching the subject as the world of hardware acceleration is huge.. If you find any errors or misconceptions, please comment on Youtube, Telegram or open an issue on this Github ## 1. Install packages You need to install the following packages in Termux:  ``` pkg install mesa-zink virglrenderer-mesa-zink vulkan-loader-android virglrenderer-android ``` ## 2. Initialize graphical server in Termux:  Before login to proot and use hardware acceleration you need to start the graphical server:  * Vulkan (ZINK): ``` MESA_NO_ERROR=1 MESA_GL_VERSION_OVERRIDE=4.3COMPAT MESA_GLES_VERSION_OVERRIDE=3.2 GALLIUM_DRIVER=zink ZINK_DESCRIPTORS=lazy virgl_test_server --use-egl-surfaceless --use-gles & ``` * OpenGL (VIRGL): ``` virgl_test_server_android & ``` * [Turnip (Adreno GPU 6XX/7XX compatible only)](https://www.reddit.com/r/termux/comments/1...

PostmarketOS with Plasma Mobile

PostmarketOS with Plasma Mobile Used proot distro + PostmarketOS v22.06 (Alpine v3.16) because its the latest version that supports plasma mobile that works on Termux X11 with zink hardware acceleration (Alpine v3.17+ will not work at all without Wayland.) Btw the desktop supports both portrait and landscape :) installation how to install: 1. install termux X11, proot distro and enable audio from this guide [https://www.reddit.com/r/termux/comments/1bo10lb/fedora\_rawhide\_with\_gnome\_46\_updated\_installation/](https://www.reddit.com/r/termux/comments/1bo10lb/fedora_rawhide_with_gnome_46_updated_installation/) 2. Install alpine as usual: pd in alpine 3. Log in to alpine: pd sh alpine 4. Type "nano /etc/apk/repositories" and add "https://mirror.postmarketos.org/postmarketos/v22.06" then exit nano (Ctrl+X then Y then Enter) 5. type: sed -i 's/edge/v3.16/g' /etc/apk/repositories 6. Type: clear && apk update && apk upgrade && apk add na...

How to Install Java (Open-JDK-8) in Termux | two Methods

How to Install Java (Open-JDK-8) in Termux Method 1: Java 8 Installation Introduction Install Java (Open-JDK-8) in Termux without rooting your Android device. Follow these steps to get Java up and running in your Termux environment. Step-by-Step Guide Step 1: Install Kali Linux in Termux (Optional) pkg install wget proot -y && wget https://raw.githubusercontent.com/MasterDevX/KaliTermux/master/InstallKali.sh && bash InstallKali.sh Step 2: Download OpenJDK-8-JRE Deb Package Visit ftp.debian and copy the link to the OpenJDK-8-JRE deb package. Step 3: Download Deb Package in Kali Machine wget http://ftp.debian.org/debian/pool/main/o/openjdk-8/openjdk-8-jre-headless_8u275-b01-1_arm64.deb Step 4: Install Deb Package Manually dpkg -i openjdk-8-jre-headless_8u275-b01-1_arm64.deb Step 5: Change Java Version (Optional) sudo update-alternatives --config java Final Step: Verify Java Version Select the desired Java version (in this case, Java 8) by typ...

Ubuntu-20.04+ Desktop Install on Termux | Proot-Distro

How to Install Ubuntu 20.04+ Desktop in Termux using Proot-Distro Introduction: Termux, a powerful terminal emulator for Android, allows you to run a Linux environment on your mobile device. With the help of Proot-Distro, you can install Ubuntu 20.04+ and set up a desktop environment within Termux. This guide will walk you through the step-by-step process of installing Ubuntu 20.04+ desktop in Termux using Proot-Distro. Table of Contents: Prerequisites Installing Proot-Distro Installing Ubuntu 20.04+ Setting up the Desktop Environment Launching the Desktop Environment Conclusion Section 1: Prerequisites Before we begin, make sure you have the following: An Android device with Termux installed. A stable internet connection. Sufficient storage space on your device. Installation Steps: Step 1: Termux update & upgrade Open Termux and run the following commands to ...

How to Delete Instagram Call History and Chat

How to Delete Instagram Call History: A Step-by-Step Guide for Privacy and Decluttering Introduction : Instagram is a popular social media platform for sharing photos and videos, but it also offers a direct messaging feature that includes voice and video calling. However, you may find yourself wanting to delete your call history on Instagram for various reasons, such as maintaining privacy or decluttering your conversation list. In this blog post, we will provide you with a step-by-step guide on how to delete your Instagram call history effectively. We will also discuss the reasons why you might want to delete your call history and the implications of doing so. How to Delete Instagram Call History: There are two ways to delete your Instagram call history: - Delete individual calls: To delete an individual call, open the conversation with the person you called, scroll up to view the call history, and press and hold on the call record you want to delete. A menu will appear, and you...

30 Search engines For Cybersecurity student

29+1 Search Engines For Beginners to Learn Cybersecurity 🔎🔒💻 Are you a cybersecurity student looking for search engines to enhance your learning and research? Here are 29+1 search engines that can help you gather threat intelligence, explore vulnerabilities, and delve into various aspects of cybersecurity. These tools can assist you in expanding your knowledge and developing your skills in the field. 🚀📚 Dehashed—View leaked credentials. SecurityTrails—Access extensive DNS data. DorkSearch—Conduct fast Google dorking. ExploitDB—Browse an archive of various exploits. ZoomEye—Gather information about specific targets. Pulsedive—Search for threat intelligence. GrayHatWarfare—Search public S3 buckets. PolySwarm—Scan files and URLs for threats. Fofa—Search for various threat intelligence. LeakIX—Discover publicly indexed information. DNSDumpster—Quickly search for DNS records. FullHunt—Search and discover attack s...

Cloudflared in Termux to Create tunnels, Port Forwding

Step-by-Step Guide: Installing Cloudflared in Termux for Android (Alternative to ngrok) | 2024" J Link updated https://github.com/rajbhx/cloudflared-termux What is cloudflare Cloudflare, Inc. is an American content delivery network and DDoS mitigation company, founded in 2010. It acts as a reverse proxy between a website's visitor and the Cloudflare customer's hosting provider. Its headquarters are in San Francisco, California Usages cloudflared -url [localhost]:port_number] example : cloudflared -url localhost:8000 cloudflared tunnel localhost:[port_number] Installation Make sure your Termux app updated The commands you provided are the steps to install Cloudflared in Termux using the `rajbhx/cloudflared-termux` repository. Here's a breakdown of each command: 1. Update and upgrade packages:    ```    pkg update && pkg upgrade && pkg install git    ``` 2...

[Apk Setup] Alpine-term App | without using termux

Install and Setup Alpine Term in Android App Welcome to the world of terminal and Linux environment on your Android device! 📲 In this blog post, we will guide you through the installation and setup process of Alpine Term, an amazing application that brings the power of Alpine Linux to your fingertips. Let's get started! 🚀 What is Alpine Term App? 🏔️ Alpine Term is a terminal and Linux environment application for Android. It utilizes Alpine Linux, running inside a headless x86_64 machine emulated with QEMU. The interaction with the operating system is done through terminals attached to the serial consoles of the virtual machine. This allows you to run commands, execute scripts, and experience a Linux environment on your Android device. System Requirements 📋 To install and use Alpine Term, make sure your device meets the following requirements: 📱 AArch64-based device. 🆙 Android 7.0 or higher. 💾 At least 500 MB of free space on the internal storage. 🌐 ...

The Ultimate Guide to Fixing the libssl.so.1.1 Error in Termux

How to Fix libssl.so.1.1 Error in Termux How to Fix libssl.so.1.1 Error in Termux | cannot link executable termux Introduction If you are a Termux user, you might encounter the "libssl.so.1.1" error while trying to execute certain commands. This error can be frustrating, but worry not! In this guide, we will walk you through the steps to fix the libssl.so.1.1 error in Termux. Let's get started! Warning: Proceed with Caution ⚠ Before we dive into the solution, please be aware that the steps provided here will remove all your installed packages, including those from third-party sources or any custom modifications made in $PREFIX. However, your $HOME directory should remain unaffected. Please proceed only if you understand the risks involved. ⚠️ Step 1: Clear Current $PREFIX 🚀 To start, open a failsafe session and clear the current $PREFIX: $ rm -rf $PREFIX Step 2: Re-open Termux 🔄 After clearing the $PREFIX, reopen Termux. This will trigger th...

How to delete Instagram Account by mrwn007 Report tool Termux

How to delete Instagram Account by mrwn007 Report tool Termux(Android) What is termux Termux is an Android terminal emulator and Linux environment app that works directly with no rooting or setup required. A minimal base system is installed automatically - additional packages are available using the APT package manager. mrwn007 / 007spam-BOT Check out new updated repository Instagram mass reporter [ TERMUX ] Instagram Reporting 2 [ TERMUX ] Instagram delete new method by crevils [Termux] Why this tool not working:( Because this tool author removed all files and reposiory also just because this tool no working @__@ Installation  pkg install git pkg install python git clone https://github.com/mrwn007/007spam-BOT.git cd 007spam-BOT python3 -m pip install requests python3 bot.py this repo is dead for normal users to report in Ins...

Popular posts from this blog

[Apk Setup] Alpine-term App | without using termux

Install and Setup Alpine Term in Android App Welcome to the world of terminal and Linux environment on your Android device! 📲 In this blog post, we will guide you through the installation and setup process of Alpine Term, an amazing application that brings the power of Alpine Linux to your fingertips. Let's get started! 🚀 What is Alpine Term App? 🏔️ Alpine Term is a terminal and Linux environment application for Android. It utilizes Alpine Linux, running inside a headless x86_64 machine emulated with QEMU. The interaction with the operating system is done through terminals attached to the serial consoles of the virtual machine. This allows you to run commands, execute scripts, and experience a Linux environment on your Android device. System Requirements 📋 To install and use Alpine Term, make sure your device meets the following requirements: 📱 AArch64-based device. 🆙 Android 7.0 or higher. 💾 At least 500 MB of free space on the internal storage. 🌐 ...

Cloudflared in Termux to Create tunnels, Port Forwding

Step-by-Step Guide: Installing Cloudflared in Termux for Android (Alternative to ngrok) | 2024" J Link updated https://github.com/rajbhx/cloudflared-termux What is cloudflare Cloudflare, Inc. is an American content delivery network and DDoS mitigation company, founded in 2010. It acts as a reverse proxy between a website's visitor and the Cloudflare customer's hosting provider. Its headquarters are in San Francisco, California Usages cloudflared -url [localhost]:port_number] example : cloudflared -url localhost:8000 cloudflared tunnel localhost:[port_number] Installation Make sure your Termux app updated The commands you provided are the steps to install Cloudflared in Termux using the `rajbhx/cloudflared-termux` repository. Here's a breakdown of each command: 1. Update and upgrade packages:    ```    pkg update && pkg upgrade && pkg install git    ``` 2...

How to install and setup vShell in android app |कैसे इनस्टॉल करें

How to install and setup android vShell(Virtual Shell) app (no root) कैसे इनस्टॉल करें YouTube video link What is Android-vShell app vShell is a  virtual shell environment application  for the Android OS. A virtual Linux shell environment application for Android OS. Runs Alpine Linux in QEMU system emulator.  It provides a virtual machine running small Linux distribution ready for the use out-of-box. Application implements my view on how Linux terminal environments can look like on Android OS. As operating system security is getting more and more hardened over time (which is good btw), it become impossible to abuse design flaws such as executable user data to run Linux native executables. Ability to...

My Termux | How to install Lazymux in Termux #rajbhx

My Termux | How to install Lazymux in Termux Lazymux t00ls !nstaller !s very easy t0 use, 0nly pr0v!ded f0r lazy Termux users, just k!dd!ng. Lazymux !s a t00l that !s spec!ally made f0r Termux user wh!ch pr0v!des a l0t 0f t00l ma!nly used t00ls !n Termux, Lazymux !nstall any 0f the g!ven t00ls pr0v!ded by !t fr0m !tself w!th just 0ne cl!ck, and Lazymux always get updated.  What !s Python 3?   My Termux | How to install Lazymux in Termux @rajbhx How to Install Oh My Zsh How to download copyright free GAME PLAY CODM/PUBG/BGMI/FreeFire Call of duty mobile 60fps   How to install FacebookToolkit in Termux + linux + windows 10/11 Download any video with termux using youtube-dl | #rajbhx HOw to install Raspbian 9 (Stretch) in Termux #rajbhx On Decembe...

🚀 The 2024 Java Developer Roadmap [UPDATED] 🚀

🚀 The 2024 Java Developer Roadmap [UPDATED] 🚀 Hello aspiring Java developers! 🌟 Welcome to the 2023 Java Developer Roadmap, a comprehensive guide designed to help you navigate your journey towards becoming a proficient Java professional. Whether you're just starting or looking to level up your Java skills, this roadmap will provide you with a clear path to success in the Java ecosystem. 🎉 Introduction Java, as a robust and versatile programming language, continues to be a leading choice for building enterprise-level applications, web services, mobile apps, and more. As we step into 2023, the Java landscape evolves, presenting exciting opportunities for developers like you. This updated Java Developer Roadmap encompasses years of expertise and industry insights to outline the key skills, tools, frameworks, libraries, and APIs that you should master to excel as a Java developer in 2023. 🔍 The Essentials Before diving into Java-specific to...

How to extract Details from any mobile number Using termux | rajbhx

How to extract Details from any mobile number | termux | jarvisstaraq.blogspot.com What is truecallerjs Truecallerjs : A simple package to search phone number details.this tool also work in android and Termux app jarvisstaraq.blogspot.com Requirements Android phone Termux Proper valid Mobile Number(Phone number verification for truecaller) Truecaller InstallationId jarvisstaraq.blogspot.com Installation in Termux Installing Node.js, Git, and Wget in Termux:  To install Node.js, Git, and Wget in Termux, follow these steps: 1. Open your Termux app. 2. Run the following command to update the package lists:     ```    pkg update    ``` 3. Next, install Node.js using the following command:    ```    pkg install nodejs    ``` 4. Install Git using the command:    ```    pkg install git    ``` 5. Lastly...

How to install | instagram reporting 2 tool termux by jarvisstaraq

How to install | instagram reporting 2 tool termux by jarvisstaraq Assuming the client truly breaks the instagram rule then their is more opportunities to get prohibited. Instagram limits the reports per unit time, apparatus will auto quit revealing later arrived at limit at very nearly 40 reports. Shows "Detailed Succesfully" later Each Request. You can Report target again later some time (later 2-3 min). Use IP of same district for high effecivity. In the event that you enter invalid username it will in any case send report demand. Assuming that you getting mistake on utilizing intermediaries then, at that point, don't. Requirements Python3 Or Above  Need to install git in linux or termux Download GIT Usage Instagram mass reporter [ TERMUX ]  How to delete Instagram Account by mrwn007 Report tool Termux   [ TERMUX ]

How to delete Instagram Account by mrwn007 Report tool Termux

How to delete Instagram Account by mrwn007 Report tool Termux(Android) What is termux Termux is an Android terminal emulator and Linux environment app that works directly with no rooting or setup required. A minimal base system is installed automatically - additional packages are available using the APT package manager. mrwn007 / 007spam-BOT Check out new updated repository Instagram mass reporter [ TERMUX ] Instagram Reporting 2 [ TERMUX ] Instagram delete new method by crevils [Termux] Why this tool not working:( Because this tool author removed all files and reposiory also just because this tool no working @__@ Installation  pkg install git pkg install python git clone https://github.com/mrwn007/007spam-BOT.git cd 007spam-BOT python3 -m pip install requests python3 bot.py this repo is dead for normal users to report in Ins...

How to install & use report-fb-account-termux tool in termux

report-fb-account-termux   [+]  Disclaimer : This tool is only for educational purpose. The developer is not responsible for any abuse of it.   [+] Installation apt update && apt upgrade -y apt install git python -y git clone https://github.com/jarvisstar/report-fb-account-termux.git cd autoreport python3 ar.py Or, Use Single Command apt install git python -y && git clone https://github.com/KasRoudra/autoreport && cd autoreport && python3 ar.py Screenshots:   Usage: Search "findfbid" in google to get victim's profile link. Such as Website1 , Website2 , Website3 , Website4 . Enter the victim's facebook profile link in the website, generate and copy the numeric id in clipboard. Run the script and enter or paste that id when asked! [+] Note: AUTOREPORT DOES NOT DISABLE ACCOUNT UNLESS THERE IS SPECIFIC POST(S)...

How to Hack CCTV Cameras with Cam-dumper on Linux, Termux, and Windows

Cam-dumper is a written tool in the language of Python program for hacking CCTV cameras that can access cameras in 20 countries   installation   in Linux, Windows, and Termux,  Linux # 💾 Install Python 3.