[Solution] Error: initscripts conflicts on cPanel server Print

  • 0

When I ran "yum -y update" to update packages, it updated all but initscripts.x86_64.

I got the following error message: initscripts.x86_64 0:9.49.47-1.el7 failed to install.

---

Solution:

To fix this error, run the following command as root.

chattr -i /usr/lib/udev/rules.d/60-net.rules

 File "60-net.rules" is immutable, so you are getting the error. chattr -i will clear the immutable attribute of the file and then it can be modified.

After running the above command, run

yum update -y

to update all packages. :)

  •  

Was this answer helpful?

« Back

Send Message