Comandos útiles firewalld
22 de junio de 2023Ocultar categorías en WordPress
3 de agosto de 2023COMANDOS YUM
Actualiza el sistema a las últimas versiones de los repos que tenga habilitados
yum update
Instala un paquete
yum install package
Remueve un paquete
yum remove package
Actualiza un paquete
yum update package
Lista paquetes que coincidan con el patrón
yum list package
Lista si el paquete indicado está instalado
yum list installed | grep package
Búsqueda de un paquete
yum search package
Información sobre un paquete
yum info package
Chequea actualizaciones de paquetes
yum check-update
Habilita un repo e instala paquete desde él
yum --enablerepo=epel install phpmyadmin
Lista los repos disponibles
yum repolist all
Limpia la cache de los repos habilitados
yum clean all
Lista las transacciones del sistema
yum history
Mira el historial de actualizaciones, etc…
yum history list all
Downgrade D At least one package has been downgraded to an older version.
Erase E At least one package has been removed.
Install I At least one new package has been installed.
Obsoleting O At least one package has been marked as obsolete.
Reinstall R At least one package has been reinstalled.
Update U At least one package has been updated to a newer version.
Before the transaction finished, the rpmdb database was changed outside Yum.
After the transaction finished, the rpmdb database was changed outside Yum.
- The transaction failed to finish.
The transaction finished successfully, but yum returned a non-zero exit code.
E The transaction finished successfully, but an error or a warning was displayed.
P The transaction finished successfully, but problems already existed in the rpmdb database.
s The transaction finished successfully, but the –skip-broken command-line option was used and certain packages were skipped.
Rollback to register 8 in yum history list
yum history undo 8
Arroja información sobre esa transaccion
yum history info 8
Da información sobre el historial de un paquete
yum history info package
Va hacia atrás hasta la transacción 8
yum history rollback 8
yum update –disablerepo= –enablerepo=securitypatches*