#Is it bad practice to run umount -a instead of specifying the directory to unmount? I’ve always run umount -a to unmount my drive but i notice it unmounts a lot of other things. Is this bad?

  • @SorteKaninA
    link
    English
    11
    edit-2
    2 months ago

    In general it’s a bad idea to do something implicitly, unless you really know what you’re doing. That goes for umount -a as well as git add -a or rm -rf * and that sort of thing.