bad1080@piefed.social to Linux@lemmy.mlEnglish · edit-210 hours agowhat is this tmp disk btop is showing me? (OS: Kubuntu 25.10)media.piefed.socialimagemessage-square14fedilinkarrow-up112file-text
arrow-up112imagewhat is this tmp disk btop is showing me? (OS: Kubuntu 25.10)media.piefed.socialbad1080@piefed.social to Linux@lemmy.mlEnglish · edit-210 hours agomessage-square14fedilinkfile-text
minus-squareEager Eagle@lemmy.worldlinkfedilinkEnglisharrow-up9·edit-210 hours agotmpfs is a memory filesystem, they all do https://man7.org/linux/man-pages/man5/tmpfs.5.html one-liner to get the total used size /usr/bin/df --type=tmpfs | awk 'NR>1 {sum+=$3} END {print "tmpfs used (MiB): " sum / 1024}'
tmpfs is a memory filesystem, they all do
https://man7.org/linux/man-pages/man5/tmpfs.5.html
one-liner to get the total used size
/usr/bin/df --type=tmpfs | awk 'NR>1 {sum+=$3} END {print "tmpfs used (MiB): " sum / 1024}'