Uploaded March 2026 | Updated September 2026, 1 week ago
Rembg: A Free, Open Source Bacground Image Remover for Linux, macOS and Windows. No Cost, Unlimited Images, and Completely Offline!
Commands:
python3 --version
sudo apt install python3
sudo apt install python3-pip -y
sudo apt-get install python3-venv
python3 -m venv DIR_NAME
source Pyenv/bin/activate
pip install "rembg[cli]"
pip install "rembg[cpu,cli]"
pip install "rembg[gpu,cli]"
rembg i input.jpg output.png
rembg p ./photos ./output
rembg i -a photo.jpg output.png
rembg s --host 0.0.0.0 --port 7000
What you will learn:
1. How to removes image backgrounds automatically in seconds using a free Python tool
2. How to install rembg, use it, and get clean, transparent images (without background) in Linux
3. How to removes backgrounds from images using AI
4. How you can remove backgrounds from photos instantly
5. How to get clean, transparent PNG images ready to use
6. What You Need
a. How to Check if Python 3 is installed on your system
b. How to install Python
c. How to Install the Pip package for Python
d. How to create Python Virtual Environments
e. How to create virtual environment using venv
7. How to Install Rembg Python Library
a. How to activate Python environment
8. Remove Background from Image using Rembg Python Library
a. How to Remove Background from Single Image
b. How to download AI models
c. How To remove the background of an image
d. How to remove complex background with text in it
e. How to Remove Background from Multiple Images
f. How to remove background from all images that inside the folder
g. How to Get Better Edges with Alpha Matting
h. How to remove background of images with fine details like hair or fur
9. Set Up Rembg as Web Server
a. How to use Rembg through a web interface
b. How to Start the Rembg server
Song: Kaflu - Energy
Music provided by Vlog No Copyright Music
Link: bit.ly/3YMWwW7
Song: Kaflu - Closure
Music provided by Vlog No Copyright Music
Link: bit.ly/3YMWwW7
#computereverywhere #Linux #Rembg #RemoveBackground #BackgroundRemoval #ImageEditing #OpenSource #LinuxTutorial #Ubuntu #Debian #Fedora #ArchLinux #CLI #CommandLine #PythonTools #AIImageEditing #OpenSourceSoftware #GIMPAlternative #TechTutorial #HowToLinux #Linux2026 #ContentCreation #PhotoEditing #PNG #TechGuide #YouTubeTutorial
Rembg: A Free, Open Source Bacground Image Remover for Linux, macOS and Windows. No Cost, Unlimited Images, and Completely Offline!
Commands:
python3 --version
sudo apt install python3
sudo apt install python3-pip -y
sudo apt-get install python3-venv
python3 -m venv DIR_NAME
source Pyenv/bin/activate
pip install "rembg[cli]"
pip install "rembg[cpu,cli]"
pip install "rembg[gpu,cli]"
rembg i input.jpg output.png
rembg p ./photos ./output
rembg i -a photo.jpg output.png
rembg s --host 0.0.0.0 --port 7000
What you will learn:
1. How to removes image backgrounds automatically in seconds using a free Python tool
2. How to install rembg, use it, and get clean, transparent images (without background) in Linux
3. How to removes backgrounds from images using AI
4. How you can remove backgrounds from photos instantly
5. How to get clean, transparent PNG images ready to use
6. What You Need
a. How to Check if Python 3 is installed on your system
b. How to install Python
c. How to Install the Pip package for Python
d. How to create Python Virtual Environments
e. How to create virtual environment using venv
7. How to Install Rembg Python Library
a. How to activate Python environment
8. Remove Background from Image using Rembg Python Library
a. How to Remove Background from Single Image
b. How to download AI models
c. How To remove the background of an image
d. How to remove complex background with text in it
e. How to Remove Background from Multiple Images
f. How to remove background from all images that inside the folder
g. How to Get Better Edges with Alpha Matting
h. How to remove background of images with fine details like hair or fur
9. Set Up Rembg as Web Server
a. How to use Rembg through a web interface
b. How to Start the Rembg server
Song: Kaflu - Energy
Music provided by Vlog No Copyright Music
Link: bit.ly/3YMWwW7
Song: Kaflu - Closure
Music provided by Vlog No Copyright Music
Link: bit.ly/3YMWwW7
#computereverywhere #Linux #Rembg #RemoveBackground #BackgroundRemoval #ImageEditing #OpenSource #LinuxTutorial #Ubuntu #Debian #Fedora #ArchLinux #CLI #CommandLine #PythonTools #AIImageEditing #OpenSourceSoftware #GIMPAlternative #TechTutorial #HowToLinux #Linux2026 #ContentCreation #PhotoEditing #PNG #TechGuide #YouTubeTutorial









