Convert Red Hat Packages To Debian In Linux Using This Tool

To convert rpm packages (packages from Red Hat/ Fedora) into deb packages (Debian packages) so that they can be installed in any Debian based distro, alien is a command-line tool that can be used. Installing it is simple, open the Terminal and type: sudo apt install alien After it is installed, you can directly use it from the Terminal. The general syntax for using alien is: sudo alien targetpackagetype...

Take Screenshots Directly From The Terminal In Linux Mint/Ubuntu

Scrot is a command line utility that can directly take screenshots from the Terminal. To install it in Ubuntu/Linux Mint, open Terminal and type the following : sudo apt install scrot Once installed, it is easy to use. To directly take a screenshot of the Terminal : scrot What this will do is save the screenshot with a timestamp in the current directory. To save a screenshot in other location : scrot...