1345 читали · 3 года назад
Ubuntu — Read-only file system
Иногда файловая система в Ubuntu может при загрузке перейти в состояние Read-only, когда с диска разрешено только чтение, а запись запрещена. Проверить это довольно просто, попытавшись создать любой файл: cd / touch 123 В ответ получим ошибку: cannot touch '123' : Read-only file system В моём случае под удар попала корневая директория, куда монтируется раздел /dev/sda1: df -h В Ubuntu это нормальная ситуация, особенно если в /etc/fstab присутствует запись для монтирования корневой директории вида:...
3 месяца назад
Fsck exited with status code 4 astra linux
“Fsck exited with status code 4” in Astra Linux (or any Linux system) indicates that the fsck (file system check) utility encountered a problem while checking the file system and was unable to fix it automatically. A status code of 4 specifically means: “File system errors left uncorrected.” This error usually arises during boot if the file system has been flagged as needing a check due to a previous unclean shutdown, errors detected during normal operation, or intentional flagging by the system. Here’s a breakdown of the problem and how to address it: Understanding the Problem: File System Corruption: The file system likely has some inconsistencies or errors that need to be repaired...