Diferencia entre revisiones de «Ubuntu»
De TechShareRoom wiki
Más acciones
(No se muestran 14 ediciones intermedias del mismo usuario) | |||
Línea 1: | Línea 1: | ||
== | = Tutoriales = | ||
* | ===== Escritorio remoto ===== | ||
*[[Configurar acceso remoto Ubuntu | Configurar acceso remoto]] - Conectarse a Ubuntu desde otro equipo. | |||
= Recursos = | |||
*[https://en.wikipedia.org/wiki/Ubuntu_version_history#Table_of_versions Tabla de versiones] | *[https://en.wikipedia.org/wiki/Ubuntu_version_history#Table_of_versions Tabla de versiones] | ||
= Mantenimiento = | |||
*[[Mantenimiento Ubuntu básico]] | *[[Mantenimiento Ubuntu básico]] | ||
*[[Mantenimiento Ubuntu avanzado]] | *[[Mantenimiento Ubuntu avanzado]] | ||
= Solución a problemas = | |||
*[ | *[[Recuperar grub en Ubuntu | Recuperar grub]] | ||
*[[My /boot partition hit 100% and now I can't upgrade. Can't remove old kernels to make room]] | |||
* | *[https://www.techrepublic.com/article/how-to-fix-apts-the-following-packages-have-been-kept-back-issue/ The following packages have been kept back] | ||
*[[Cannot load /usr/lib/apache2/modules/libphp8.1.so into server, cannot open shared object file: no such file or directoy]] | |||
= Comandos = | |||
===== Actualizar a versión superior del sistema ===== | |||
<syntaxhighlight lang="bash "> | <syntaxhighlight lang="bash "> | ||
do-release-upgrade | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Tras realizar la actualización y reiniciar, posiblemente algunas cosas dejene de funcionar. | |||
Un ejemplo de ellos es si usabas ufw o similares, debes reinstalarlo (la actualización lo puede borrar) y reiniciar los servicios o el sistema y todo debería funcionar como siempre. | |||
<syntaxhighlight lang="bash "> | <syntaxhighlight lang="bash "> | ||
apt install ufw | |||
ufw enable | |||
</syntaxhighlight> | </syntaxhighlight> | ||
También te tocará volver a habilitar los repositorios de terceros que se deshabilitaron por la actualización. |
Revisión actual - 01:24 28 ago 2025
Tutoriales
Escritorio remoto
- Configurar acceso remoto - Conectarse a Ubuntu desde otro equipo.
Recursos
Mantenimiento
Solución a problemas
- Recuperar grub
- My /boot partition hit 100% and now I can't upgrade. Can't remove old kernels to make room
- The following packages have been kept back
- Cannot load /usr/lib/apache2/modules/libphp8.1.so into server, cannot open shared object file: no such file or directoy
Comandos
Actualizar a versión superior del sistema
do-release-upgrade
Tras realizar la actualización y reiniciar, posiblemente algunas cosas dejene de funcionar.
Un ejemplo de ellos es si usabas ufw o similares, debes reinstalarlo (la actualización lo puede borrar) y reiniciar los servicios o el sistema y todo debería funcionar como siempre.
apt install ufw
ufw enable
También te tocará volver a habilitar los repositorios de terceros que se deshabilitaron por la actualización.