diskimage

"Beautifying" an OS X disk image

When I downloaded Skype, I noticed that, in place of a normal "disk image" icon, there was a custom icon, and when I double clicked on the icon, the window used a colorful image as the background, prompting me to drag the skype icon into the applications folder. How can I do that with my applications? Thanks, Jason ...

In linux, how do I create/restore an image snapshot of my entire drive?

I'm too spoiled by Windows utilities that take a digital snapshot of your entire drive, which you can then restore from in the event of a drive crash. (e.g. like Time Machine for Mac OS X). Is there a similar way of doing this in Linux? ...

Encrypted volume automounting in Mac OS X

I've had a need to create an encrypted volume on my mac for the company source code. The requirements are not terribly stringent: If someone can log into the machine as me, they win, but otherwise, they should lose. With that set of requirements, you can make it so that the disk is automatically mounted at login. ...

Create DMG file

I am developing an application in Cocoa. I need to create a DMG file to install my application like Adium (which provides a nice UI to drag the app file to Application folder). Is there a tool for this? ...

Extended Interrupt 13, Reading an unformatted Disk.

It's been a while since I did any ASM, and decided to once again try and write a small bootloader, testing with qemu. My issue is with interupt 13, for some reason the carry flag is being set, so the read is failing. Currently, my disk image looks like: 512 Byte BootLoader <- This (as far as I'm aware) Is block 0 in LBA Main Function <...

Creating customized .dmg files upon download

I want to distribute a cross-platform application for which the executable file is slightly different, depending on the user who downloaded it. This is done by having a placeholder string somewhere in the executable that is replaced with something user-specific upon download. The webserver that has to do these string replacements is a L...

Get the path of the .dmg from the mount point

I'm looking for a way to get the .dmg path of a mounted disk image with just its mount point. I want to write a "simple" Finder service that ejects the disk image and trashes the accompanying .dmg. The ejecting is trivial, but I'm at a loss as to how to figure out the path of the .dmg, given just the mount point. diskutil doesn't seem ...

How do backup apps which create a system image handle disk changes during the image creation process?

I created a backup disk image of my disk yesterday and the software told me to close all Windows programs to make sure the process finishes successfully. I did that, but I was wondering what happens when some program does write to the disk nevertheless during the process. Windows 7 is a complex system and surely various log files and su...

Creating a disk image using .NET

I need to clone CF cards (with a certain amount of custom functionality that precludes using off-the-shelf cloning tools). I need a proper image for this to work - I can't just copy all the files. I would like to write a program for this in c#, but I have no idea where to start. Could anyone point me to a basic sample or something to ge...

Java library for creating Audio CD disk image

Does anyone know of a library or open source project that contains code for creating an audio CD disk image? ...

DiskArbitration image Disk (dmg)

Hello, I have a problem using DiskArbitration framework, to catch disk image mounting I register for DARegisterDiskMountApprovalCallback The problem is that each time a disk image is mounted the callback is called twice. Why is that and how can I solve this ? Thanks. ...

about android emulator diskimage

The emulator provides a default user-data disk image. At startup, the emulator creates the default image as a copy of the system user-data image (user-data.img), described above. The emulator stores the new image with the files of the active AVD. from:http://androidappdocs.appspot.com/guide/developing/tools/emulator.html 1)What doe...

Creating a disk image (.dmg) from Objective-C

Is there any library to create a disk image from Cocoa, or is it only possible through Finder? ...

What are the differences between the two Python 2.7 Mac OS X disk image installers?

Python 2.7 has two different disk image installers for Mac OS X. My questions are: What are the differences between the two Python 2.7 disk image installers? Python 2.7 32-bit Mac OS X Installer Disk Image for Mac OS X 10.3 through 10.6 Python 2.7 PPC/i386/x86-64 Mac OS X Installer Disk Image for Mac OS X 10.5 or later If running Mac...

structure with linked-list memory dump

Hi, is there any standard approach which I've missed at school to dump C structure with nested linked lists on disk in reasonable way? What I don't want to do is: use protocol-buffers or any other like serializators, don't want to create JSON, XML or other I've few ideas: allocate accurate memory amount (or extend existing one) and...