Due to rate limiting by rsyslog, /var/log/messages is showing lots of dropped message entries: … Nov 7 14:23:14 thx1138 rsyslogd-2177: imuxsock lost 516 messages from pid 159386 due to rate-limiting Nov 7 14:23:15 thx1138 rsyslogd-2177: imuxsock begins to drop messages from pid 159386 due to rate-limiting Nov 7 14:23:20 thx1138 rsyslogd-2177: imuxsock lost 512 messages […]
Archives for October 2019
Troubleshooting slow network communication or Connection Timeouts in Linux
Troubleshooting a slow network or network packet drops can be tricky. In addition to slower network communication, there may be additional symptoms observed, such as : Attempts to connect to a server with ssh and/or sftp results in time-outs or a delayed response. When the network load goes high, there are high number of network […]
3 Ways of Increasing Swap Space on Linux
Sometimes the default physical memory is not enough to serve certain tasks or processes. It may happen that the processes are swapping more memory in and out of the swap space. This post helps to explain how to increase the swap memory on a Linux system. There will be 3 different ways explained in this […]
How to resize (extend) a partition-based file system in Linux
Note: Resizing a filesystem on a disk parition can be dangerous and can result in loss of data. Make sure you have the backup taken prior to following the steps outlined below. Caveats 1. The filesystem you want to resize must reside on the last partition of the disk. There is no data loss in […]
Basic “chmod” Command examples in Linux
The Linux command to change permissions on a file or directory is chmod, which we like to read as change file mode. chmod has two operating modes: symbolic mode numeric/octal mode To change permission using the Linux chmod command we have to follow some syntax and rules. As we discussed above we can change permission […]