The I/O cache encountered an error while updating data in medium "ahci-0-1" (rc=VERR_DISK_FULL). Make sure there is enough free space on the disk and that the disk is working properly. Operation can be resumed afterwards.
25 Oct, 2024 • 2 min de lectura
Error ID: BLKCACHE_IOERR Severity: Non-Fatal Error
The I/O cache encountered an error while updating data in medium “ahci-0-1” (rc=VERR_DISK_FULL). Make sure there is enough free space on the disk and that the disk is working properly. Operation can be resumed afterwards.
Contenidos
Verificar espacio disponible:
Este error en VirtualBox indica que el disco donde están los archivos de la máquina virtual se ha quedado sin espacio. Aquí están las soluciones:
df -h
Limpiar espacio:
# Limpiar paquetes no necesarios
sudo apt autoremove
sudo apt clean
# Vaciar papelera
rm -rf ~/.local/share/Trash/*
# Limpiar kernels antiguos
sudo apt remove --purge $(dpkg -l 'linux-image-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/\(.*\)-\([^0-9]\+\)/\1/")"'/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d')
Limpiar archivos VirtualBox:
# Eliminar snapshots no necesarios
VBoxManage snapshot [nombre_VM] list
VBoxManage snapshot [nombre_VM] delete [snapshot_name]
# Compactar el disco virtual
VBoxManage modifyhd [ruta_al_disco.vdi] --compact
Mover la VM a otro disco:
# Primero apaga la VM
VBoxManage clonevm [nombre_VM] --basefolder [nueva_ruta]
Expandir el disco virtual:
VBoxManage modifyhd [ruta_al_disco.vdi] --resize [tamaño_en_MB]
Te podría interesar
-
Depurando Race Conditions: Cuando DOMContentLoaded Falla
A veces, las mejoras de rendimiento traen efectos secundarios inesperados. Recientemente, al migrar Becommerce.es a una infraestructura más rápida, una funcionalidad crítica dejó de funcionar:...
-
La Guía Definitiva: Comentarios en Jekyll y Migración Híbrida con Giscus
Una de las grandes “pérdidas” al migrar de WordPress a un sitio estático como Jekyll es el sistema de comentarios. Al no tener base de...
-
Docker Swarm contenedor php-fpm infectado 100% CPU
Cómo Arreglar Docker Swarm Infectado con Malware PHP-FPM
-
Illuminate \ Database \ QueryException PHP SQLSTATE[HY000] [2002] No such file or directory select * from sessions where id = B9e limit 1
¡Arregla el error de Database No such file or directory select!
-
Problema comando: git Fetch --all regresa: error: cannot lock ref 'refs/remotes/origin/main: is at sd78f7u... but expected s9.... From https://GitHub.com/... (Unable to update local ref)
Problema al ejecutar git fetch --all