Existing users, log in.  New users, create a free account.  Lost password?

Mac OS X  |  System / Utilities  |  Tweaks / Enhancements  |  ramBunctious X

ramBunctious X

ramBunctious X - 2.0.1

RAM disk customized for desired speed, security.

All Time: (3.0)
This Version: Not rated (0.0)
Current Version: 2.0.1
Release Date: 2005-03-31
License: Shareware
Downloads (this version): 4,079
Downloads (all versions): 7,409
Price: $25.00

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)
Add Your Feedback

Key to Types of Feedback:

ReviewsReviews   TroubleshootingTroubleshooting   Usage TipsUsage Tips   Developer NotesDeveloper Notes   CommentaryCommentary   Featured ReviewsFeatured Reviews

All Feedback: 1 - 10 of 13 |  1 2 Next



ramBunctious X CommentaryBootable?! - Version: 2.0.1, 8/6/2009 09:11PM PST

libertyforall1776
Can this RAM disk be booted off to install Mac OS X for instance?
Post a commentAlert Admin

ramBunctious X CommentaryJust 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)

kasbo
It seems really silly to pay somebody to do this when you can just use OSX's built-in functionality. Create a plain-text file with the following commands in it:

#!/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
Post a commentAlert Admin

Most Recent Replies: View All 1 Replies

ramBunctious X CommentaryPanther and ramBunctious - Version: 2.0, 11/7/2003 01:01PM PST

(1 of 1 users found this comment useful)

thebobster
There is a page on the Clarkwood Software web site that describes the issue with Panther:

http://www.clarkwoodsoftware.com/rambunctious/rambacc.html
Post a commentAlert Admin

ramBunctious X ReviewNot good for OS10.3 - Version: 2.0, 10/30/2003 10:08PM PST

cruiser
I've used rambunctious fo r years on several versions of OSX. I think the app is Great.

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.

Post a commentAlert Admin

ramBunctious X ReviewDoes not work ... - Version: 2.0, 7/24/2003 05:05AM PST

Gulliver64
with Seti@Home as described.
Post a commentAlert Admin

ramBunctious X ReviewI, for one,… - Version: 2.0, 9/10/2002 12:46AM PST

(2 of 2 users found this comment useful)

CharlesS
am very happy that these guys found Mac OS X's hidden, undocumented RAM disk feature, since it is very useful to certain things I do, so 5 stars.
Post a commentAlert Admin

ramBunctious X CommentaryI just downloaded… - Version: 2.0, 5/1/2002 11:04PM PST

Pres
it so no stars yet, but wanted to point out (since the docs/web site don't seem to explicitly mention this) that apparently you can still use your old OS 9 registration key in the OS X version. (: Cool!
Post a commentAlert Admin

ramBunctious X CommentaryFor further discussion… - Version: 2.0, 4/30/2002 08:59PM PST

Tivor
on whether to use RAM disks or not, check out the following link. http://www.clarkwoodsoftware.com/rambunctious/RDOSX.html It's the program author's own article on using RAM disks on OS X. Don't worry, it's not some shameless plug like, "using my software will make everything run faster!" By the way, I used ramBunctious 1.6.2 satisfactorily when I was running OS 8.6. (In fact, I liked it enough to pay for it) So even though I haven't used this version yet, I can say that the author is a competent programmer, capable of writing quality apps.
Post a commentAlert Admin

ramBunctious X ReviewThe app performs… - Version: 2.0, 4/30/2002 08:14PM PST

(1 of 1 users found this comment useful)

bombich73
well (and that rating has nothing to do with actual RAM disk performance, which is irrelevant to this application because it is only an interface to the process of creating a RAM disk), and makes for a nice interface on some complicated Unix tools.
Post a commentAlert Admin

ramBunctious X CommentaryPart two: With… - Version: 2.0, 4/30/2002 07:38AM PST

(2 of 2 users found this comment useful)

bbum
a modern virtual memory system, ram disks can go one of two ways. They can 'wire down' a hunk of memory and dedicate it to being a ram disk-- this takes physical memory away from the OS. Advantage: true ram disk, never goes to disk. Disadvantage: less physical memory to be used by other apps, complete waste when ram disk is not active and the system is low on physical memory. The alternative is to allocate the ram disk as a hunk of virtual memory. That is, parts of the ram disk will be paged out to the VM files as the system needs memory. Disadvantage: not a true ram disk-- will occasionally stutter as parts of the ram disk are paged in from VM. Advantage: reading/writing pages of memory is generally a lot faster than reading/writing lots of small files. VM subsystem will also automatically page out parts of the ram disk that have been inactive for longer than others. There is no indication as to which approach this app takes. In any case, I'm not going to bother with it-- OS X's mach kernel has an extremely well optimized VM and caching subsystem that has been tuned and is continuing to be tuned by Apple. I'm not going to second guess it.
Post a commentAlert Admin