2006-3-24 I'm operating on Mac OSX 10.3.9 here. I recently installed this version onto my Mac. For some reason, I can't seem to open a.bin file. I downloaded Windows Media Player in.bin format, and it automatically opens up Roxio Toast. 2017-11-8 Hello, I'm trying to join a Skype meeting and can download, but can't open SkypeMeetingsApp.dmg. Just get a message that says: The application 'SkypeMeetingsApp.dmg' can't be opened. Had the same.
One of the aspects where Macs differ from Windows PCs the most is when it comes to installing applications. On Macs, you need mount a disk image and then unmount it and delete once the installation is finished, which can be a bit of a hassle, especially if you have to test many apps in a short amount of time.
Thinking of that, this time we’ll share a couple of neat little workflows that you can implement on your Mac using Automator. With any of them, every time you are done with an app installation on your Mac, you’ll be able to eject/unmount and delete the disk image in just a couple of clicks.
Documents Won't Open: FIX (Mac) David A. 'Document can't be opened for some reason' is a screen you may get on your Mac especially when transferring files from an older computer to a. I have the same problem. Im currently using a mac running on mountain lion. Im trying to open a windows 95' file by the name of win95.tar.7z everytime i try to open it it says that there isnt an application available to open it.
Forcing a Stuck Verifying.pkg Installer to Run in Mac OS X. Re-download the installer: Before anything else, you should consider that the downloaded.pkg installer, dmg, or updater may have been corrupted or perhaps is incomplete. Re: Box Sync Mac Application won't open or sync desktop folder. It tries to make changes to the application within the DMG and as it says in its own log file: 'Double click installation will fail silently!' But if you drag and drop the Mac Sync.app file to your /Applications folder and run it from there it will work fine. There are a couple of options that may resolve this prior to Apple releasing 10.13.1: 1) Try restarting your mac, and trying to open the.DMG again. 2) Hold down the Control key when you click on the.dmg then select Open from the context menu. Theis should give you a window to 'allow anyway'.
Let’s get started with how to set up these nice Automator workflows.
Delete DMG Files Automatically When You Eject Them
Step 1: Open Automator and choose to create a new document. From the available document types that show up on the dialog box, select Service.
Step 2: At the top of the right panel, make sure to choose from the dropdown menus the options ‘no input’ and ‘Finder’ respectively so that the end result is as the one pictured below.
Step 3: Next, on the left panel of Automator, search for the Run AppleScript action and drag it to the right panel. An AppleScript window will show up with some placeholder code in it.
Delete that code and instead copy and paste the following one in the script box:
tell application 'Finder'
set selection_list to selection
if (count selection_list) < 1 then
display dialog ¬
'Please select a volume mounted from a disk image.' with title ¬
'No Selection Found' with icon stop ¬
buttons ['OK'] default button 1
return
end if
set my_selection to item 1 of selection_list
set my_kind to kind of my_selection
set my_name to name of my_selection
if my_kind is not 'Volume' then
display dialog ¬
'Please select a volume mounted from a disk image file.' with title ¬
'Selection is not a Disk Image' with icon stop ¬
buttons ['OK'] default button 1
return
end if
set volume_list to paragraphs of (do shell script 'hdiutil info | grep ^/dev/disk | grep -o '/Volumes/.*')
set source_list to paragraphs of (do shell script 'hdiutil info | grep ^image'-'alias | grep -o '/.*')
set match_found to false
repeat with v from 1 to (count volume_list)
if '/Volumes/' & my_name = item v of volume_list then
set match_found to true
exit repeat
end if
end repeat
if match_found is not equal to true then
display dialog ¬
'The selected volume does not appear to be a Disk Image.' with title ¬
'Could not find Disk Image' with icon stop ¬
buttons ['OK'] default button 1
return
else
set my_source to POSIX file (item v of source_list) as alias
move my_source to the trash
eject my_selection
--reveal my_source
end if
end tell
Step 4: Now save this Automator service and give it a name that is easy to remember.
Step 5: Once this is done, every time you have a disk image mounted, all you have to do is select it and on the Finder menu select Services and then Eject and Delete (or whatever you named the service you just created) and the disk image file will be both unmounted and deleted with one click.
Now, let’s take a look at another Automator workflow that achieves the same objective doing exactly the opposite.
Eject DMG Files Automatically When You Drag Them To the Trash
As you can see from the title, this Automator workflow allows you to achieve the same purpose, except that in reverse, so you can avoid this message every time you drag to the trash a mounted DMG file.
Here are the steps to create it.
Step 1: Create a new document in Automator and select Folder Action from the available document types.
Download Mac Os X Dmg
Step 2: At the top of the right panel, select Other… from the dropdown menu. Then, on the dialog box that pops over, type ~/.Trash to work with that folder.
Step 3: Next, on the left panel, drag the Run Shell Script action to the right panel. On the two dropdown menus that show up, select /usr/bin/python and as arguments respectively.
Step 4: Replace the placeholder script in the script box with the following one:
import string, os, sys
lines = os.popen('hdiutil info').readlines()
should_eject = False
for line in lines:
if line.startswith('image-alias'):
path = line.split(':')[1]
image_path = path.lstrip().rstrip()
if image_path in sys.argv:
should_eject = True
elif line.startswith('/dev/') and should_eject is True:
os.popen('hdiutil eject %s' % line.split()[0])
should_eject = False
elif line.startswith('###'):
should_eject = False
Once done, save the Folder Action and quit Automator. Now, whenever a DMG file is mounted, all you’ll have to do is drag it to the Trash and it will be unmounted at the same time.
Cool Tip: You can also create keyboard shortcuts for these actions by following the instructions at the end of this tutorial.And there you go. Two different workflows to enable a very convenient feature on your Mac. Now all left to do is just choose which one you find more convenient. And the best of all? In both cases you’ll learn a bit more about Automator. Enjoy!
Also See#automation #OS XDownload Os X Dmg
Did You Know
In 1835, Thomas Davenport developed the first practical EV.
More in Mac
How to Record Your Screen with Zoom on Windows 10 and macOS
One of the most common mistakes I see among new Mac users is fumbling with how to install new software. The process for installing new applications on your Mac can be confusing at first because it differs greatly from Windows’ software installation process. Nevertheless, the Mac method of installing software is actually quite simple and intuitive once you are accustomed to it. If your desktop is littered with DMG files and white “drive”-looking icons, read on!
What are .DMG Files?
DMG stands for Disk Image, and is a format commonly used to distribute files and applications among Apple computers. A DMG file is like a virtual DVD or hard drive. They can be “mounted” on your Mac in order to work with their contents, or even burned to an actual physical disc.
In order to understand the concept of a DMG disk image, think of a storage volume such as a CD, DVD, hard drive, or external drive. A DMG file is like one of these devices in that it serves as a means to encapsulate documents, images, software, and other files. The difference is that with a DMG, there is no physical storage medium. There is only the DMG file, which can be written to a hard drive, burned to a CD or DVD, or sent over the Internet.
In order to work with the contents of a DMG file, you must mount the the disk image to your system. This may sound daunting, however “mounting” a DMG file with Mac OS X is no more complicated than double-clicking it’ icon. The operating system will load the load image and place a new icon both on your desktop, and in the sidebar of the Finder. The icon will have the same name as the DMG, and you’ll be able to browse through its contents like any other folder.
Once you are done working with the contents of the file, you will want to remove or “unmount” it from your system. Do this by opening the Finder and clicking the eject icon next to the virtual drive’s icon. Or, go to the Desktop, click once on the icon, and press CMD+E.
Software installation with Mac OS X is very different than in the Windows world. On a Windows PC you run an installer, tick off a few checkboxes, and wait for the progress meter to reach completion. There usually is no such “installation wizard” on a Mac &emdash; you simply drag and drop the program into your computer’s “Applications” directory. The trick is that most Mac applications are distributed as images called DMG files, and many new Mac users end up running applications directly from the image instead of installing them to the “Applications” directory.
Enough explanation, here’s how to install an OS X app from a DMG file:
- Find the downloaded file, which usually ends up in your Desktop or Downloads folder.
- Double-click the .DMG file to mount it. A new Finder window showing its contents should appear.
- If the window also contains a shortcut icon to “Applications”, drag and drop the app onto the shortcut.
- If not, double-click the mounted volume on your desktop and drag the app icon from there to the “Applications” icon in the Finder sidebar.
Further Explanation
Alright, that was the abridged version. Here’s the long version. I’ve just downloaded the DeskLickr application, and the DeskLickr_1.2.dmg is sitting on my desktop. I double-click it and a new icon labeled “DeskLickr 1.2” appears on my desktop. Here’s what my desktop looks like at this point:
Since most of the time a new Finder window also pops up when the image is ready for use, this one is now sitting on my desktop:
Different applications are going to show you slightly different Finder windows. Each application’s designers like to add their own artwork. Glitter aside, most applications are trying to tell you the same thing. See the arrow pointing from the DeskLickr icon to the “Applications’ shortcut? It’s telling you to drag and drop the icon into that folder. Once you’ve done so, the app will be installed.
If a program doesn’t provide a shortcut to the Applications folder, you’ll need to pop open a new Finder window. Press CMD+N to open a new window, then drag the program over to “Applications” in the left-hand side of the window.
Once the new program is installed it’s time to do some house cleaning. You no longer need the disk image you downloaded, so follow these steps:
- Close any Finder windows that have been left open.
- Eject the disk image (not the .DMG file). Click on its desktop icon, then press CMD+E.
- Delete the .DMG file by dragging it to the trash.
That’s it! Your new Mac application is ready to use. But wait…
Bonus Tip: Add Your New Application to the Dock
I knew you were going to ask, so I figured I would cut you off at the pass. In order to add the new application to the dock, follow these steps:
Mac Won't Open Dmg File
- Open up a new Finder window.
- Click on “Applications”.
- Locate your new program’s icon.
- Drag the icon to your Dock, and drop it wherever you like.