![How to Install LAMP Stack with PHP 8.3 and MariaDB 11 on Ubuntu 24.04
In this video, we will go through the various steps to install the constituent packages in the LAMP stack with PHP 8.3 and MariaDB 11 on Ubuntu 24.04 Server and Desktop editions.
As you may already know, the LAMP (Linux, Apache, MySQL/MariaDB, PHP) stack is an assortment of leading open source web development software packages.
One of the common uses of the LAMP stack is for running content management systems (CMSs) such as WordPress, Joomla, or Drupal, and many others.
Commands:
sudo apt update
sudo apt install apache2
sudo systemctl status apache2
sudo ss -tlpn | grep apache2
sudo ufw allow Apache Full
sudo ufw status
http://your_server_IP_address
sudo a2enmod ssl
sudo a2ensite default-ssl.conf
sudo systemctl restart apache2
sudo ss -tlpn | grep apache2
sudo systemctl enable apache2
apt search php8.3
sudo apt install php8.3 libapache2-mod-php8.3 php8.3-mysql php8.3-xml php8.3-gd php8.3-curl php8.3-mbstring php8.3-zip
php -v
sudo nano /var/www/html/info.php
sudo systemctl restart apache2
http://your_server_IP_address/info.php
sudo apt install php8.3[TAB]
sudo apt install php8.3-imagick php8.3-intl php8.3-bcmath
sudo systemctl restart apache2
sudo apt install mariadb-server mariadb-client php8.3-mysql
sudo mysql_secure_installation
sudo mysql
use mysql;
ALTER USER root@localhost IDENTIFIED VIA mysql_native_password USING PASSWORD(your_strong_password);
FLUSH PRIVILEGES;
EXIT;
sudo systemctl restart mariadb
mysql -u root -p
sudo apt install phpmyadmin
sudo phpenmod mbstring
sudo systemctl restart apache2
http://your_server_IP_address/phpmyadmin/
Chapters:
0:00 Intro
0:19 Step 1: Install Apache on Ubuntu 24.04
3:11 Step 2: Install PHP 8.3 on Ubuntu 24.04
6:46 Step 3: Install MariaDB 11 in Ubuntu 24.04
8:42 Step 4: Install phpMyAdmin in Ubuntu 24.04
10:36 End screen
What youll learn:
1. Step 1: Install Apache on Ubuntu 24.04
a. How to install the Apache web server from the default Ubuntu official repositories
b. How to successfully installed the Apache web server
c. How to confirm if the daemon is running and on what ports it binds
d. How to allow HTTP and HTTPS traffic if you have UFW firewall enabled
e. How you can confirm apache web server via a web browser by typing the server IP address using the HTTP protocol
f. How to use HTTPS support to secure your web pages
g. How you can enable the Apache SSL module and confirm the port
h. How you can confirm Apache SSL support using HTTPS Secure Protocol
i. How to enable apache web server to start the service at boot time
2. Step 2: Install PHP 8.3 on Ubuntu 24.04
a. How To install PHP with the most commonly needed modules for web development
b. How to search for available PHP packages
c. How to install the proper modules so that PHP can able to run scripts in conjunction with apache web server
d. How to see the current release version of PHP
e. How to create a info.php file in apache /var/www/html/ webroot directory with nano text editor
f. How to Restart apache service to apply changes
g. How to check the PHP configuration
h. How to install additional PHP modules
i. How to install additional modules for image processing and internationalization support
3. Step 3: Install MariaDB 11 in Ubuntu 24.04
a. How to install the latest version of MariaDB with the needed PHP modules to access the database from the Apache-PHP interface
b. How to secure the installation of MariaDB using the security script, which will set a root password, revoke anonymous access, disable root login remotely, and remove the test database
c. How to switch to unix_socket authentication, set root password and enter a strong password, remove anonymous users, disallow root login remotely, remove test database, reload privilege tables
d. How to give MariaDB database access to system normal users without using sudo privileges
e. How to restart the MariaDB service
4. Step 4: Install phpMyAdmin in Ubuntu 24.04
a. How to configure phpmyadmin with dbconfig-common
b. How to Set a strong password for the phpMyAdmin application
c. How to enable the necessary PHP extensions and restart Apache
d. How You can access the web interface of phpMyAdmin
Song: Kaflu - Lose It All
Music provided by Vlog No Copyright Music
Link: https://bit.ly/3YMWwW7
Song: Tinkan - Feel Loved
Music provided by Vlog No Copyright Music
Link: https://bit.ly/3YMWwW7
Song: Ren Zivel - Falling For You
Music provided by Vlog No Copyright Music
Link: https://bit.ly/3YMWwW7
#computereverywhere #LAMPStack #Ubuntu2404 #PHP83 #MariaDB11 #LinuxTutorial #WebServer #ApacheServer #PHPDevelopment #DatabaseSetup #MariaDB #UbuntuServer #LinuxForBeginners #WebDevelopment #FullStackSetup #ServerSetup #DevOps #OpenSource #CodingTutorial #InstallLAMP #TechTutorial #BackendDevelopment #LearnLinux #UbuntuGuide #WebHosting #Programming How to Install LAMP Stack with PHP 8.3 and MariaDB 11 on Ubuntu 24.04](https://i.ytimg.com/vi/yibtlmWMSes/mqdefault.jpg)
