Skip to main content

Posts

How to install Nginx Proxy Manager on proxmox 8.3.2 container

Recent posts

Script for Ventoy Automation

This script will automate the process of ventoy USB creation. You need to modify the path of Ventoy and ISO files. At the start of execution you will be asked to define the USB drive letter and disk number. After that the process will be started in the background you will not see anything until the process is done.  Copy b below code and paste it into notepad and save as FILENAME.ps1 # Script To install Ventoy and Copy ISO Files automatically by Talha Ali  # Set the permanent Ventoy path 'Make sure to update the Location of Ventoy application' $VentoyPath = "E:\Talha's Folder\Softwares\ventoy-1.0.99" # Ensure the Ventoy executable exists in the specified path $VentoyExe = Join-Path $VentoyPath "Ventoy2Disk.exe" if (-Not (Test-Path $VentoyExe)) {     Write-Host "Error: Ventoy2Disk.exe not found in the specified path."     exit } # Prompt for USB drive letter 'Make sure USB is already formated and have a drive letter' $DriveLetter = Read-...

How to Identify Unused IPs and Configure Static & DHCP IPs on Ubuntu Server

  Video Training In this blog, I'll walk you through finding unused IP addresses using Advanced IP Scanner and configuring a static IP on an Ubuntu server. I'll also show you how to switch back to DHCP with a few simple adjustments in the network configuration file. Let's start! Finding Unused IP Addresses with Advanced IP Scanner Finding unused IP addresses within your network is crucial for setting up a new server or device without causing IP conflicts. I recommend using Advanced IP Scanner , a free and user-friendly tool. Download and Install Advanced IP Scanner Head over to the Advanced IP Scanner official website and download the tool. Scan Your Network Launch the software, enter the IP range of your network (e.g., 192.168.1.1 to 192.168.1.255 ), and start the scan. The tool will display all the devices currently connected to your network and their IPs. You can use multiple networks as well.  Identify Unused IPs This tool will only show you the used IP Addres...

Set Up Your Own VPN Server on Linux with Webmin - Step-by-Step Guide!

 (Video Training) Setting up a VPN can give you more control over your network’s security, whether for personal use or remote access to private networks. This guide will walk you through configuring a PPTP (Point-to-Point Tunneling Protocol) VPN server on Linux using Webmin. PPTP is a widely supported VPN protocol, and Webmin provides an intuitive interface for managing it. Why Use Webmin for PPTP VPN Setup? Webmin simplifies the process of setting up a VPN server, even for users unfamiliar with the Linux command line. With Webmin, you can install, configure, and manage your PPTP VPN with ease—all from a web-based interface. Prerequisites Before starting, make sure you have: A Linux server (e.g., Ubuntu, Debian, or CentOS). Root or sudo access to the server. Webmin installed. (If you haven’t installed Webmin yet, follow the steps in How to Install Webmin on Linux . Install and Configure PPTP in Webmin Login to Webmin: Open a browser and go to https://your-server-ip:10000 . L...

How to Install and Configure OpenVPN on Ubuntu Server

Video Training Setting up a VPN on your Ubuntu server can enhance security and allow remote access to your network resources. OpenVPN provides a robust and secure solution, and this guide will walk you through each step to install and configure it on your server. Prerequisites To follow this guide, ensure you have: An Ubuntu server with sudo privileges Basic familiarity with terminal commands Let’s get started with installing OpenVPN! Step 1: Update and Upgrade Your System Begin by updating your server’s package lists and upgrading any existing packages to ensure everything is current. Run the following command: sudo apt update && apt upgrade -y  Step 2: Add the OpenVPN Repository OpenVPN’s software repository makes it easy to install and update. Start by adding the repository to your sources list. Run: echo "deb [signed-by=/etc/apt/keyrings/openvpn-as.gpg.key] http://as-repository.openvpn.net/as/debian $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list....

How to Install a Full Desktop (GUI) on Ubuntu Server

  Video Tutorial  Now a days everything is getting very user-friendly other than Ubuntu servers. So they introduced this feature for server to have a user friendly look. The GUI package doesn't come with the install but the installation is not that difficult. I'am posting the commands bellow also there is a video above as well, I mentioned everything in that short video.  sudo apt update && apt upgrade -y sudo apt install xubuntu-desktop For Minimal version (Optional) sudo apt install --no-install-recommends xubuntu-desktop

How to Set Up Remote Desktop on Ubuntu Server

How to Set Up Remote Desktop on Ubuntu Server Video Training Remote desktop access on Ubuntu Server can be extremely useful for managing tasks that benefit from a graphical interface. Using the x11vnc service, you can set up remote access with ease. This guide walks you through each step of the setup process, so you can securely connect to your Ubuntu Server from anywhere. Prerequisites To follow this guide, you’ll need: An Ubuntu Server installation Terminal access with sudo privileges Let’s dive into the step-by-step process of setting up a remote desktop on your Ubuntu Server. Step 1: Update and Upgrade Your System First, make sure your server’s packages are up to date. Run the following command: sudo apt update && sudo apt upgrade -y This will update the list of available packages and install the latest versions of those packages. Step 2: Install XFCE Desktop Environment Since Ubuntu Server lacks a graphical interface by default, you’ll need to install one. We’re u...