To disable the fast mirror plugin in a CentOS Linux server, you can follow these steps:
- Open the Yum configuration file:
sudo nano /etc/yum/pluginconf.d/fastestmirror.conf
- Change the enabledsetting to0:
[]
enabled=0
- Save and close the file.
- Update the Yum cache:
sudo yum makecache
The fast mirror plugin is now disabled, and Yum will no longer use the plugin to select the fastest mirror for package updates and installations.
