Created
April 26, 2026 08:29
-
-
Save lopesivan/7c6b1b45e392a54f5d27a47e403b0819 to your computer and use it in GitHub Desktop.
Montar a memória como pasta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # /etc/fstab: static file system information. | |
| # | |
| # Use 'blkid' to print the universally unique identifier for a | |
| # device; this may be used with UUID= as a more robust way to name devices | |
| # that works even if disks are added and removed. See fstab(5). | |
| # | |
| # <file system> <mount point> <type> <options> <dump> <pass> | |
| # / was on /dev/sda2 during curtin installation | |
| /dev/disk/by-uuid/e2fed0c4-c618-4d5c-ba20-09d3ec40f2c6 / ext4 defaults 0 1 | |
| /swap.img none swap sw 0 0 | |
| # memória | |
| tmpfs /workspace tmpfs size=15G,mode=0755 0 0 | |
| tmpfs /var/lib/docker tmpfs size=5G,mode=0755 0 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment