I turn my Linux computer off and when I turn it on it runs disk check (fsck) on hard disk. Why?
A typical question asked by many new Linux users. The answer is pretty simple:
Your partitions are not being unmounted properly when you last shutdown the Linux desktop. Linux needs to shutdown properly (I’m sure this applies to Windows and Mac OS too) before powered off. If you skip this step there could be data loss.
If you are using text based session (CLI), type following command as privileged user:
shutdown -h now
OR
halt
If you are using GUI (KDE / Gnome or any other Windows Manager) click on System > Quit button. Look out for shutdown button.
Do not unplug the power supply. Also use UPS (Uninterruptible power supply) to protect data and to avoid other problems. I recommend APC ups for continuous supply of electric power.
Updated for accuracy.
Want to stay up to date with the latest Linux tips, news and announcements? Subscribe to our free e-mail newsletter or RSS feed to get all updates.
You can Email this page to a friend.
You may also be interested in other helpful articles:
- Shutdown account to shutdown Linux server
- How to: Allow any users to Shutdown Linux server
- Linux Shutdown Command and Logfile
- Linux Disable the Ctrl-Alt-Delete shutdown keys
- Schedule Windows server to reboot or shutdown automatically
Discussion on This Article:
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!
Tags: apc_ups, desktop_linux, Gnome, Kde, linux_users, noob, protect_data, shutdown_button, shutdown_command, uninterruptible_power_supply



you can also adjust file ext2/ext3 system parameters on partitions via tune2fs.
if you regularly turn off your pc, and you leave the file system defaults, the drives will fsck on a routine schedule (e.g. every 30 mounts or 120 days…).
“man tune2fs” to learn more.
Not ‘-r’ but rather ‘-h’. -r does a reboot, while -h does a halt, which should power your computer down.
Shawn, you’re exactly right. Here is a useful link how to change maximum mounts count value for filesystem: Set up mount count after system will be checked by e2fsck.
Jonathan, thanks for pointing out small issue.
Shawn, correct, but I don’t think so new user is going to play with that option.
Artem, thanks for sharing tutorial.
How can I shutdown properly an external harddrive partition with reiserfs?
i think the poweroff command work well
In Ubuntu it does routine checks every 30 mounts even if you shut down properly for maintenance.