Getting started
395 articles and guides on getting started from the NexonHost team — page 2 of 17.

How to use lspci command in Linux.
How To Use Lspci Command In Linux. In this tutorial, we will cover the lspci command syntax and show you different ways to use it. The lspci (list PCI) Linux command displays information about each PCI bus on your system. This includes information about the devices connected to the PCI subsystem.…
Read article →
How to use lsof command in Linux.
How To Use Lsof Command In Linux. This article will explain how to use the lsof command in Linux with examples. Introduction The lsof command stands for LiSt Open Files and shows open files and which process uses them. Since Linux sees every object as a file, such as devices, directories, etc.,…
Read article →
How to use look command in Linux.
How To Use Look Command. The look command in Linux shows the lines beginning with a given string. This command also uses binary search if the file is sorted. If file is not specified, the file /usr/share/dict/words is used. And then only the alphanumeric characters are compared and the case of…
Read article →
How to use let command in Linux.
How To Use Let Command. In this tutorial, we will go over the let command syntax, options, and usage examples. Bash let is a built-in command in Linux systems used for evaluating arithmetic expressions. Unlike other arithmetic evaluation and expansion commands, let is a simple command with its own…
Read article →
How to use join command in Linux.
How To Use Join Command. Linux is an open-source operating system that provides users with a wide range of utilities and tools for managing and manipulating data. One such tool is join command, which is used to join two different files based on a common field. join command is a very useful utility…
Read article →
How to use jobs command in Linux.
How To Use Jobs Command. A “job” is a set of instructions or a unit of work that is assigned to an operating system for execution. In Linux, the “jobs” command permits you to interact with the system jobs through the terminal directly. This command is also used to check the states of the jobs…
Read article →
How to use iostat command in Linux.
How To Use Iostat Command. The iostat command in Linux is used for monitoring system input/output statistics for devices and partitions. It monitors system input/output by observing the time the devices are active in relation to their average transfer rates. The iostat produce reports may be used…
Read article →
How to use iconv command in Linux.
How To Use Iconv Command. iconv command is used to convert some text in one encoding into another encoding. If no input file is provided then it reads from standard input. Similarly, if no output file is given then it writes to standard output. If no from-encoding or to-encoding is provided then…
Read article →
How to use gawk command in Linux.
How To Use Gawk Command. The basic gawk syntax looks like this: gawk [options] [actions/filters] input_file The command cannot be run without any arguments. The options are not mandatory, but for gawk to produce output, at least one action should be assigned. Actions and filters are different…
Read article →
How to use fuser command in Linux.
How To Use Fuser Command. The fuser command (Find USER) is a process management tool that identifies processes using a file, a directory, or a socket. Additionally, fuser provides information about the process owner and access type and terminates processes in question. Linux fuser Syntax The fuser…
Read article →
How to use egrep command in Linux.
How To Use Egrep Command. This guide explains how to use the Linux egrep command through practical examples. The egrep (Extended Global Regular Expression Print) command is a text processing tool that searches for patterns or regular expressions in a specified location. The tool provides the same…
Read article →
How to use dd command in Linux.
How To Use Dd Command. In this tutorial, we learn about dd command in Linux with practical examples. The Linux dd command is one of the most powerful utilities for Unix and Unix-like operating systems. It can be used in a variety of ways. dd command in Linux dd command is mainly used for copying…
Read article →
How to use csplit command in Linux.
How To Use Csplit Command. The csplit command is used to split any file into many parts as required by the user. The parts are determined by context lines. Output pieces of FILE separated by PATTERN(s) to files ‘xx00’, ‘xx01’, …, and output byte counts of each piece to standard output. Syntax:…
Read article →
How to use chkconfig command.
How To Use Chkconfig Command. This guide will show you how to use the chkconfig command to control system services in Linux. Modern Linux distributions come with the systemd initialization system that allows users to manage services with the systemctl command. However, some older systems still use…
Read article →
How to use cfdisk command in Linux.
How To Use Cfdisk Command. cfdisk command is used to create, delete, and modify partitions on a disk device. It displays or manipulates the disk partition table by providing a text-based “graphical” interface. cfdisk /dev/sda See the available free space. Here we have 20 GB. Select NEW and create…
Read article →
How to understand critical system services.
How To Understand Critical System Services In Linux. Linux, being an open-source and highly customizable operating system, relies on various services and daemons to perform essential functions. These services handle everything from system initialization to managing network connections and user…
Read article →
How to understand are Linux Daemons.
What Are Linux Daemons. A daemon (usually pronounced as: day-mon, but sometimes pronounced as to rhyme with diamond) is a program with a unique purpose. They are utility programs that run silently in the background to monitor and take care of certain subsystems to ensure that the operating system…
Read article →
How to understand linux logs.
How To Understand Linux Logs. Linux logs provide a timeline of events for the Linux operating system, applications, and system and are a valuable troubleshooting tool when you encounter issues. When issues arise, analyzing log files is the first thing an administrator needs to do. How can Linux…
Read article →
How to use clear command in Linux.
How To Use Clear Command. In Linux, clear is built-in command which is used to clear terminal screen. This command runs on different distributions of Linux based operating systems like Ubuntu, Fedora, Debian, Kali, Red Hat etc. In this tutorial we will discuss syntax for command echo with examples.
Read article →
How to use host command in Linux.
How To Use Host Command. Follow this article’s guideline to learn how to use hostname command on Linux. Host is a command line utility that makes it possible for the Linux users to find information about a given host on a network. You can use the host command to lookup the domain’s IP address and…
Read article →
How to use od command in Linux.
How To Use Od Command. The “od” is an efficient command that helps to understand the complex data which is not human-readable. In Linux operating system, “od” is a useful command that converts the input in multiple formats with octal format by-default. As we all know, Octal has a base-8 number…
Read article →
How to use mount command in Linux.
How To Use Mount Command. The Linux file system hierarchy is arranged in a tree, with the file system starting from the root directory (/). All other child file systems branch out from the root directory. The mount command allows users to mount, i.e., attach additional child file systems to a…
Read article →
How to use zcat command in Linux.
How To Use Zcat Command. The “zcat” command in Linux is a tool for displaying the contents of compressed files in the “gzip” format. It is similar to the “cat” command, which is used for indicating the contents of regular text files, but it is specifically designed for working with compressed files.
Read article →
How to use cal command in Linux.
What is cal command? Sometimes, you might want to have a peek at the year’s calendar or even narrow it down to a month’s calendar. The Linux cal command is an excellent built-in tool that displays a calendar of a given year or month depending on the options passed. How Does cal Command Work?…
Read article →