Created
September 22, 2012 23:31
-
-
Save galaakk/3768219 to your computer and use it in GitHub Desktop.
SHELL : OSX ramdisk
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
| #!/bin/bash | |
| ####################### | |
| # A script by Salvatore Sanfilippo | |
| ##################### | |
| ramfs_size_mb=1024 | |
| mount_point=~/volatile | |
| ramfs_size_sectors=$((${ramfs_size_mb}*1024*1024/512)) | |
| ramdisk_dev=`hdid -nomount ram://${ramfs_size_sectors}` | |
| newfs_hfs -v 'Volatile' ${ramdisk_dev} | |
| mkdir -p ${mount_point} | |
| mount -o noatime -t hfs ${ramdisk_dev} ${mount_point} | |
| echo "remove with:" | |
| echo "umount ${mount_point}" | |
| echo "diskutil eject ${ramdisk_dev}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment