×


Blog


Install Tree Line on Ubuntu 20.04 LTS System - Step by step guide ?

This article covers how to install Tree Line on your Ubuntu 20.04 Linux system. In fact, Tree Line is a versatile piece of software which helps system admins to keep track of their data using various formats.


Install Glom Database Designer on Ubuntu 20.04 LTS System - Step by step guide ?

This article covers how to install glom on Ubuntu 20.04. In fact, Glom is a versatile and powerful database designing application.


Python float() Function in Linux - Step by step guide ?

This article covers how to use the float() function in Python. In fact, the float() method returns a floating point number from a number or a string. There are two number types in Python: floating-point numbers (floats) and integers. While floats can contain decimals, integers cannot.


float() Return Value

The float() method returns:

  • Equivalent floating point number if an argument is passed.
  • 0.0 if no arguments passed.
  • OverflowError exception if the argument is outside the range of Python float.


Python pow() Function in Linux - Step by step Guide ?

This article covers how to use the Python pow() function. In fact, the pow() function returns the value of x to the power of y (xy). If a third parameter is present, it returns x to the power of y, modulus z.


Configure LDAP Client on Ubuntu 20.04 - Step by step guide ?

This article covers how to configure the LDAP client on Ubuntu 20.04. In fact, LDAP allows users to store the usernames and passwords of users in a single place. This place is then used by multiple services for validating the users claiming these services. To use a service, you always need to have a client-end program that can help you to access that service.


Setup Rsyslog Server on Ubuntu 20.04 - How to do it ?

This article covers how to install and configure Rsyslog Server and Client on Ubuntu 20.04 LTS Focal Fossa system. In fact, Checking logs is an important activity to see what's happening on your Linux servers, especially when you are trying to locate an issue. In Rsyslog, the config files remain the same as Syslog. That simply means you can copy a syslog.conf file directly into rsyslog.conf and it will work.

The syslog-ng, FluentD, Logstash, GreyLog2, and Logagent, Filebeat are the other alternatives for Rsyslog.


Directory where different sorts of logs stored in a Linux system:

  • /var/log/syslog - Stores all startup messages, application startup messages etc. Practically stores all global system logs.
  • /var/log/cron - The Cron jobs are basically kind of scheduled and automated task created in the system, that runs periodically and repeatedly. You can see what this logs directory would store.
  • /var/log/kern.log - it stores kernel logs. No matter what logs they are. Event logs, errors, or warning logs.
  • /var/log/auth.log - Authentication logs.
  • /var/log.boot.log - System boot logs.
  • /var/log/mysql.d - Mysql logs.
  • /var/log/httpd - Apache logs directory.
  • /var/log/maillog - Mail server logs.