What Ersion Of Linuxis Good To Run Mac Software



Ersion

  1. What Erosion Of Linux Is Good To Run Mac Software Windows 10
  2. What Erosion Of Linux Is Good To Run Mac Software Without
  3. What Erosion Of Linux Is Good To Run Mac Software Free
  4. What Erosion Of Linux Is Good To Run Mac Software Using

Vintage Macintosh Software

That notwithstanding, because it is Unix-like does not mean that it is Linux and for one reason or the other you may want to run a full-fledged OS. Here are the best Linux distros you can install on your mac. Ubuntu GNOME, which is now the default flavour that has replaced Ubuntu Unity, needs no introduction. There aren't really any ways to run Mac-specific apps on Linux. You can run a large number of cross-platform apps; Gimp and MacVim come to mind. But if you must run mac apps, the most reliable answer is to buy a Mac. You'll always have the latest versions and you can also run any other OS using Fusion, Virtual Box or Parallels.

If you’re looking for old Mac software, there are a number of sites on the interwebs that are worth checking out:

Macintosh Garden– great site for old Mac games, system software and abandoned applications
Rescue My Classic Mac – old Macintosh boot floppies and applications available for purchase
Macintosh Repository – a sanctuary for old software of the classic Mac OS era
Mac GUI – customize your Mac’s look and feel with Themes, Desktops, Icons, Widgets, etc..
Mac OS 9 Lives – tips and software for running the Classic Mac OS; audio-centric focus
U-Mich Software Archives – large legacy software collection, for Macs and other platforms
Max1zzz’s Classic Mac Server – another vast collection of Mac system and application software
The Gryphel Project – 68k era Mac software and home of the Mini VMac Mac Plus emulator
E-Maculation – dedicated to emulation of the classic Macintosh computer in OS X, Windows and Linux
OldApps.com – installers for superceded and obsoleted Mac OS X software
PowerPC Software Archive– links to the most current PowerPC compatible versions of many programs
The Mac Driver Museum – old hardware drivers for Mac printers, disks, video cards and related items (partial archive)
MacFixer Mac Software Library – a growing compendium of early Mac system, utility and game installers
The Internet Archive – the grand attic of the internet adds software to its collection

Mac OS 9.2.2 for PowerMac G4 MDD– Retail Mac OS 9 installers do not work on the last generation PowerMac G4 MDD models. This is a copy of Mac OS 9.2.2 included on the MDD bundled Software Restore CDs which is able to boot these G4 models into OS 9 (FireWire 400 models only). It can also be used as Classic Mode on any PowerMac running Mac OS X 10.1-10.4.

ProTools 3.4 Free– Pro Tools 3.4 Digital Audio Workstation software was released free of charge by Digidesign in 1997. This is a fully-functional 16-track version of the program which runs on many 68k Nubus Macs and old PCI PowerMacs.

SoundApp – a swiss army knife for old sound files. Play and convert many vintage audio formats with this useful utility.

Classilla and TenFourFox – ports of the current Firefox web browser, optimized for Mac OS 9 (Classilla) and PowerPC Macs running OS X Tiger (TenFourFox). Get online with your vintage Mac!

PrintToPDF– a free utility to create PDF files on classic Macs running System 7 through Mac OS 9. This is a handy way to keep the formatting of old documents you can’t otherwise convert.

Linuxis

What Erosion Of Linux Is Good To Run Mac Software Windows 10

The Vintage Mac Museum is a private, working collection of the pre-Intel Apple Macintosh. We provide old Mac file transfer and conversion services, along with research into old Mac technologies for patent prior art searches or academic purposes.

Linux users who want to run Windows applications without switching operating systems have been able to do so for years with Wine, software that lets apps designed for Windows run on Unix-like systems.

There has been no robust equivalent allowing Mac applications to run on Linux, perhaps no surprise given that Windows is far and away the world's most widely used desktop operating system. A developer from Prague named Luboš Doležel is trying to change that with 'Darling,' an emulation layer for OS X.

Good

'The aim is to achieve binary compatible support for Darwin/OS X applications on Linux, plus provide useful tools that will aid especially in application installation,' Doležel's project page states. Darwin is Apple's open source operating system, which provides some of the backend technology in OS X and iOS. The name 'Darling' combines Darwin and Linux. Darling works by 'pars[ing] executable files for the Darwin kernel... load[ing] them into the memory... and execut[ing] them.'

But there is a ways to go. 'Darling needs to provide an ABI-compatible [application binary interface] set of libraries and frameworks as available on OS X... by either directly mapping functions to those available on Linux, wrapping native functions to bridge the ABI incompatibility, or providing a re-implementation on top of other native APIs,' the project page notes.

