mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-15 06:12:59 +00:00
8 lines
301 B
Plaintext
8 lines
301 B
Plaintext
# 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
|