Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×
Linux Google Software Technology

Chrome OS, Present and Future 132

Many readers are submitting stories related to Google Chrome OS. ruphus13 points out a GigaOm opinion piece about how, if users end up rejecting its current cloud-only focus, the nascent OS may succeed as a netbook secondary operating system alongside Windows (in company with secondaries based on other Linux flavors, including Android). Engadget reviews a Chrome OS on a USB key setup that is claimed to offer eye-opening performance compared to running under virtualization. And an anonymous reader notes the 0.1 beta release of ChromeShell, which installs a "Chrome OS-like" environment that boots to the Chrome browser in ~3 seconds; users can switch to Windows later as desired.
This discussion has been archived. No new comments can be posted.

Chrome OS, Present and Future

Comments Filter:
  • Useful (Score:5, Interesting)

    by Tablizer ( 95088 ) on Sunday November 29, 2009 @08:01PM (#30264876) Journal

    If 90% of what a user does is web browsing and email, that sounds like a good bet. If you push "on" and have it up and running in a few seconds, who would bother going into Windows? You'd only need to boot to Windows when doing some office work or the like, and that boot option would be a quick-click icon. If you primarily do office work with it, then you'd want a full-blown "regular" laptop anyhow instead of a netbook.

    However, I imagine that Microsoft will find some way to sabotage multi-OS-boot options via screwy licensing and pricing games.
             

  • by Anonymous Coward on Sunday November 29, 2009 @08:03PM (#30264900)

    I have the sneaking suspicion that everyone good at Google left a long time ago; with bags of money.

    Now, we're left with Adsense and the Marketing department rebranding the concept(s) behind [CompuServe/Prodigy Online/AOL Online] because people don't remember the 90's.

  • by Anonymous Coward on Sunday November 29, 2009 @08:06PM (#30264920)

    An ideal approach is an OS that's *more* focused on the cloud, rather than *entirely* focused. I use many cloud apps with Chrome's current "Web Shortcuts" feature which removes browser elements from view and presents the web app much like a native one. This approach is used in several Linux cloud distributions already. Google is mistaken in their mission to turn every consumer and business class PC into a thin client.

  • Re:False! (Score:5, Interesting)

    by gotpaint32 ( 728082 ) * on Sunday November 29, 2009 @08:24PM (#30265016) Journal
    Good point, I have Win 7 on a Dell Mini 10 with 1GB of RAM, it boots to the login screen in about 30 seconds and comes out of standby mode in about 5 seconds. Considering how much more it is actually loading on Windows, it seems Google still has a long way to go until instant on is a reality.
  • by KNicolson ( 147698 ) on Sunday November 29, 2009 @09:02PM (#30265220) Homepage
    There's quite a few places where the Trusted Platform Module and Chromium intersect [blogoftrust.com], which looks like being an interesting approach to certain problems.
  • by theodp ( 442580 ) on Sunday November 29, 2009 @09:03PM (#30265224)

    From Chrome and Chrome, What is Chrome? [cringely.com]: "The most interesting part for me will be Microsoft's response. This strikes at the very heart of Redmond's business success and Microsoft will not take it lying down. Expect thermonuclear warfare."

  • by Huntr ( 951770 ) on Sunday November 29, 2009 @09:54PM (#30265430)
    Most of my family and friends are not techies or geeks. They only use their computer for email, web/facebook and passing pics around. These are the same people asking me if a $400 laptop Black Friday deal from Wal-Mart would work to replace their (aging) desktop and they won't listen to me when I tell them to get a used one for $50 on e-bay. I'd tell every single one of them to get a ChromeOS net appliance if it were available. You said

    You are essentially getting less than what you would get with a standard distro like Ubuntu, Fedora, Debian, etc.

    We on /. often forget on there are many people who NEED less.

  • by symbolset ( 646467 ) on Sunday November 29, 2009 @10:02PM (#30265466) Journal

    It's possible you're talking about the wizards who gave us Windows NT in 1993. AFAIK all those guys, and everybody who could understand how they did what they did, left long ago. They should have - their options were fully vested and stopped gaining value over a decade ago. I've certainly seen little evidence since that they remain though the business types who think they're the smartest guys in the room seem to remain active to this day.

    People at Google keep coming out with this immensely scalable stuff that demonstrates a strong background in hard information theory, and we get to see it only a couple years after they implement it for internal use. Their gnomes appear to still be digging in the goldmine. Android, ChromeOS, Hadoop, and other ongoing projects spring to mind.

  • by OrangeTide ( 124937 ) on Sunday November 29, 2009 @10:21PM (#30265568) Homepage Journal

    It seems if you are aiming to have a very narrow and specific design to your system, a general purpose Unix work-a-like is overkill. Wouldn't a minimal POSIX-ish system with some graphical operations be sufficient. It's great to use something familiar and actively developed like Linux. Just for the device drivers alone it is pretty valuable. But after digging into the Plan9 kernel, I realize that most of these drivers are not really that complicated if you can accept a basic level of functionality and less than optimal level of performance. (like the nvidia drivers in Plan9, it's only one short .c file, and just enough to get 9wm up and going). Even something like L4 is overkill, a lot of the cool abstraction it offers is probably not necessary if you can just wedge it into a library.

    Many of us on here have hacked together little pseudo-kernels. Glorified Hello World bootloaders really. If you had a TCP/IP stack, using an existing one like KAME or uIP, or a new implementation (I don't care which) and a filesystem that is more like a simple memory mapped key-value pair database (using critbit, hash table, b+tree, whatever). it seems to me that would be enough to get something like WebKit going.

    What value would a custom kernel/OS have over a specialized Linux? Well I think you could focus on implementing abstractions most suitable for a browser instead of trying to fit a filesystem or sqlite library to your design. Mostly I suspect you could optimize the boot of a very primitive system pretty easily. And you could do things where isolation of the browser in memory can be done in a way much finer grain than the Unix scheme of dividing everything into a user process or kernel mode thread.

    Perhaps the browser would be more like a root user, but individual tabs would have permissions controlled by a kernel or hypervisor that would be in isolation of one another. One page may not be able to hijack the rest of your browser or access cookies or passwords unless specifically authorized. And it could be done in such a way that is still relatively fast and low overhead, but more secure than current schemes.

    Imagine if plug-ins like flash and video codecs had to run through a socket or some fast IPC messaging scheme. where you could just close it to force the process on the end to shut down.

    Why don't I implement it you ask? Well assuming I have the skills necessary to do a good job, and the ambition to complete such a task. I'm too old school to accept the idea that a system where the only application is a browser is useful to me personally. Maybe when kernel development becomes browser based?

What is research but a blind date with knowledge? -- Will Harvey

Working...