in This video you will Lern " How to install Wget build From Source On Ubuntu 24.04 LTS"
GNU Wget is a free software package for retrieving files using HTTP, HTTPS, FTP and FTPS, the most widely used Internet protocols.
https://www.gnu.org/software/wget/
__________________________________________________________________________________________________________________
Testing Environment: Ubuntu 24.04.3 LTS Hostname - ip Address -
__________________________________________________________________________________________________________________
apt update ; apt install build-essential net-tools curl git software-properties-common pkg-config libgnutls28-dev -y
curl -O https://ftp.gnu.org/gnu/wget/wget2-latest.tar.gz
tar -zxvf wget2-latest.tar.gz
cd wget2-2.2.1/
./configure
make install
rm -rf /usr/local/bin/wget /usr/bin/wget
sudo ln -s /usr/local/bin/wget /usr/bin/wget
wget2 -V
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
QuickNotepadTutorial
Friday, March 27, 2026
How to install Wget wget2 build From Source On Ubuntu 24.04 LTS
Thursday, March 26, 2026
How To install Python 3.13.11 from Source & Setting Up a Virtual Environment On Ubuntu 24.04.3 LTS
Python is one of the most popular programming languages. It is used to build all kinds of applications, from simple scripts to complex machine-learning systems. With its straightforward syntax, Python is a good choice for both beginners and experienced developers.
__________________________________________________________________________________________________________________
Testing Environment: Ubuntu 24.04.3 LTS Hostname - ip Address -
__________________________________________________________________________________________________________________
apt update ; apt install build-essential net-tools curl git software-properties-common
sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libsqlite3-dev wget libbz2-dev liblzma-dev
wget https://www.python.org/ftp/python/3.13.11/Python-3.13.11.tgz
tar -xf Python-3.13.11.tgz
cd Python-3.13.11
./configure --enable-optimizations
make -j $(nproc)
sudo make altinstall
python3.13 --version
Setting Up a Virtual Environment -
python3.13 -m venv myproject
source myproject/bin/activate
deactivate
__________________________________________________________________________________________________________________
Saturday, September 27, 2025
2 Ways to Install Git And Setting Up Git on Ubuntu 24.04
" How to 2 Ways to Install Git / check version in cmd / Setting Up Git / uninstall Git on Ubuntu 24.04 "
. Git is a tool that helps you keep track of changes in your files and projects, making it easier to manage your work. It’s secure and widely used by many people to organize their code and projects.
__________________________________________________________________________________________________________________
Testing Environment: Ubuntu 24.04.1 LTS Hostname - ip Address -
__________________________________________________________________________________________________________________
apt update ; apt install build-essential net-tools curl software-properties-common
Method - 1
sudo apt update ; sudo apt install git -y
Setting Up Git -
git config --global user.name "Your Name"
git config --global user.email "youremail@domain.com"
git config --list
git config --global init.defaultBranch main
git config --global core.editor "nano"
git config --global --list
Uninstall Git -
sudo apt remove git -y ; sudo apt autoremove -y
__________________________________________________________________________________________________________________
Method - 2 Installing Git from Source -
sudo apt install libz-dev libssl-dev libcurl4-gnutls-dev libexpat1-dev gettext cmake gcc -y
mkdir tmp ; cd tmp
curl -o git.tar.gz https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.51.0.tar.gz
tar -zxf git.tar.gz ; cd git-*
make prefix=/usr/local all
sudo make prefix=/usr/local install
exec bash
git --version
Uninstalling Git Installed from Source -
cd /path/to/git/source
sudo make uninstall
git --version
Setting Up Git -
git config --global user.name "Your Name"
git config --global user.email "youremail@domain.com"
git config --list
__________________________________________________________________________________________________________________
Thursday, August 21, 2025
How To Enable Remote Desktop Protocol Using xrdp on On Ubuntu 24.04 LTS
XRDP is a tool used for connecting to an Ubuntu or other Linux system via Remote Desktop Protocol (RDP). It provides remote access to your Linux desktop environment from a Windows machine or any other RDP-compatible client. Additionally, it also offers a graphical user interface for managing the system remotely.
__________________________________________________________________________________________________________________
Testing Environment: Ubuntu 24.04.1 LTS Hostname - ip Address -
__________________________________________________________________________________________________________________
apt update ; apt install build-essential net-tools curl git software-properties-common
sudo apt install xrdp -y
sudo adduser xrdp ssl-cert
sudo systemctl restart xrdp ; sudo systemctl status xrdp
sudo ufw allow 3389
sudo ufw allow from [IP_Address] to any port 3389
__________________________________________________________________________________________________________________
Saturday, August 2, 2025
How to Run a Python Script on Ubuntu 24.04.2 LTS
Python is a programming language that is interpreted, object-oriented, and considered to be high-level.|
__________________________________________________________________________________________________________________
Testing Environment: Ubuntu 24.04.2 LTS Hostname - ip Address -
__________________________________________________________________________________________________________________
lsb_release -a
apt update ; apt install build-essential net-tools curl git software-properties-common
python3 --version
sudo apt install python3 python3-venv python3-pip
cd ~/path-to-your-script-directory
nano demo_ai.py
from sklearn.tree import DecisionTreeClassifier
import numpy as np
import random
# Generate sample data
x = np.array([[i] for i in range(1, 21)]) # Numbers 1 to 20
y = np.array([i % 2 for i in range(1, 21)]) # 0 for even, 1 for odd
# Create and train the model
model = DecisionTreeClassifier()
model.fit(x, y)
# Function to predict if a number is odd or even
def predict_odd_even(number):
prediction = model.predict([[number]])
return "Odd" if prediction[0] == 1 else "Even"
if __name__ == "__main__":
num = random.randint(0, 20)
result = predict_odd_even(num)
print(f"The number {num} is an {result} number.")
python3 -m venv python-env
source python-env/bin/activate
pip install scikit-learn numpy
Run Python Script - python3 demo_ai.py
Script Executable [OPTIONAL] -
nano demo_ai.py
#!/usr/bin/env python3
chmod +x demo_ai.py
./demo_ai.py
___________________________________________________________________________________________________________________
Saturday, July 26, 2025
How to Install n8n on Ubuntu 24.04 LTS
n8n is a versatile workflow automation tool that enables you to automate tasks across different services.
__________________________________________________________________________________________________________________
Testing Environment: Ubuntu 24.04.1 LTS Hostname - ip Address -
__________________________________________________________________________________________________________________
apt update ; apt install build-essential net-tools curl git software-properties-common
adduser master
usermod -aG sudo master
su - master
curl -sL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt update ; sudo apt install nodejs -y
node -v; npm -v
sudo npm install -g n8n
sudo n8n
___________________________________________________________________________________________________________________
Friday, July 11, 2025
How To Install Fast API with MongoDB on Ubuntu 24.04 LTS
In this tutorial, you'll learn how to install FastAPI with MongoDB on Ubuntu 24.04 LTS .
FastAPI is a web framework based on Python for creating API services. It's a modern, fast, high-performance framework supporting asynchronous operations.
__________________________________________________________________________________________________________________
Testing Environment: Ubuntu 24.04.1 LTS Hostname - ip Address -
__________________________________________________________________________________________________________________
apt update ; apt install build-essential net-tools curl git software-properties-common gnupg python3 python3-pip python3-venv -y
curl -fsSL https://www.mongodb.org/static/pgp/server-8.0.asc | \
sudo gpg -o /usr/share/keyrings/mongodb-server-8.0.gpg \
--dearmor
echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-8.0.gpg ] https://repo.mongodb.org/apt/ubuntu noble/mongodb-org/8.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-8.0.list
sudo apt update && sudo apt install mongodb-org -y
sudo systemctl enable --now mongod ; sudo systemctl status mongod
mongosh
su - username
mkdir -p ~/app; cd ~/app
python3 -m venv .venv
source .venv/bin/activate
deactivate
pip3 install fastapi uvicorn
mkdir -p server/{models,routes}
touch main.py server/{app.py,database.py} server/models/itemModels.py server/routes/item.py
nano app.py | nano server/app.py
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello FastAPI!"}
nano main.py
import uvicorn
if __name__ == "__main__":
uvicorn.run("server.app:app", host="0.0.0.0", port=8080, reload=True)
python3 main.py
__________________________________________________________________________________________________________________