| by Arround The Web

How to Install LAMP Stack on Debian 11/10/9

The post How to Install LAMP Stack on Debian 11/10/9 first appeared on Tecmint: Linux Howtos, Tutorials & Guides .
On (August 14, 2021), the Debian project announced the availability of the new stable version (Debian 11) codenamed Bullseye. With this r…

Share Button
Read More
| by Arround The Web

How to Install Debian 11 (Bullseye) Server Using Net Install

The post How to Install Debian 11 (Bullseye) Server Using Net Install first appeared on Tecmint: Linux Howtos, Tutorials & Guides .In this guide, we will walk you through the installation of a Debian 11 (Bullseye) Minimal Server, using the netinstall C…

Share Button
Read More
| by Scott Kilroy

Linux IP Command with Usage Examples

Source: LinOxide

Share Button
Read More
| by Arround The Web

VirtualBox 6.1.28 Released with Initial Support for Linux 5.14 and 5.15

VirtualBox 6.1.28 is here, about three months after VirtualBox 6.1.26, to introduce initial guest and host support for the Linux 5.14 and 5.15 kernel series. This means that you can now use VirtualBox on GNU/Linux systems powered by Linux kernels 5.14 or 5.15, as well as to run distributions powered by Linux 5.14 or 5.15 […]

The post VirtualBox 6.1.28 Released with Initial Support for Linux 5.14 and 5.15 appeared first on Linux Today.

Share Button
Read More
| by Arround The Web

Redcore Linux is a Gentoo-based Distro for Human Beings

Redcore Linux is a Gentoo-based live-installable distribution that brings Gentoo’s power to home users. It targets casual desktop users and, to some extent, even power users. The Redcore Linux devs have announced the release of version 2102. This versi…

Share Button
Read More
| by Arround The Web

Bash String Manipulation Explained With Examples In Linux

String manipulation is one of the fundamental concepts of bash scripting. This guide explains how to create and manipulate strings in bash, with examples in Linux.
The post Bash String Manipulation Explained With Examples In Linux appeared first on Lin…

Share Button
Read More
| by Arround The Web

GIMP 2.99.8 Released with Clone Tool Tweaks, Support for Windows Ink

A new development version of GIMP is available to download and it comes with a couple of interesting changes. More details, and download links, inside.
This post, GIMP 2.99.8 Released with Clone Tool Tweaks, Support for Windows Ink is from OMG! Ubuntu…

Share Button
Read More
| by Arround The Web

Ubuntu 21.04 and 20.04 LTS Users Get New Linux Kernel Security Update

Coming only three weeks after the previous kernel security update, the new one is currently only available for Ubuntu 21.04 (Hirsute Hippo) and Ubuntu 20.04.3 LTS (Focal Fossa) systems running the Linux 5.11 kernel series, and it’s available for all su…

Share Button
Read More
| by Arround The Web

How to Upgrade to Ubuntu 21.10

Do the warm reviews for the latest Ubuntu 21.10 release have you intrigued? If they do, here’s how to upgrade to Ubuntu 21.10 from an earlier version.
This post, How to Upgrade to Ubuntu 21.10 is from OMG! Ubuntu!. Do not reproduce elsewhere without pe…

Share Button
Read More
| by Arround The Web

Crystal 1.2 Programming Language Released

Programming language Crystal 1.2 has been released. The developers of Crystal are trying to combine the convenience of development in the Ruby language with the high application performance inherent in the C language. Crystal syntax is close to Ruby, but not fully compatible with it, despite the fact that some Ruby programs are executed without […]

The post Crystal 1.2 Programming Language Released appeared first on Linux Today.

Share Button
Read More
| by Arround The Web

Backup Ext2, Ext3, or Ext4 File Systems in Linux

The implementation of the Ext2 file system overcame the limitations posed by Ext; the original Linux file system. Ext2 does not support any journaling feature, has 16GB to 2TB maximum individual file size, and 2TB to 32TB being its overall file system size. When considering the creation of backups for Ext2, Ext3, and Ext4 file systems in Linux, it […]

The post Backup Ext2, Ext3, or Ext4 File Systems in Linux appeared first on Linux Today.

Share Button
Read More
| by Arround The Web

Software Freedom Conservancy Sues Vizio for GPL Violations

