Advertisement
andmalv

[Solucion] File system with errors, check forced

Oct 21st, 2015
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.08 KB | None | 0 0
  1. # Error
  2. #   Cheking root file system...fsch from util-linux 2.20.1
  3. #   /dev/sda1 contains a file system with errors, check forced.
  4. #
  5. #   Inodes that were part of a corrupted orphan linked list found.
  6. #
  7. #   /dev/sda1: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY
  8. #   (i,e., whithuot -a or -p options)
  9. #   fsck died with exit status 4
  10. #   failed (code 4)
  11. #   An automatic file system check (fsck) ot the root file system failed
  12. #   The fsck shoukd be performed in maintenence mode with the root file system mounted
  13. #   in read-only mode
  14. #   The root filesystem is currently mounted in read-only mode.A maintenace shell will now be started.
  15. #
  16. #   sulogin: root account is locked, starting shell
  17. #   root@user:~#
  18.  
  19. # Explicacion
  20. #
  21. #   Esto significa simplemente que hay un error en el sistema de archivos que fsck no ha podido resolver
  22. #   automáticamente.
  23.  
  24. # Solucion
  25. #
  26. #   Para solucionarlo el propio mensaje nos da la solución, RUN fsck MANUALLY...
  27. #
  28. #   * Cambiar '/dev/sda1' por el nombre de la partición que de error (esta se indica al comienzo del error)
  29.  
  30.         umount /dev/sda1 && fsck -vy /dev/sda1 && reboot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement