What is a TMPFS and how can we use it?
copy from Tmpfs stands for Temporary File System.To create files inside a tmpfs-mounted folder means that they will disappear when you shutdown your PC or unmount the folder.How to create a tmpfs folder? First, create a folder to use as a mount point. mkdir [foldername] Then, transform it into a tmpfs folder. sudo mount -t tmpfs -o size=[desiredSize] tmpfs [folderPath] Now, […]