How To Remove a Package Without the Dependencies (yum/rpm)

To remove a specific package without its dependencies use rpm:
1 2 |
rpm -qa | grep pecl rpm -e --nodeps php55-pecl-jsonc php55-pecl-jsonc-devel |
As always, YMMV!
![]() |
To remove a specific package without its dependencies use rpm:
1 2 |
rpm -qa | grep pecl rpm -e --nodeps php55-pecl-jsonc php55-pecl-jsonc-devel |
As always, YMMV!
1 2 3 4 |
# service httpd stop # yum erase php-common php # yum install php53* # service httpd start |
To get mcrypt installed, read this post: http://www.ericmichaelstone.com/?p=4702