Uvishere Hi. > I have a serious problem in Ubuntu. When I start the ubuntu 2.2, On > the starting screen(screen after the boot menu screen), there is a > message like > "unclean shutdown, checking drives.... > dev/sda05 <cheking percent>
Perhaps unclean shutdown (or corrupted NTFS partition; usually suggests unclean shutdown though because the logfile is corrupted) > and after that the msg " your file system is in read only mode" > and Place for giving commands appears. >From ntfs-3g(8) manual: force Force the mounting even if the NTFS logfile is unclean. The logfile will be unconditionally cleared. Use this option with caution and for your own responsibility. So, when you are given a shell after "your file system.... read only mode" what you do is: Unmount it: $ sudo umount /dev/sda5 (or whatever its called) Remount it r/w with force option: $ sudo mount -t ntfs-3g /dev/sda5 /media/NTFS_mount_dir -o rw,force (resets the ntfs logfile as pointed above) -- Regards, Ishwor Gurung --~--~---------~--~----~------------~-------~--~----~ FOSS Nepal mailing list: [email protected] http://groups.google.com/group/foss-nepal To unsubscribe, e-mail: [email protected] Mailing List Guidelines: http://wiki.fossnepal.org/index.php?title=Mailing_List_Guidelines Community website: http://www.fossnepal.org/ -~----------~----~----~----~------~----~------~--~---
