Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Peter Cooperx http://www.petercooper.co.uk/

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

How to create a RAM disk on OS X

32768 = size in sectors (16MB in this case, a sector is 512 bytes)

   1  
   2  $ hdid -nomount ram://32768
   3  /dev/disk1
   4  $ newfs_hfs /dev/disk1
   5  $ mkdir /tmp/ramdisk1
   6  $ mount -t hfs /dev/disk1 /tmp/ramdisk1


To unmount:

   1  
   2  hdiutil detach /dev/disk1
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS