Linux Resources
- Home
- Linux Resources
This article covers How to Set a Custom SSH Warning Banner and MOTD in Linux. In fact, SSH banner warnings are necessary when companies or organizations want to display a stern warning to discourage unauthorized parties from accessing a server.
This article covers how to install the Octave programming language on a Linux Mint 20 machine. In fact, Octave is a (mostly MATLAB® compatible) high-level language, primarily intended for numerical computations. It provides a convenient command-line interface for solving linear and nonlinear problems numerically.
How to Install octave on Linux Mint via Snapd ?
1. Enable snapd
On Linux Mint 20, /etc/apt/preferences.d/nosnap.pref needs to be removed before Snap can be installed. This can be accomplished from the command line:
$ sudo rm /etc/apt/preferences.d/nosnap.pref
$ sudo apt update
To install snap from the Software Manager application, search for snapd and click Install.
Alternatively, snapd can be installed from the command line:
$ sudo apt update
$ sudo apt install snapd
2. Install octave
To install octave, simply use the following command:
$ sudo snap install octave
This article covers the different methods to check if the disk is HDD or SSD in a Linux operating system like Ubuntu 20.04 LTS server. In fact, Checking SSD/HDD health in Linux will help you to identify failed drives and they can be replaced before any data loss occurs. Therefore, If you are a system administrator and responsible for managing Linux systems in Datacenter, then, it is recommended to check the health of the SSD and HDD drives regularly.
Checking SSD/HDD health in Linux will help you to identify failed drives and they can be replaced before any data loss occurs.
How to use SMART monitoring tools in Linux ?
Smart monitoring tools is a control and monitoring utility for SATA, SCSI hard drives and solid state drive. The tool comes with a command called 'smartctl'.
Use yum to check which package provides smartctl command:
# yum provides smartctl
The output will suggest that smartmontools is the package that distributes smartctl command.
To Install smartmontools, run:
# yum install smartmontools
Use smartctl command:
# smartctl -a /dev/sda
This article covers the commands (find, locate, whereis, grep) with the help of different examples to help you easily find files and directories in your Linux mint system. In fact, In Linux operating systems, the find command may be used to search for files and directories on your system. To search for files in a directory, the user invoking the find command needs to have read permissions on that directory.
The general syntax for the find command is as follows:
$ find [options] [path...] [expression]
This article covers the process of configuring the automatic updates of a Linux Mint 20 system.
This article covers the complete installation of Plank on a Linux Mint 20 machine. In fact, Plank is a Linux dock that allows starting pinned applications and manage open windows, for X11 environments (Wayland is not supported).