Skip to main content

Why OS X Lion is the biggest test for digital downloads ?



Sometime next week, most likely July 14, we could see the anticipated arrival of Mac OS X Lion, according to multiple reports. But this is no ordinary major software launch. The twist is that Lion will be distributed digitally, the first version of OS X ever for which that is true. Not only that; it will only be available as a download from the Mac App Store, and that’s why this is the launch everyone will be watching with bated breath.

Ready to ditch discs?

Apple is putting a lot of faith in the fact that its customers are ready to leave physical install media behind, and instead wholly embrace a digital distribution model. That’s the whole idea behind the Mac App Store, of course, and it has worked out very well for mobile software with the original App Store for iOS devices. But will Mac users be willing to take it to the next level, and welcome digital delivery even for that most essential software component, the core desktop operating system?

Our recent poll on the subject indicates that many will be upgrading, and that most will do so as soon as the 10.7 update becomes available. Only a tiny 3.4 percent of all those surveyed didn’t plan on upgrading at all. Those results favor Apple’s decision pretty highly, but they also probably aren’t a terribly accurate representation of the population at large, since our readership here at GigaOM tends to lean toward the early adopter end of the spectrum.

The old barriers, and some new ones

Typically, new operating systems are greeted cautiously by consumers. For example, take a look at the chart below, taken from a Net Applications report on OS market share in May. It shows the trajectory of Apple’s last few major OS updates, and you can see that adoption of each tends to start relatively slow and grow steadily over their lifetime. People can be hesitant about major OS changes, since it’s the software they depend on most heavily, and unfamiliarities necessitate an adjustment period some would rather not deal with. But Apple may be setting itself up for a lower than normal initial pool of upgraders, because Lion is digital-only, and because it requires 10.6.8, the most recent update, to be installed.




Because OS X 10.6 Snow Leopard is already so well represented among OS X users, it’s good for Lion’s prospects. Installing Lion requires the Mac App Store, which is only available for Macs using Snow Leopard, but a good number of Macs should fall into the category of those technically able to upgrade.

We’ve also talked about the risk Apple is taking with regard to customers who may have poor Internet connections, or severely restricted bandwidth allowances for their home connections. Some reports suggest Apple might get around that for some notebook users by offering Apple Store wireless as a means to download the update, but that’s not a practical solution for everyone.

Digital supply and demand

Apple has also had hiccups with major digital software launches in the past. Download speeds have been slow for past iPhone OS (now known as iOS) launches, and in some cases demand brought Apple servers down for extended periods. Apple now has a new data center facility which should help alleviate the strain, but at around 4 GB per copy, Lion stands a chance of causing a strain on the Mac App Store servers as early adopters rush to grab it.

The Lion launch, whether it comes next week as rumored or later on, could represent a major turning point in how we approach software distribution. But there’s also a small chance that it could turn out to be a moment when consumers say “we’re not ready for this just yet,” sort of like what pro users have been saying about Final Cut Pro X. Which way do you think the wind will blow?

(GigaOm)

Comments

Popular posts from this blog

Characteristics of a Good Programming Language

Till now there are many high level languages which are very popular, and there are others, which could not become so popular in-spite of being very powerful. There might be many reasons for the success of a language, but one obvious reason is the characteristics of the language. Several characteristics believed to be important with respect to making a programming language good are briefly discussed below. Simplicity A good programming language must be simple and easy to learn and use. For example, BASIC is liked by many programmers only because of its simplicity. Thus, a good programming language should provide a programmer with a clear, simple and unified set of concepts which can be easily grasped. It is also easy to develop and implement a compiler or an interpreter for a programming language that is simple. However, the power needed for the language should not be sacrificed for simplicity. The overall simplicity of a programming language strongly affects the readability of the pr...

Angular 4 and Firebase Authentication: Email/Password

In our  previous  article we saw how to create authentication module using Google identity provider. Now we will see how to implement Email and Password authentication using Firebase. We will use Bootstrap form to create intuitive user interface for sign-up and login using Email and Password. Step 1: Create signUp component. ng generate component signUp Step 2: Create custom form in sign-up.component.html file. The result of above code: Step 3: Add two functions for creating the user and login using Email and Password in src/app/providers/AFAuth.ts file. Step 4: Call createUserWithEmailAndPassword function in service from sign-up.component.ts. Step 5: Update routing configuration in app.module.ts  to include signUp component. Step 6: Update Login form to have Bootstrap form. The result of the above code. Step 7: Enable Email/Password component in Firebas...

Angular 4 and Firebase Authentication: Setup

If you have come to this article, it means you are keen to learn new technology and that too Firebase. I love Firebase because it provides all basic but important features of any web application. Take for example, authentication, which is cumbersome and risky if not implemented with utmost care. And when we have the integration of Angular and Firebase, it becomes a lot easier for a developer to build such crucial modules in less time with minimal efforts. In this article we will create a simple Angular application using Firebase. I am going ahead with the understanding that you know the benefits of Firebase and have little knowledge about it. There are plenty of posts out on the web if you are behind. Step 1: Install Angular CLI (if not installed). npm install -g angular-cli Step 2: Create new Angular 4 project. By default now angular CLI will create Angular 4 project so you need not fret. ng new firebase-authentication Step 3: Check whether the ne...