Add 'mount' file + TMPFS example

pull/141/head
terminalforlife 4 years ago
parent 47e49afdbe
commit 52e621be4e

@ -0,0 +1,7 @@
# mount
# Mount a filesystem
# Mount a temporary filesystem (TMPFS) of 4GB to '/mnt'. The contents will
# vanish when you reboot, but this can be very useful when working with things
# like bootstrap tarballs or temporary storages for sensitive data.
mount -t tmpfs -o mode=755,size=4096M tmpfs /mnt
Loading…
Cancel
Save