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.
🐧 7 comments so far... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
In Ubuntu it does routine checks every 30 mounts even if you shut down properly for maintenance.
i think the poweroff command work well
How can I shutdown properly an external harddrive partition with reiserfs?
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.
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.
Not ‘-r’ but rather ‘-h’. -r does a reboot, while -h does a halt, which should power your computer down.
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.