Windows Update KB5018410 fails to install Windows 10 version 21H2
Windows Update KB5018410 fails to install Windows 10 version 21H2
Microsoft recently released Windows 10 Build 19044.2130 with KB5018410 Update for Devices running Windows 10 November 2021 update with various security fixes. But it appears to be causing headaches for users.
Unfortunately, some users report a lot of problems.
Some report that KB5018410 for Windows 10 version 21H2 broke some PCs.
Some others 2022-10 Cumulative update for windows 10 version 21H2 for x64 based system (KB5018410) failed to install with different errors 0x800f0922, 0x800f0826 and more.
There are also problems with the work of the explorer that hangs.
The taskbar also stops working and starts flashing.
Computer has become slower.
Windows crashes with a blue screen (BSOD) and reboots.
Windows explorer crashes or freezes.
The taskbar icons do not appear.
Also, system users mentioned on the Microosft forums as the windows 10 KB5018410 upsate was downloaded but stuck while installing these updates.
Here's a list of all bug fixes:
-
Addresses an issue that requires you to reinstall an app if you did not get the app from the Microsoft Store. This issue occurs after you upgrade to Windows 10 or a newer OS.
-
Addresses a rare error that leads to a blue screen. This occurs after you change the display mode while you are using more than one display.
-
Addresses an issue that forces the IE mode tabs in a session to reload.
-
Addresses an issue that affects IE mode after you open a PDF file. When you try to open a different page using the same browser window, the page will not open in that browser window.
-
Addresses an issue that affects the Microsoft Japanese IME when it is active and the IME mode is on. When you use the numeric keypad to insert a dash (-) character, the IME inserts the wrong one.
-
Addresses an issue that affects the rendering of the search box. It does not render properly if you sign in using Tablet mode.
-
Addresses a known issue that affects daylight saving time in Chile. This issue might affect the time and dates used for meetings, apps, tasks, services, transactions, and more.
Last but not the least, the update contains miscellaneous security improvements to internal OS functionality, as per Microsoft's security documentation.
How to fix: Windows 10 issues after installing KB5018410 update.
Step 1. Uninstall KB5018410 update.
Proceed and remove the KB5018410 update
Step 2. Install KB5020435 Update.
1. Navigate to Microsoft Update Catalog website and download the KB5020435 update according your Windows 10 version.
How to clear the YUM cache
How to clear the YUM cache
What is yum?
The Yellowdog Updater, Modified (yum) is an open-source command-line package-management utility for Linux operating systems using the RPM Package Manager. Yum allows automatic updates, package and dependency management, on RPM-based distributions. Like the Advanced Packaging Tool (APT)
How to clear the yum cache:
When a package is downloaded, installed and is removed there is a chance that the package may still be saved/stored in the yum’s cache. So to clean all the cached packages from the enabled repository cache directory, login as root and execute the following:
#yum clean packages
To purge the old package headers information completely, execute the execute the command below:
#yum clean headers
To clean metadata for each enabled repository, execute the command below:
#yum clean metadata
If you wish to clean all the cached files from any enabled repository at once, execute the command:
#yum clean all
Mount an NTFS drive on CentOS 7
Mount an NTFS drive on CentOS 7
NTFS-3G
NTFS-3G is a stable, open source, GPL licensed, POSIX, read/write NTFS driver for Linux. It provides safe handling of the Windows XP, Windows Server 2003, Windows 2000, Windows Vista, Windows Server 2008 and Windows 7 NTFS file systems.
NTFS-3G can create, remove, rename, move files, directories, hard links, and streams.
To mount an NTFS drive, start off by adding the remi-release and epel-release repos to your installation
Epel Repo: https://fedoraproject.org/wiki/EPEL
#yum install epel-release
Remi Repo: https://rpms.remirepo.net
wget http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
rpm -Uvh remi-release-7.rpm
How Do I Install NTFS-3G
Issue the following command to install
#yum install ntfs-3g
You also need the Fuse package but it’s usually pre-installed on CentOS, just verify if it’s installed or not
#yum install fuse
Load the module
#modprobe fuse
List the attached drives to find the NTFS drive to mount
#fdisk -l - show all drive
How Do I Find Out NTFS Partition Name?
Simply type the following command:# fdisk -l /dev/sda
# fdisk -l /dev/sdb
How Do I Mount /dev/sda1 NTFS Partition at /mnt/ntfs?
First, load the fuse driver, enter:# modprobe fuse
Create a mount point, enter:# mkdir /mnt/ntfs
To mount the ntfs partition, enter:# mount -t ntfs-3g /dev/sda1 /mnt/ntfs
You can use regular Unix commands to copy or access the files:$ df -h
$ mount
$ cd /mnt/ntfs
$ cp foo /tmp
How Do I Unmount NTFS Partition?
Type the following command:# umount /mnt/ntfs
Migrating PostgreSQL files to new server
Migrating PostgreSQL files to new server
Install the latest minor release of the same PostgreSQL major version - e.g. if you were using 9.4.1 before, install 9.4.26. Make sure it's the same architecture - i.e. if you were using a 32-bit PostgreSQL before you must install 32-bit PostgreSQL now.
- Stop the service (postgresql) using the services control panel (
services.msc
). - Path in services - "C:\Program Files\PostgreSQL\9\bin\pg_ctl.exe" runservice -N "postgresql-x64-9" -D "D:\PostgreSQL\9\data" -w do not
- Modify the configuration to the following with the
sc
command: sc config postgresql-x64-9.4 binPath= "\"C:\Program Files\PostgreSQL\9.4\bin\pg_ctl.exe\" runservice -N \"postgresql-x64-9.4\" -D \"E:\pg_db\data\" -w" - Delete
%PROGRAMFILES%\PostgreSQL\9.4\data
. - Copy the old
data
directory to that location - copyC:\Program Files\PostgreSQL\9.4\data\
toE:\pg_db\data
- Get properties on the
data
directory and in the security tab recursively grant full control toNETWORKSERVICE or pgsql - - bad permissions will prevent the database from starting
- Start the service using
services.msc
- immediately set up backups.