Windows 10 – How to disable News and Interests on taskbar

If you recently perform Windows Update, you will noticed that News and Interests widget installed on the taskbar.

For those who like it, this widget is useful. You will see a weather forecast in a small box next to the clock and notification area. Selecting the widget opens a panel with more weather info, stocks, sports scores, news, and more. But if you don’t like it, you can disable it.

For those who want to disable News and Interests appear on taskbar, just follow below steps:-

  1. Mouse over to taskbar, and right click
  2. From the menu, select “News and Interests” and then click “Turn Off” from the submenu.

Before

After

NagiosXi SQL Error – Table is marked as crashed and should be repaired

Root Cause:- Nagios is constantly read and write to the mysql database, killing the mysqld process will cause the database table crashed.

Below are the most common action cause the database table crashed

  • power outages,
  • running out of disk space
  • improper shutting down

You will see similar error log show in mysqld.log

You also will see SQL Error show on the NagiosXi Page

Solution:-

You can repair the nagios and nagiosql databases by running the following commands in the command line as the root user:

Above script will repair both databases (nagios and nagiosql)

How to install a Debian update manually?

As a best practice, we should keep all the server patch with latest update. This tutorial tells i will demonstrate how to patch your Debian server with the latest updates. You need to use either apt-get command or apt command to apply patches to Debian Linux server.

Step:

i. Connect to your Debian system via SSH. Once you are in the terminal, enter the following commands:-

apt-get update

apt-get update command is used to download package information from all configured sources

Continue reading