Linux Resources
- Home
- Linux Resources
This article covers how to check the hardware information on your Linux system graphically using the hardinfo tool. In fact, a linux system is consists of different types of hardware such as processor, RAM, hard disk, network cards, etc. Linux provides various tools to check the details of these hardware parts.
You can launch hardinfo tool from the terminal by using the below command:
$ hardinfo
This article covers tilix features and different ways to install tilix on Ubuntu Linux system. In fact, we mentioned a few usages of the tilix which are very much highlighting and should have been present in a standard terminal emulator.
How to Install Tilix Terminal Emulator on Linux ?
Open terminal and execute the below commands:
$ sudo apt update
$ sudo apt-get install tilix
This article covers strace utility tool and when It can be used. In fact, you will see how to use strace commands to troubleshoot and debug system calls and processes.
Also, Strace monitors the system calls and signals of a specific program. It is helpful when you do not have the source code and would like to debug the execution of a program. strace provides you the execution sequence of a binary from start to end.
This article covers steps to install Hugo on your Linux Mint system. In fact, Hugo is an open-source static website generator designed for small projects and informative sites.
How to Install Hugo Using The Apt-get Utility ?
1. The first thing when installing Hugo using the apt-get is updating your server’s apt index:
$ sudo apt-getupdate
2. Once the package index is updated, run the command below to install Hugo:
$ sudo apt-get install hugo
3. Hugo will be installed automatically on your server. To check the Hugo version installed, run the command below:
$ sudo hugo version
This article covers how to recover the file in a few minutes using TestDisk on Linux systems. Deleting files is unavoidable as everyone likes to work in a decluttered and organized system. Whenever we delete something from our system, it does not actually get deleted, till that space gets overwritten by something else in the disk.
What TestDisk tool can do on your Linux System:
This article covers how to exclude in grep. In fact, grep is a powerful command-line tool that is used to search one or more input files for lines that match a regular expression and writes each matching line to standard output.