Skip to main content

Posts

Uninstall Installed Apps in Linux

🐧 How to Completely Uninstall Apps in Linux (Advanced Guide) Removing apps in Linux is not just about running one command. Sometimes apps are installed using different methods (APT, Snap, Flatpak, .deb files, manual install), and each requires a different removal approach. 📌 Step 1: Identify the App Source (Most Important) Before uninstalling, you MUST know how the app was installed: which app_name Explanation: /usr/bin/ → Installed via APT or .deb /snap/ → Snap package /var/lib/flatpak/ → Flatpak Alternative checks: dpkg -l | grep app_name snap list flatpak list ⚙️ Method 1: Remove APT / .deb Installed Apps Normal uninstall: sudo apt remove app_name Complete uninstall (recommended): sudo apt purge app_name Fix broken packages (important): sudo apt --fix-broken install Remove unused dependencies: sudo apt autoremo...
Recent posts

linux on any phone using termux

How to Install Kali Linux on Android Using Termux (Step-by-Step Guide) Kali Linux is a powerful penetration testing and security auditing platform. While it's primarily used on PCs, you can also run it on your Android phone using Termux . In this guide, we'll walk you through the step-by-step process. Prerequisites Before starting, ensure you have: Android 7.0 or higher (root not required but helpful for full functionality) Termux app (download from F-Droid Stable internet connection (for downloading packages) At least 5GB free storage (Kali Linux tools take space) Step 1: Install & Update Termux Download Termux from F-Droid Open Termux and run the following commands to update packages: pkg update -y && pkg upgrade -y Install essential dependencies: pkg install wget proot -y Ste...

Download youtube video using termux

How to Download YouTube Videos Using Termux If you're interested in downloading YouTube videos directly through Termux, this guide will walk you through the process. We’ll explain each command step-by-step and ensure you can execute them successfully. Introduction Termux is a powerful terminal emulator for Android that allows you to use Linux commands. In this guide, we’ll use Termux to install and run a script for downloading YouTube videos. The script we’ll use is hosted on GitHub, and by following the commands below, you’ll be able to download videos easily. Commands Explanation Below is the list of commands you need to execute, along with an explanation of what each does. 1. Update and Upgrade Packages pkg up -y -y -y -y This command updates and upgrades all existing packages in Termux. The pkg up is a shorthand for pkg update && pkg upgrade . The -y flag automatically answers “yes” to any prompt...

Unveiling the Mystery Behind a Phone Number with Python

Unveiling the Mystery Behind a Phone Number with Python In the digital age, a phone number can reveal much more than just a means to communicate. With the right tools, one can uncover the general location and even the service provider behind a mysterious number. Today, we’ll explore how a simple Python script can turn a series of digits into insightful information. The Python Code Our journey begins with importing the necessary modules: import phonenumbers from phonenumbers import geocoder, carrier from geopy.geocoders import Nominatim The phonenumbers module is a treasure trove, capable of parsing, formatting, and validating phone numbers. It also houses geocoder and carrier , submodules that help us find the location and carrier information, respectively. Next, we prompt the user for a phone number: phone_n = input("Enter your phone number: ") phone_number = phonenumbers.parse(phone_n, None) The parse function analyzes the phone number, prepar...

learning html : part - 1

Introduction to HTML Also Watch This Video! HTML (HyperText Markup Language) is the backbone of every webpage on the internet. It provides the structure and content of a webpage, defining elements that browsers use to interpret and display information. What is HTML? HTML is a markup language composed of various elements, tags, and attributes. These elements help organize content on a webpage, creating headings, paragraphs, lists, links, images, and more. The structure of HTML consists of nested elements, forming a tree-like structure known as the Document Object Model (DOM). Basic Structure of HTML An HTML document starts with a <!DOCTYPE html> declaration, followed by an <html> element that wraps the entire content. Within the <html> element, there are two main sections: Head Section (<head>): Contains meta-information about the document, such as the title of the page, links to external stylesheets, and scripts...