9

Tip #221   fsck my life

To do a filesystem check on all of your partitions, here's a quick one-liner. It parses out /etc/fstab for the partitions and runs a fsck on them.
for dev in `grep dev /etc/fstab | grep -v \#`; do fsck ${dev}; done

 
  • TAGS: