How to Open a Port in CSF Firewall?

What is a port A port is a communication endpoint. At the software level, within an operating system, a port is a logical construct that identifies a specific process or a type of network service. A port is identified for each transport protocol and address combination by a 16-bit unsigned number, known as the port number. The most common transport protocols that use port numbers …

Sync Linux System Clock with a Remote NTP Server

NTP stands for Network Time Protocol is an internet protocol, which is used to synchronize the system clock between computers. Please note that you must have NTP installed on the system to enable automatic time synchronization with NTP servers. Configuring NTP : Use the set-ntp argument to enable or disable automatic synchronization of your system clock with a remote server …

How to change timezone

A time zone is a geographic region that has the same standard time. Typically the time zone is set during the installation of the operational system, but it can be easily changed at a later time. Using the correct time zone is essential for many systems related tasks and processes. For example, the cron daemon …

How to check Inode Usage

What is the inode? Inode is a data structure in a Unix-style filesystem that describes a file-system object such as a file or a directory. It may contain metadata information like file access time, permissions, etc. Each filesystem or partition has its own set of inodes. To uniquely identify a file, you need both the …

Linux help command

Help command : On Unix-like operating system shells, the help command displays information about builtin commands. Help displays brief summaries of shell built-in commands. If PATTERN is specified, gives detailed help on all commands matching PATTERN, otherwise the list of help topics is printed. Syntax help [-dms] [PATTERN …] Options d – Output short description …

How to change file permissions in linux

Linux File Permissions Every file and directory on your Unix/Linux system is assigned 3 types of owner, given below. Owner is the usually the creator of the files/folders. In Linux, files or folders that you created in your Home directory are usually owned by you, unless you specifically change the ownership. Group contains a group …

BASIC COMMANDS IN LINUX

This is introduction to some common Linux commands is for you. These commands are the ones that Linux system administrators use frequently # ls – lists directory contents The ls command – the list command – functions in the Linux Terminal to show all of the major directories filed under a given file system. For example, the command: …