bad1080@piefed.social to Linux@lemmy.mlEnglish · edit-23 days agowhat is this tmp disk btop is showing me? (OS: Kubuntu 25.10)media.piefed.socialimagemessage-square14fedilinkarrow-up116arrow-down10file-text
arrow-up116arrow-down1imagewhat is this tmp disk btop is showing me? (OS: Kubuntu 25.10)media.piefed.socialbad1080@piefed.social to Linux@lemmy.mlEnglish · edit-23 days agomessage-square14fedilinkfile-text
minus-squareEager Eagle@lemmy.worldlinkfedilinkEnglisharrow-up10·edit-23 days 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}'