Doležel, who started Darling a year ago, described the project and its progress in an e-mail interview with Ars. Darling is in the early stages, able to run numerous console applications but not much else. 'These are indeed the easiest ones to get working, albeit 'easy' is not the right word to describe the amount of work required to achieve that,' Doležel said. 'Such applications include: Midnight Commander, Bash, VIM, or Apple's GCC [GNU Compiler Collection]. I know it doesn't sound all that great, but it proves that Darling provides a solid base for further work.'

Advertisement

Users must compile Darling from the source code and then 'use the 'dyld' command to run an OS X executable,' Doležel said. One roadblock is actually getting Mac .dmg and .pkg application files working on a Linux system. Because doing so isn't that straightforward, Doležel said, 'I've written a FUSE module that enables users to mount .dmg files under Linux directly and without root privileges. An installer for .pkg files is underway.'

Unix/Linux synergy

The fact that OS X is a Unix operating system provides advantages in the development process. 'This saved me a lot of work,' Doležel explained. 'Instead of implementing all the 'system' APIs, it was sufficient to create simple wrappers around the ones available on Linux. I had to check every function for ABI compatibility and then test whether my wrapper works, so it wasn't as easy as it may sound.'

Another lucky break not available to Wine developers is that Apple releases some of the low-level components of OS X as open source code, 'which helped a lot with the dynamic loader and Objective-C runtime support code,' Doležel noted.

But of course, the project is an extremely difficult one. Doležel isn't the first to try it, as Darling was initially based on a separate project called 'maloader.' Doležel said he heard from another group of people 'who started a similar project before but abandoned the idea due to lack of time.'

What Erosion Of Linux Is Good To Run Mac Software Without

Doležel was actually a novice to OS X development when he started Darling, being more familiar with OS X from a user's perspective than a developer's perspective. 'I have personally looked for something like Darling before, before I realized I would have to start working on it myself,' he said.

Darling relies heavily on GNUstep, an open source implementation of Apple's Cocoa API. GNUstep provides several core frameworks to Darling, and 'the answer to 'can it run this GUI app?' heavily depends on GNUstep,' Doležel said. Doležel is the only developer of Darling, using up all his spare time on the project.

Advertisement

No reverse-engineering

What Ersion Of Linuxis Good To Run Mac software

Doležel isn't reverse-engineering Apple code, noting that it could be problematic in terms of licensing and also that 'disassembling Apple's frameworks wouldn't be helpful at all because Darling and the environment it's running in is layered differently than OS X.'

The development process is a painstaking one, done one application at a time. Doležel explains:

To improve Darling, I first take or write an application I'd like to have running. If it is someone else's application, I first examine it with one of the tools that come with Darling to see what frameworks and APIs it requires. I look up the APIs that are missing in Apple's documentation; then I create stub functions for them and possibly for the rest of the framework, too. (Stub functions only print a warning when they are called but don't do any real work.)

The next step is to implement all the APIs according to the documentation and then see how the application reacts. I also add trace statements into important functions to have an insight into what's happening. I believe this is very much like what Wine developers do.

When things go wrong, I have to use GDB [GNU Debugger] to debug the original application.

It is rather unfortunate that Apple's documentation is often so poorly written; sometimes I have to experiment to figure out what the function really does. Many OS X applications seem to contain complete pieces of example code from Apple's documentation, presumably because one would have to spend a lot of time getting to understand how the APIs interact. This is why I appreciate open source so much—when the documentation is sketchy, you can always look into the code.

What Erosion Of Linux Is Good To Run Mac Software Free

Linux

What Erosion Of Linux Is Good To Run Mac Software Using

Years of development are needed. Similar to Wine, 'Having a list of applications known to be working is probably the best way to go,' Doležel said.

Darling should work on all Linux distributions, he said, with the catch that 'many apps for OS X are 32-bit only, and installing 32-bit packages on a 64-bit Linux system could be tricky depending on your distribution. I personally use Gentoo Linux, so I'm gradually creating a Portage overlay that would compile Darling and all dependencies for both 32-bit and 64-bit applications.'

Doležel would like to bring Angry Birds, other games, and multimedia applications to Linux. Darling could potentially 'be used to run applications compiled for iOS,' he writes on the project site. This will also be a challenge. 'The intention is to support the ARM platform on the lowest levels (the dynamic loader and the Objective-C runtime),' he writes. 'Rewriting the frameworks used on iOS is a whole different story, though.'