Guest User

Untitled

a guest
Jul 19th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. ## Create ramdisk directory and copy there all needed files:
  2. ```
  3. sudo mkdir -p /media/ramdisk
  4. ```
  5. ## Mount the ramdisk:
  6. ```
  7. sudo mount -t tmpfs -o size=<size>M tmpfs /home/ramdisk
  8. ```
  9.  
  10. ## Unmount the ramdisk:
  11. ```
  12. sudo umount /home/ramdisk
  13. ```
Add Comment
Please, Sign In to add comment