Ramdisk: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
none /et tmpfs nodev,nosuid,noexec,nodiratime,size=4096M 0 0 | none /et tmpfs nodev,nosuid,noexec,nodiratime,size=4096M 0 0 | ||
it will show up after reboot. To enable it without reboot, type ''mount / | it will show up after reboot. To enable it without reboot, type ''mount /et''. | ||
Revision as of 15:26, 27 September 2018
On critical daq servers (clondaqx) directory /et have to reside in ramdisk. Add following line in /etc/fstab:
none /et tmpfs nodev,nosuid,noexec,nodiratime,size=4096M 0 0
it will show up after reboot. To enable it without reboot, type mount /et.
General info
Check available memory size:
free -g
Example of creating 4G ramdisk and mounting it as /mnt/ramdisk:
su mkdir /mnt/ramdisk mount -t tmpfs -o size=4g xfs /mnt/ramdisk