today's howtos
-
15+ RPM Commands with Examples in Linux - LinuxWizardry
The RPM Package Manager (RPM) is an open packaging system used in Red Hat Linux and its distributions such as CentOS and Fedora. An RPM Package contains archive files and metadata including dependencies and installs location.
An RPM package has a .rpm file format. rpm command is used to install, update, remove, verify, query, and manage RPM packages.
This tutorial will demonstrate different examples of rpm commands in RHEL-based Linux systems.
-
How to Install Chrome on Ubuntu - Linux Stans
In this tutorial, we’re going to show you how to install Chrome on Ubuntu. This tutorial was tested on Ubuntu 22.04, but it will work on other Ubuntu releases and Ubuntu derivatives.
Google Chrome is one of the most popular browsers for all OSes, including Linux. Firefox is pre-installed by default on Ubuntu. If you want to install Chrome, you’ll have to do it manually, it’s not available in the Ubuntu Software center. If you need other recommendations for browsers on Linux, check out The 4 Best Linux Browsers I’ve Used in 2022 and Top 5 Most Secure Browsers for Linux
-
How To Install Telegram on Linux Mint 21 - idroot
In this tutorial, we will show you how to install Telegram on Linux Mint 21. For those of you who didn’t know, Telegram is the free instant messaging application that can be used to connect to friends, family, and relatives. With Telegram you can send and receive text & voice messages, multimedia files like images and videos, as well as make and receive video calls. Telegram is available for Linux, Android, Windows Phone, iOS, and macOS.
This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo‘ to the commands to get root privileges. I will show you the step-by-step installation of the Telegram messenger on Linux Mint 21 (Vanessa).
-
How to install Python on Windows, Linux, and macOS
If you want to get into development, one of my favorite programming languages that I’ve learned is Python. It’s a multi-paradigm language, supporting imperative, functional, procedural, and object-oriented programming. It’s wide open and can be used for practically anything, and is a go-to language for many when working in artificial intelligence or machine learning. I use it for a lot of automation, and it’s even the language that some of the testing tools that we’ve used are written in.
Python is a powerful language, and if you want to get started with it, this guide will teach you the basics. Not only will you need to install the Python binaries and ensure that it’s in your PATH, but you’ll also need something to actually write code in. You could use a full-fledged IDE (Integrated Development Environment) like PyCharm, or you could lean towards a text editor such as the pre-installed IDLE or Sublime Text 3. There are a lot of options, but this guide should kick-start you on the basics.
-
10+ Seq Commands with Examples in Linux - LinuxWizardry
seq command prints a sequence of numbers in Linux. It is super-fast in generating a list of sequential numbers.
The output of seq command can be piped to various other commands for additional functionality. The seq command is also useful in for loops and bash scripts.
This article will discuss different examples of the seq command to print a sequence of numbers in the Linux system.