ramBunctious - 2.0.1RAM disk customized for desired speed, security |
|
||||||||||||||||
|
|||||||||||||||||
Feedback Summary:
| This Version: | |||||
| Overall Rating: | Not rated (0.0) | Features: | Not rated (0.0) | Support: | Not rated (0.0) |
| Ease of Use: | Not rated (0.0) | Quality / Stability: | Not rated (0.0) | Price: | Not rated (0.0) |
Key to Types of Feedback:
Reviews
Troubleshooting
Usage Tips
Developer Notes
Commentary
Featured Reviews
Just use OSX itself to create a ram disk - Version: 2.0.1, 4/1/2006 04:25AM PST
(5 of 5 users found this comment useful)
kasboMost Recent Replies: View All 1 Replies
- Just use OSX itself to create a ram disk
Panther and ramBunctious - Version: 2.0, 11/7/2003 01:01PM PST
(1 of 1 users found this comment useful)
thebobsterhttp://www.clarkwoodsoftware.com/rambunctious/rambacc.html
Not good for OS10.3 - Version: 2.0, 10/30/2003 10:08PM PST
cruiser
However, I haven't gotten it to work on Panther, OSX.3. It does make a "misterious" disk that shows up in Disk Utility, but it doesn't show up in the Finder. The only way I know of getting rid of it is to reboot.
#!/bin/sh
NUMSECTORS=524288
# 64mb = 131072
# 128mb = 262144
# 256mb = 524288
# 512mb = 1048576
# 1gb = 2097152
mydev=`hdid -nomount ram://$NUMSECTORS`
newfs_hfs $mydev
mkdir /tmp/ramdrive
mount -t hfs $mydev /tmp/ramdrive
Save the file with a name like 'mkramdisk.sh', and give it executable permissions:
chmod 755 mkramdisk.sh
Run it. Voila. This script is right out of the man page for hdid. You can also read about doing this at
http://www.kernelthread.com/mac/osx/arch_fs.html
K