ramdisk: Revision history

From KlavoWiki
Jump to navigationJump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

31 January 2022

11 January 2022

  • curprev 08:2908:29, 11 January 2022David talk contribs 373 bytes +373 Created page with "To create a RAM Disk. Create folder for directory linking. <pre> sudo mkdir /tmp/ramdisk sudo chmod 777 /tmp/ramdisk </pre> Manaully mount disk. <pre> mount -t tmpfs -o size=32m ramdisk /tmp/ramdisk </pre> Automatically mount disk at boot. <pre> vi /etc/fstab </pre> <pre> ramdisk /tmp/ramdisk tmpfs defaults,size=32M,x-gvfs-show 0 0 </pre> Category : Linux"