Re: about output from mount

2025-01-16 Thread Greg Wooledge
On Thu, Jan 16, 2025 at 13:18:53 +0200, Anssi Saari wrote: > Urs Thuermann writes: > > mount | fgrep -vf <(awk '/^nodev/{print $2}' /proc/filesystems) > > Thanks. It has the benefit of not showing autofs, for example. But how > to quote that for an alias? The simplest way is *not* to use an alia

Re: about output from mount

2025-01-16 Thread Anssi Saari
Urs Thuermann writes: > Felix Miata writes: > >> I have the following in ~/.bashrc for making that easier: >> >> alias Mnt='mount | egrep -v "cgroup|rpc|ramfs|tmpfs|^sys|on /dev|on /proc|on >> /sys|on /var" | sort ' > > mount | fgrep -vf <(awk '/^nodev/{print $2}' /proc/filesystems) Thanks. I

Re: about output from mount (was: no space left on device)

2025-01-15 Thread Urs Thuermann
Felix Miata writes: > I have the following in ~/.bashrc for making that easier: > > alias Mnt='mount | egrep -v "cgroup|rpc|ramfs|tmpfs|^sys|on /dev|on /proc|on > /sys|on /var" | sort ' mount | fgrep -vf <(awk '/^nodev/{print $2}' /proc/filesystems) urs

Re: about output from mount (was: no space left on device)

2025-01-14 Thread Felix Miata
Greg Wooledge composed on 2025-01-14 07:30 (UTC-0500): > Finally, please show the mount options of whatever file system is > full. This means grepping something out of the output of "mount". > It can be difficult to get the right line sometimes. I have the following in ~/.bashrc for making that