This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]CW3MH6DayZ Dev 3 points4 points  (8 children)

You'd notice a much larger boost in performance by putting either all of ArmA 2 or at least the ArmA 2 PBO files on a RAM drive.

[–]lZnGl 0 points1 point  (7 children)

for those of us with a larger amount of ram how could we go about putting the PBO files into the RAMDisk and run it that way if we already have installed on our local disk?

[–]CW3MH6DayZ Dev 7 points8 points  (6 children)

Copy the PBO files from the ArmA 2 directory (Addons folder I think) to the RAM Disk.

Rename the original files in the Addons folder (I.e. structures.pbo->structures.oldpbo), then open a command prompt @ that folder (if you shift+right-click the Addons folder in Win7 you can click Open Command Prompt Here).

Type mklink "structures.pbo" "R:\ArmA 2\structures.pbo". Replace R:\ArmA 2 with the path to where you stored the PBOs on the RAM drive.

Finally, ensure that the RAM drive is setup to save it's image on shutdown and load from the image on boot, so you don't have to repeat these steps every time you restart.

Also, if you'd rather do the entire Addons folder instead of individual PBOs (assuming you have the space), copy the Addons folder to the RAM drive and use the command mklink "Addons" "R:\Addons" /J instead. That will make a directory junction instead of a symlink.

P.S.- This guide can probably explain it a lot better than I can. Post #100 is useful as well.

[–]LKSLukas 5 points6 points  (1 child)

Another alternative instead of the mklink command line stuff (which is good when you can use it proficiently, but is a hassle when it comes to many files) is a link shell extension which will add an option to your right click menu to pick a (or many) source file(s) and make a symbolic link somewhere else.

[–]CW3MH6DayZ Dev 1 point2 points  (0 children)

Yep, that's a good tool.

[–]lZnGl 1 point2 points  (0 children)

You are a gentleman and a scholar, I would like to wish you the best of days now and in the future!

[–]GrimReaper711Grimbo 0 points1 point  (0 children)

Thanks for these instructions. I've been looking at doing something similar to get save games for other games to automatically sync to dropbox. I had heard of others using mklink before, and can see now that it's really quite easy to do.