| Red Hat Enterprise Linux (RHEL) | SUSE Linux Enterprise Server (SLES) | |
| Owned By | Red Hat Red Hat, Inc is an American MNC with head office in Raleigh, North Carolina (USA). It was founded in March 26th 1993. Now, it has been acquired by IBM. | SUSE It is a German based software MNC, founded in 1992 and headquarter located at Nuremberg, Germany. |
Friday, August 23, 2019
Tuesday, June 11, 2019
Steps to fix or resolve Error 15 or Error 17 or No files under /boot.
We get to see “Error 15” or “Error 17” when the ‘/boot’ file system is corrupted, so system fails to boot up. This is mainly because of primary boot loader files missing or not found. It could also be possible that the ‘/boot’ file system has been overwritten or formatted by mistake.
Friday, May 17, 2019
Common Debugging Methods In Linux
The top 6 common debugging methods in Linux.
( 1 ) Increase logging verbosity
As usual, in Linux systems we could look out for errors/warnings/info related messages in "/var/log/messages" file. By default only ‘info’ ( information) and above messages gets logged in to this file, so to increase this logging verbosity one could edit the configuration line of "/var/log/messages" in "/etc/rsyslog.conf" file.
Change this line from :
*.info;mail.none;authpriv.none;cron.none /var/log/messages
to
*.debug;mail.none;authpriv.none;cron.none /var/log/messages
After making this change, save and exit the file. Restart the “rsyslogd” service ( 'systemctl restart rsyslog.service' or 'service rsyslog restart' in case of RHEL6.x and older) to make the changes come into effect. NOTE: Keep in mind that this would generate a lot of logs and "/var" may get filled up fast, so after the diagnosis make sure to revert the changes.
Sunday, March 3, 2019
What Is Firewalld & How To Configure Rules?
A Note on netfilter
In Linux ‘netfilter’ is being used which is a powerful network filtering sub-system. This allows kernel modules to inspect each packet traversing the system, and it could be dropped or rejected or allowed in a programmatic way and this applies to all incoming, outgoing and forwarded packets. So, in earlier RHEL6.x version we had ‘iptables’ which is a well-known netfilter program. However, in RHEL7.x version and above we've ‘firewalld’ in-place of ‘iptables’.
Thursday, January 17, 2019
Let's Automate System Health Check In Linux
Tuesday, December 4, 2018
RHEL 8 Beta: Bits & Pieces
Yes, Red Hat has recently released the Beta version of Red Hat Enterprise Linux (RHEL) 8. This is still in a rigorous testing and development phase, so there could be some changes compared with ‘Stable’ release later. As everyone I was also keen on installing the ‘beta’ version and checking how it works, what are the differences, what’s new, what is not available etc., hence, I thought of writing up this post to give a glimpse of RHEL 8 beta.
Subscribe to:
Posts (Atom)