Slashdot Mirror


Google Announces Chrome OS, For Release Mid-2010

Zaiff Urgulbunger writes "After years of speculation, Google has announced Google Chrome OS, which should be available mid-2010. Initially targeting netbooks, its main selling points are speed, simplicity and security — which kind of implies that the current No.1 OS doesn't deliver in these areas! The Chrome OS will run on both x86 and ARM architectures, uses a Linux kernel with a new windowing system. According to Google, 'For application developers, the web is the platform. All web-based applications will automatically work and new applications can be written using your favorite web technologies. And of course, these apps will run not only on Google Chrome OS, but on any standards-based browser on Windows, Mac and Linux thereby giving developers the largest user base of any platform.' Google says that this new OS is separate from Android, as the latter was designed for mobile phones and set-top boxes, whereas Chrome OS is designed 'for people who spend most of their time on the web.'" The New York Times' coverage is worth reading, and there are stories popping up all over the web.

13 of 1,089 comments (clear)

  1. Re:Competition is good, baby! by cheetham · · Score: 5, Informative

    While there is no mention of a kernal, it does appear to use a Linux kernel:

    "The Chrome OS will run on both x86 and ARM architectures, uses a Linux kernel with a new windowing system." :-P

  2. Re:Competition is good, baby! by bheer · · Score: 5, Informative

    From the horse's mouth:

    Google Chrome OS will run on both x86 as well as ARM chips and we are working with multiple OEMs to bring a number of netbooks to market next year. The software architecture is simple -- Google Chrome running within a new windowing system on top of a Linux kernel.

  3. Re:Competition is good, baby! by wisty · · Score: 4, Informative

    Even with just a browser, you need multiple windows. When an AJAX command tells the browser to pop up a new window, the browser uses the native windowing system to pop up a new window. You also need windows for multiple browser instances, tabs, menus, and other fun stuff. It's not turtles all the way down.

  4. Re:Uh huh. by beowulfcluster · · Score: 5, Informative

    "Google Chrome OS is an open source, lightweight operating system that will initially be targeted at netbooks. Later this year we will open-source its code." Funny what you can learn from TFA.

  5. This recession is a good time to strike by MarkEst1973 · · Score: 4, Informative

    Deep pockets versus deeper pockets. Google's market cap is $125b and Microsoft's is $200b. Not long ago, the gap was larger. Falling PC sales have taken a bite out of Microsoft's revenue. They recently had their first down quarter in their history.

    Microsoft still makes 4X the money Google does, though. In 2008, Microsoft earned $17b in net income compared to Google's $4b. Now, $4b is nothing to dismiss, especially when you're using and writing entirely free and open source software, but still, if Google has deep pockets, Microsoft's are even deeper.

    See: MSFT and GOOG

    .

    Google is probably the only company in the world that can generate excitement about a new OS, and making an open platform will encourage software developers to write apps for it. Hasn't that been one of the big complaints, the lack of software for Linux?

    Many have tried taking down Microsoft. All have failed. Perhaps Google is finally the David to slay Microsoft's Goliath. Perhaps not. Exciting times, these are.

  6. Re:Competition is good, baby! by larry+bagina · · Score: 5, Informative

    Google has recently been active in directfb.

    --
    Do you even lift?

    These aren't the 'roids you're looking for.

  7. Re:Competition is good, baby! by noundi · · Score: 4, Informative

    You're wrong. It is a Linux distribution. Distributions can differ from eachother as much as they please. That's the fucking beauty of it so don't even begin to undermine it, troll. And don't compare Unix variants to Linux distributions, that only shows how little you know about the subject.

    --
    I am the lawn!
  8. Re:Chrome is the new Emacs? by elrous0 · · Score: 4, Informative

    Ironically, Google all but owns Firefox. Google's contributions account for almost 90% of Mozilla's revenue. Excellent article on it here.

    --
    SJW: Someone who has run out of real oppression, and has to fake it.
  9. Re:Competition is good, baby! by voidptr · · Score: 4, Informative

    Considering Leopard on Intel is UNIX certified, the latest version of OS X is as much Unix as AIX, Irix, or Solaris is.

    --
    This .sig for unofficial government use only. Official use subject to $500 fine.
  10. Re:Uh huh. by julian67 · · Score: 5, Informative

    "Another window manager just dilutes the current pool....."

    It isn't 'another window manager', it's a new windowing system. Don't think X11+KDE/Gnome, think Apple CGL+Quartz.

  11. Re:Uh huh. by AKAImBatman · · Score: 4, Informative

    I have a problem where my X-server grows to over a gig of RAM even when all windows have been closed.

    You do realize that X memmaps the video memory into its memory space? This gives it some rather crazy numbers for RAM usage even when it's running thin. Especially with modern cards having 512MB of video mem or more.

    Otherwise I do not disagree with your general statements. :-)

  12. Re:Please let there be no X! by Coryoth · · Score: 4, Informative

    Actually the network transparency is what I really don't like in X. I don't get why it is in there. I would argue most people don't need it. Either because they are running servers without any X or simple desktops. While there certainly are cases where remote desktop access is useful, I really think other solutions like VNC are far superior to X there.

    The network transparency costs practically nothing when running local apps (it uses shared memory) and, despite your apparent inability to have ever used X11's network transparency, a lot of us, do, all the time. I use it every single day. Right now I am sitting in front of a machine that has windows from applications running on four different machines, all of which seamlessly integrate into the desktop so that, unless you happen to know which applications are running where, you'd think they were all local apps. I've used VNC. It's not a good solution compared to X11's elegant network transparency. Just because you don't happen to use it doesn't mean there aren't a great many people who do use it regularly.

  13. Re:X is pretty dang good by mangobrain · · Score: 5, Informative

    Tell me, what kind of backwards logic makes the X server be the display and the X client be the application?

    Logic that accounts for two facts; that computers can have multiple users, and that they can be networked. SSH lets you run arbitrary command-line applications on remote machines. To do that with arbitrary graphical applications - emphasis on "arbitrary", i.e. not re-writing every graphical app as a GUI client & back-end server - you need something on the local machine to which the remote machine can send display commands, and for proper integration with graphical apps running on the local machine, ideally that same something should be catering for both. So.. you run a display server, and anything that wants to display graphics - locally or otherwise - connects to it. Simple.

    Like a lot of things in the *NIX world, it stops seeming backwards when you discard a few assumptions: that a computer is only used by one person (or that everyone who uses it is happy to share the same account), and that a keyboard, monitor and mouse will always be plugged in. These assumptions have kept Windows out of many a server room for years.

    However, the difficulties of writing user-friendly software outside the "comfort zone" these assumptions provide have kept Linux out of many a living room for just as long. It's not impossible, though, and the situation is improving rapidly.