To use L2TP VPN connections on Linux Mint you need to install this packages:
sudo apt-get install network-manager-l2tp network-manager-l2tp-gnome
To use L2TP VPN connections on Linux Mint you need to install this packages:
sudo apt-get install network-manager-l2tp network-manager-l2tp-gnome
If You have an error like: Call to undefined function ssh2_connect() that’s mean that in your PHP not installed ssh2 extension.
Install this extension is very simple, in Ubuntu Linux or other Debian based distribution just use the command:
sudo apt install php7.4-ssh2
This command will install ssh2 extension to Your PHP 7.4. If you use other PHP version, just change number in this command to Your version.
find . -name '*.jpg' -execdir mogrify -resize 820x {} +
All the components of the LAMP server are available to install using the default system repository of Ubuntu. Hence, we can configure the environment without adding an extra repository. However, before moving forward, just run the system update command to ensure the system rebuilds the APT package index cache.
sudo apt update
We can install LAMP server components one by one on our Ubuntu system. However, it is a time-consuming process, hence to make it short here we are using a single command. That will not only install the LAMP server but also enable and start all the required services.
sudo apt install lamp-server^ php
The above command will select all the required packages to set up Apache, MySQL, and PHP on your system.
Well, when it comes to uninstalling the LAMP server completely from your Ubuntu system, we can use the given command:
sudo apt autoremove --purge apache2* mysql-server* php*
Webp is an open-source image format in Linux which supports lossless and lossy compression for images on the web.
One of the best practices to optimize the website performance is using compressed images.
This article will cover how to use webp image format for creating compressed and quality images for the website.
The webp package is already available in the official ubuntu repositories. Run the command below to update the Ubuntu repository to the latest index and install webp package.
sudo apt install webp
Using the cwebp tool, an image can be converted into webp format. Run the cwebp command with option -q to define the quality of image and -o to define the output file.
In this example, I have used image file linux.png and linux.jpeg file to convert in webp format. You can choose your image name accordingly.
cwebp -q 60 linux.png -o linux.webp
cwebp -q 60 linux.jpeg -o linux1.webp
Converting webp image to png and jpeg format
In the previous step, we converted jpeg and png images to webp using cwebp utility tool. Now we will use the dwebp tool to convert webp images into png and jpeg format.
Use the dwep command with the option -o to create png and jpeg image format from webp. In the example, image.webp is used for the conversion.
dwep image.webp -o image.png
dwep image.webp -o image.jpeg
If you go to the Xfce menu and choose settings > settings manager > window manager tweaks > accessibility, you can select another key instead of alt to move the windows or choose none at all. This should be just what you want.

You can also use xfconf-query to set easy_click to none (or another key) on the command-line:
xfconf-query -c xfwm4 -p /general/easy_click -s none
In some programs, like Photoshop Alt + left mouse key used to modify some data and it is very important to disable window move with alt + left mouse button in XFCE for correct work of programs.
1. Install Flameshot on your Linux:
sudo apt install flameshot
2. Go to Settings -> Keyboard -> Shortcuts and add command /usr/bin/flameshot gui to key PrtScr (Print)
/usr/bin/flameshot gui

In this GitHub repository you can find free and open public APIs which you can use in your projects: https://github.com/public-apis/public-apis

A collective list of free APIs for use in software and web development
GitHub repository: https://github.com/public-apis/public-apis
Self-hosting is the practice of hosting and managing applications on your own server(s) instead of consuming from SaaSS providers.
This is a list of Free Software network services and web applications which can be hosted on your own server(s). Non-Free software is listed on the Non-Free page.


Ventoy is an open source tool to create a bootable USB drive for ISO/WIM/IMG/VHD(x)/EFI files.
With ventoy, you don’t need to format the drive again and again, you just need to copy the ISO/WIM/IMG/VHD(x)/EFI files to a USB flash drive and load them directly.
You can copy many files at the same time, and ventoy will give you a boot menu to select them.
Official WebSite: https://www.ventoy.net/en/index.html