Slashdot Mirror


Google Chrome For Linux Goes 64-bit

Noam.of.Doom writes "The Google Chrome developers announced on August 19th the immediate availability of a new version of the Google Chrome web browser for Linux, Windows and Macintosh operating systems. Google Chrome 4.0.202.2 is here to fix a lot of annoying bugs (see below for details) and it also adds a couple of features only for the Mac platform. However, the good news is that Dean McNamee, one of the Google Chrome engineers, announced yesterday on their mailing list that a working port of the Chrome browser for 64-bit platforms is now available: 'The v8 team did some amazing work this quarter building a working 64-bit port. After a handful of changes on the Chromium side, I've had Chromium Linux building on 64-bit for the last few weeks. I believe mmoss or tony is going to get a buildbot running, and working on packaging.' Until today, Google Chrome was available on both 32- and 64-bit architectures, but it appears that the latter was running based on the 32-bit libraries. Therefore, starting with Google Chrome 4.0.202.2, 64-bit users can enjoy a true x64 version!"

16 of 168 comments (clear)

  1. What a waste of resources by BadAnalogyGuy · · Score: 5, Funny

    Come on. This is Linux, not some WIMPy GUI-based OS like Winders or Suckintosh.

    I run the results of wget through a custom Perl script and then parse the results and feed image URLs back through wget and into libjpeg.

    Why do I need a bloated web browser when I have such an elegant Unix solution?

    1. Re:What a waste of resources by Yvan256 · · Score: 4, Funny

      This is a really bad analogy, guy.

  2. Chromium Not Chrome by thejapanesegeek · · Score: 5, Informative
    "Google Chrome" has not been released on the Linux platform yet. From the about:linux-splash on my chromium install:

    Chromium is an open source browser project. Google Chrome is a browser from Google, based on the Chromium project.

    And "Chromium" still doesn't have things like flash and printing, at least not in a stable, usable form.

    1. Re:Chromium Not Chrome by MrHanky · · Score: 5, Informative

      Wrong. While still 'un-official', a developer preview of Google Chrome for Linux has been out for a long time, freely available. Link.

    2. Re:Chromium Not Chrome by Jamamala · · Score: 4, Informative

      Chromium does have flash support if you start it with --enable-plugins. It works pretty well, although admittedly I haven't tested the latest 4.0 builds or the x64 version.

    3. Re:Chromium Not Chrome by pablomme · · Score: 4, Informative

      And "Chromium" still doesn't have things like flash and printing, at least not in a stable, usable form.

      Wrong about flash. Add '--enable-plugins' to chromium-browser's command line, and soft link the flash library into chromium's plugins directory (which they fail to tell you to do), e.g. in Ubuntu you would do:

        sudo ln -s /usr/lib/flashplugin-installer/libflashplayer.so /usr/lib/chromium-browser/plugins/

      Works well, is stable and is usable, despite the warnings that it may melt your computer etc. Printing is still unavailable.

      --
      The state you are in while your HEAD is detached... - wait, what?
  3. "Iron" out the privacy bugs... by Jah-Wren+Ryel · · Score: 4, Informative

    And if we are lucky, there will soon be a privacy-enabled version here:
    http://www.srware.net/en/software_srware_iron_download.php

    --
    When information is power, privacy is freedom.
  4. No One Cares What It's Called - It's Fucking Fast by Anonymous Coward · · Score: 5, Funny

    Google really hit a home run with Chrome on Linux.

    It's as lighting quick on Linux as it is on Windows. And it's just as lighting quick days after heavy use unlike that outdated piece of crap Firefox.

    What is puzzling about Chrome/Chromium on Linux is why Google made it look like modern desktop app and not the usual 'designed by a blind person with bad taste using Windows 95 UI widgets' that appears to be the standard.

  5. Serious question by Thatmushroom · · Score: 4, Interesting

    Can someone explain the particular benefits of having a 64-bit browser? I particularly appreciate the fact that Firefox currently can't hog all of my RAM when something (oftentimes Flash) spirals out of control. Do web developers use memory beyond the 4 gig limit, and is this a godsend for them?

    --
    You zap the moderators with a wand of humor! The moderators resist!
    1. Re:Serious question by Jah-Wren+Ryel · · Score: 4, Funny

      Can someone explain the particular benefits of having a 64-bit browser?

      Not much really. If you frequently browse for porn, I suggest holding out for the TOPS-20 port which will be 69-bit.

      --
      When information is power, privacy is freedom.
    2. Re:Serious question by FlyingBishop · · Score: 4, Insightful

      Really? I'm posting this from a 32-bit legacy computer that runs 32-bit Ubuntu just fine. I've got a 'legacy' machine on the right with XP and an Nvidia GForce 5600, also 32 bit, that is even more useful, being a Pentium. You are about 4 years too early to even begin to talk about end-of-life for 32 bit.

      I couldn't really find numbers, but I supect ditching 32 bit would entail throwing out at least half of the computers currently in use...

      I don't have the numbers to back it up, but I'm fairly certain that a sufficiently large portion of computers use 32-bit to make your presumption completely infeasible for the next few years. They were still selling 32-bit machines two years ago, and people can't reasonably be expected to retire those machines until 2011, and many will still be perfectly useful until 2013 or even 2015 with a few repairs.

      Meanwhile, you can keep on living in your fantasy world where hardware can magically upgrade itself to run the latest and greatest software.

    3. Re:Serious question by faragon · · Score: 4, Interesting

      Cons:

      - The benefit from passing from 8 to 16 general purpose registers is very little, and often, counterproductive, as total "true registers", the ones used for register renaming in OoOE remain the same, so with twice the general purpose registers, you halve the renaming register pool. That was specially noticeable in firsts AMD64 CPUs, and *very* noticeable on Intel Pentium D CPUs (Pentium 4 with x64 support and other minor changes), acusing of insufficient register pool volume for the OoOE operation in x64 mode. Newer CPUs, having a higher pool of registers, have less impact when executing x64 code.

      - Memory and data cache wasting: Pointers take 64 bits, so unles you're doing your own memory management, with 32-bit offsets instead of using the bulk 64-bit space for adresses, you're wasting more memory, and what is worst: higher data cache usage for the same purpose, with unnecessary CPU-RAM bus overload (remember that OoOE implies data fetching! -imagine a contiguous 32 64-bit pointer vector, taking 2048 bits instead of the 1024 bits that it would take with 32-bit pointers-).

      Pros:

      However, for some things there is true benefit, and is that the number of registers for SSE operations have been also doubled, from 8 to 16. And because of the nature of the SSE code, which is usually less prone to jump misprediction and with less register aliasing, because of the nature of vector processing code.

      Corollarius:

      In my opinion a 64-bit operating system makes sense, but an application that doesn't need more than 2GB of RAM, and doesn't need to gain an extra 10% of speed up when running optimized SSE vector code, should be compiled in 32-bit mode.

  6. Re:chromium? by rumith · · Score: 4, Insightful
    You have been misinformed. Aside from the Google Update aka Omaha, Google branding and RLZ tracking (http://niichavo.wordpress.com/2009/04/03/construction-complete/">source), it's still the same:

    Chromium is the name we have given to the open source project and the browser source code that we released and maintain at www.chromium.org. One can compile this source code to get a fully working browser. Google takes this source code, and adds on the Google name and logo, an auto-updater system called GoogleUpdate, and RLZ (described later in this post), and calls this Google Chrome.

    It's like calling Firefox proprietary because you've been shipped an actual binary that uses their TM'd logo, not the one you'd get by default when compiling it from source. And the auto-update mechanism is Windows-only as far as I know (my Debian install of Chrome correctly integrates into the APT system, as it should be) so it shouldn't worry you a lot if you're an Ubuntu user.

  7. Privacy Issues Disclaimer by Zero__Kelvin · · Score: 4, Interesting

    Some quick research revealed that there are some missing features with regard to privacy that stopped me from checking it out :-( YMMV.

    --
    Guns don't kill people; Physics kills people! - John Lithgow as Dick Solomon on Third Rock From The Sun
  8. Remind me why ad companies need installations? by qubezz · · Score: 4, Insightful

    An advertising company wants to install software on your computer. They profit by data aggregation and accumulation by seeing where on the map you are interested in going, what friends you chat with, what all the files on your computer are and how you search for them, and oh, everything you look at on the internet. Click here to install.

  9. Everyone grits teeth, welcomes Chrome/Chromium by David+Gerard · · Score: 4, Funny
    Google has released its own Web browser, Chrome, with Linux version Chromium. "We absolutely promise that we only want to completely screw over Microsoft with this, and certainly not Mozilla Firefox," said Google's Sundar Pichai. "That we put a pile of our sponsored Mozilla developers on the project is completely irrelevant. We're not evil, remember."

    "We are so, so happy with Google Chrome," mumbled Mozilla CEO John Lilly through gritted teeth. "That most of our income is from Google has no bearing on me making this statement."

    Microsoft was unfazed. "Browsers don't need to be integrated with online apps," said marketing developer Ian Moulster. "Certainly not like the operating system ... I'll just get back to you."

    Google's new browser will give you their web and email services, photo processing, mapping, office applications that will run in said browser and will make you a cup of tea. This is all paid for by personally-directed text ads in your tea leaves, based on analysing a DNA sample taken when you sip the tea and sending your genetic code back to Google for future targeting.

    Pichai stressed that Google would maintain complete confidentiality within the marketing department of whatever the browser accessed concerning your confidential business data, bank account details, medical information and personal preferences in pornography. "We're Google. We know where you live. In a completely not evil way. Sponsored link: Get Chrome Browsers on google.com. Or we'll make you use Bing."

    --
    http://rocknerd.co.uk