CentOS

How to Install Minicom on Linux?

How to Install Minicom on Linux?

Fadıl

Minicom is a variant of a program used in Linux operating systems to connect devices with a serial port (COM).

Below we will see how it is installed on different Linux operating systems.

  • Command used to Install Ubuntu / Debian:
sudo apt-get install minicom
  • Installing for Fedora, CentOS, RHEL
$ sudo yum install minicom -y
  • To Start
minicom
  • Or
sudo minicom

After starting, you need to open the configuration by pressing CTRL-A O and specify the name of the COM port, usually ttyS0 – COM1, ttyS1 – COM2, USB-RS232 adapter – ttyUSB0.

How to Configure Proxy for Yum Repository on Linux Operating Systems

How to Configure Proxy for Yum Repository on Linux Operating Systems

Fadıl

In this article, we will see how to Configure Proxy for Yum Repository. If our servers are accessing the internet via a “Proxy Server“, we can see that even if we can access the internet when we run a command such as “yum install package-name“, we can’t access it. In such a case, the settings that we will talk about in our article should be made.

1. We open the “etc/yum.conf” file on our server and edit it as follows.

How to Configure NTP in Linux Operating Systems?

How to Configure NTP in Linux Operating Systems?

Fadıl

What is NTP?

An abbreviation for “ NTP Network Time Protocol”. NTP is a protocol used to synchronize the clocks of computers on packet-switched networks with variable latency. The protocol is specifically designed to be resistant to the effects of variable delay, thanks to the use of jitter buffers. NTP is one of the oldest Internet protocols still in use. NTP uses the User Datagram Protocol (UDP) over port 123. NTP settings are made from either the  /etc/ntp.conf or /etc/xntp.conf file, depending on which Linux distribution is used.

How to Install Htop?

How to Install Htop?

Fadıl

Many users use the top command to monitor the processes running on the Linux operating system from the command line and to see the amount of CPU and memory these processes use. In this article, we will learn the  htop application, which has a similar task with the top command but provides easier use.

The first striking change in the htop application is that there is a text graph at the top of the screen showing the usage of all cores, memory, and swap space. This part is much more understandable and useful than the top command.

Learning Linux System Information Commands

Learning Linux System Information Commands

Fadıl

Learning Linux distribution information

The lsb_release command is used to get information about the operating system on Linux. Using this command alone does not mean anything, for this, it is necessary to use the relevant parameters after the command.

lsb_release [parametre]

Let’s see the lsb_release --help the command to see the available parameters:

If we want to see all the information, the lsb_release -a the command is used for this.

Learning kernel knowledge on Linux

It is learned by using the uname (Unix Name) the command to learn kernel information.