The major US TV vendor Vizio stands accused of failing to fulfill the basic requirements of the General Public License (GPL) in its TV source code.
The post Software Freedom Conservancy Sues Vizio for GPL Violations appeared first on Linux Today.

Share Button
Read More
| by Arround The Web

How to Install Git on Ubuntu

Here are simple and straightforward instructions on how to install Git on Ubuntu. Works for any Ubuntu version, including Ubuntu 18.04, 20.04, 21.10, and other Debian-based distros.
The post How to Install Git on Ubuntu appeared first on Linux Today.

Share Button
Read More
| by Arround The Web

You Can Now Install the UnityX Desktop in Arch Linux, Here’s How

UnityX is the successor of the Unity7 desktop environment created by Canonical for its popular Ubuntu Linux distribution back in 2011 with the Ubuntu 11.04 release. But Canonical pulled the plug on Unity7 after seven years of development, yet the community wasn’t ready for this major change. In May 2020, developer Rudra Saraswat created an […]

The post You Can Now Install the UnityX Desktop in Arch Linux, Here’s How appeared first on Linux Today.

Share Button
Read More
| by Arround The Web

How To Find Available Network Interfaces On Linux

This detailed tutorial addresses all the possible ways to find available network interfaces on Linux and Unix operating systems.
The post How To Find Available Network Interfaces On Linux appeared first on Linux Today.

Share Button
Read More
| by Arround The Web

Using Pip Python Package Manager on Debian 11

Pip is a widely used package manager for the Python programming language. It is used for installing and managing additional packages that are not available in the Python standard library. In this article, I will show you how to install and use Pip on D…

Share Button
Read More
| by Arround The Web

Sending EmailsSend them from Linux Terminal?

Send them from Linux Terminal

Does your job require sending a lot of emails on a daily basis? And you often wonder if or how you can send email messages from the Linux terminal.

This article explains about 6 different ways of sending emails using the Linux terminal. Let’s go through them.

sendmail Command

Use the sendmail command to send emails to one or more people at once. Sendmail is one of the most popular SMTP servers in Linux. You can easily send emails directly from the command line using the sendmail command. To route the information, the sendmail command makes use of the network configured on your system. 

Let’s execute the following commands to create a file having email content.

cat /tmp/email.txt

Subject: Terminal Email Send

Email Content line 1

Email Content line 2

The Subject will be the line used as a subject for the email.

Now, to send the email, use the following syntax.

sendmail user@example.com  

mail Command

Just like Sendmail, you can use the mail command for sending emails from the terminal. Use the below-given command for this purpose.

mail -s "Test Subject" user@example.com 

Here -s defines the email subject. 

To send an attachment included within the email, type the below-mentioned line.

mail -a /opt/backup.sql -s "Backup File" user@example.com 

Here -a is used to include attachments. If yours is a Debian-based distro, use -A because it uses the mailutils package.

If you have to send emails to multiple recipients at a time, add comma-separated emails in the following manner.

mail -s "Test Email"  user@example.com,user2@example.com 

mailx Command

The GNU Mailutils is a combination of multiple utility packages. All Mailutils can operate on mailboxes starting from UNIX maildrops, maildir, and all the way up to remote mailboxes. These mailboxes are accessed with IMAP4, POP3, and SMTP. Mailutils is made for developers, regular Linux users, and system administrators. 

For the installation purpose, use the following command.

sudo apt install mailutils

The mailutils package is mainly made of 2 commands, mail and mailx, and they both function in a similar manner.

Share Button
Read More
| by Arround The Web

How to Install Memcached on Ubuntu 20.04

Memcached is a free and open-source program that eases the re-extraction of information from a database with an object caching program, which allows for PHP-based apps such as WordPress and Joomla to run smoothly without much latency.
The post How to I…

Share Button
Read More
| by Arround The Web

Manage Multiple Logical Volume Management Disks using Striping I/O

In this article, we are going to see how the logical volumes write the data to disk by striping I/O. Logical Volume management has one of the cool features which can write data over multiple disks by striping the I/O.
The post Manage Multiple Logical V…

Share Button
Read More
| by Arround The Web

How to Install Opera Browser Stable, Beta, or Developer on Linux Mint 20

In the following tutorial, you will learn how to install Opera Browser on Linux Mint 20 with either the stable, beta, or developer branches.
The post How to Install Opera Browser Stable, Beta, or Developer on Linux Mint 20 appeared first on Linux Today.

Share Button
Read More