Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror

Comment Re:poor lazy dee-veh-lupperz (Score 1) 33

Due to this snap stupidity, I had to create my own script to replace "df" (which I generally use instead of fdisk -l for a quick overview of storage space):

#!/bin/sh df --si "$@" | grep -v /snap|sort -h -k 2

With it being so easy to create "magic" file systems in Linux, I can't see why they don't make one single mounted file system that hosts all the snaps as subdirectories instead of polluting the pool of mount points.

How about: df --si "$@" | egrep -v "/snap|tmpfs|udev"|sort -h -k 2

Slashdot Top Deals

If all else fails, immortality can always be assured by spectacular error. -- John Kenneth Galbraith

Working...