Skip to content
  • Hjem
  • Seneste
  • Etiketter
  • Populære
  • Verden
  • Bruger
  • Grupper
Temaer
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Kollaps
FARVEL BIG TECH
  1. Forside
  2. Ikke-kategoriseret
  3. Google Chrome is silently installing a local LLM on your computer that is 4 gigabytes in size.

Google Chrome is silently installing a local LLM on your computer that is 4 gigabytes in size.

Planlagt Fastgjort Låst Flyttet Ikke-kategoriseret
55 Indlæg 36 Posters 40 Visninger
  • Ældste til nyeste
  • Nyeste til ældste
  • Most Votes
Svar
  • Svar som emne
Login for at svare
Denne tråd er blevet slettet. Kun brugere med emne behandlings privilegier kan se den.
  • atoponce@fosstodon.orgA atoponce@fosstodon.org

    Google Chrome is silently installing a local LLM on your computer that is 4 gigabytes in size. It's done without consent, it's not visible in the settings, and removing it will reinstall it later.

    https://www.thatprivacyguy.com/blog/chrome-silent-nano-install/

    6al@www.foxyhole.io6 This user is from outside of this forum
    6al@www.foxyhole.io6 This user is from outside of this forum
    6al@www.foxyhole.io
    wrote sidst redigeret af
    #4

    @atoponce@fosstodon.org it is not really clear to me where the file named "weights.bin" is (eventually) located. Also, which is/are the parameter/s for enabling/disabling this feature. tia.

    atoponce@fosstodon.orgA 1 Reply Last reply
    0
    • atoponce@fosstodon.orgA atoponce@fosstodon.org

      Google Chrome is silently installing a local LLM on your computer that is 4 gigabytes in size. It's done without consent, it's not visible in the settings, and removing it will reinstall it later.

      https://www.thatprivacyguy.com/blog/chrome-silent-nano-install/

      msbellows@c.imM This user is from outside of this forum
      msbellows@c.imM This user is from outside of this forum
      msbellows@c.im
      wrote sidst redigeret af
      #5

      @atoponce Okay, so how do we disable all Chrome AI on a Windows box? The article says it can be done, but not how.

      atoponce@fosstodon.orgA 1 Reply Last reply
      0
      • msbellows@c.imM msbellows@c.im

        @atoponce Okay, so how do we disable all Chrome AI on a Windows box? The article says it can be done, but not how.

        atoponce@fosstodon.orgA This user is from outside of this forum
        atoponce@fosstodon.orgA This user is from outside of this forum
        atoponce@fosstodon.org
        wrote sidst redigeret af
        #6

        @msbellows I believe the toggle is chrome://settings/system "On-device AI".

        I can't confirm this though, as in my testing on Linux, I haven't been able to locate the "weights.bin" download and no directory size supports that 4 GB download.

        So either I haven't waited long enough to download it (it's been over an hour at this point), or it's not applicable to Linux.

        1 Reply Last reply
        0
        • 6al@www.foxyhole.io6 6al@www.foxyhole.io

          @atoponce@fosstodon.org it is not really clear to me where the file named "weights.bin" is (eventually) located. Also, which is/are the parameter/s for enabling/disabling this feature. tia.

          atoponce@fosstodon.orgA This user is from outside of this forum
          atoponce@fosstodon.orgA This user is from outside of this forum
          atoponce@fosstodon.org
          wrote sidst redigeret af
          #7

          @6al AppData/Local/Google/Chrome/UserData/OptGuideOnDeviceModel/ is the directory.

          I believe chrome://settings/system -> On-device AI is the toggle for this, but I can't confirm as I haven't seen the download reach my system yet.

          1 Reply Last reply
          0
          • atoponce@fosstodon.orgA atoponce@fosstodon.org

            Google Chrome is silently installing a local LLM on your computer that is 4 gigabytes in size. It's done without consent, it's not visible in the settings, and removing it will reinstall it later.

            https://www.thatprivacyguy.com/blog/chrome-silent-nano-install/

            bontchev@infosec.exchangeB This user is from outside of this forum
            bontchev@infosec.exchangeB This user is from outside of this forum
            bontchev@infosec.exchange
            wrote sidst redigeret af
            #8

            @atoponce A gigantic rant but no useful, actionable information. Just like the last time. I'm going to ignore this.

            Who's gonna tell him that Microsoft installs silently Copilot on Windows PCs?

            rodneylives@mefi.socialR 1 Reply Last reply
            0
            • atoponce@fosstodon.orgA atoponce@fosstodon.org

              Google Chrome is silently installing a local LLM on your computer that is 4 gigabytes in size. It's done without consent, it's not visible in the settings, and removing it will reinstall it later.

              https://www.thatprivacyguy.com/blog/chrome-silent-nano-install/

              ferricoxide@blahaj.zoneF This user is from outside of this forum
              ferricoxide@blahaj.zoneF This user is from outside of this forum
              ferricoxide@blahaj.zone
              wrote sidst redigeret af
              #9

              @atoponce@fosstodon.org

              On the plus side, looks like it's smaller on Linux:

              find ~ \
                -type f \
                -name "weights.bin" 2> /dev/null | \
              xargs stat -c '%s' | \
              awk '{
                sum += $1
              } END {
                printf "%.2f GiB\n", sum / (1024^3)
              }'
              2.67 GiB

              atoponce@fosstodon.orgA 1 Reply Last reply
              0
              • ferricoxide@blahaj.zoneF ferricoxide@blahaj.zone

                @atoponce@fosstodon.org

                On the plus side, looks like it's smaller on Linux:

                find ~ \
                  -type f \
                  -name "weights.bin" 2> /dev/null | \
                xargs stat -c '%s' | \
                awk '{
                  sum += $1
                } END {
                  printf "%.2f GiB\n", sum / (1024^3)
                }'
                2.67 GiB

                atoponce@fosstodon.orgA This user is from outside of this forum
                atoponce@fosstodon.orgA This user is from outside of this forum
                atoponce@fosstodon.org
                wrote sidst redigeret af
                #10

                @ferricoxide I still haven't seen it show up in my home dir. What's the directory path for you?

                ferricoxide@blahaj.zoneF 1 Reply Last reply
                0
                • atoponce@fosstodon.orgA atoponce@fosstodon.org

                  @ferricoxide I still haven't seen it show up in my home dir. What's the directory path for you?

                  ferricoxide@blahaj.zoneF This user is from outside of this forum
                  ferricoxide@blahaj.zoneF This user is from outside of this forum
                  ferricoxide@blahaj.zone
                  wrote sidst redigeret af
                  #11

                  @atoponce@fosstodon.org

                  ${HOME}/.config/google-chrome/OptGuideOnDeviceModel/2025.8.21.1028/weights.bin

                  atoponce@fosstodon.orgA 1 Reply Last reply
                  0
                  • ferricoxide@blahaj.zoneF ferricoxide@blahaj.zone

                    @atoponce@fosstodon.org

                    ${HOME}/.config/google-chrome/OptGuideOnDeviceModel/2025.8.21.1028/weights.bin

                    atoponce@fosstodon.orgA This user is from outside of this forum
                    atoponce@fosstodon.orgA This user is from outside of this forum
                    atoponce@fosstodon.org
                    wrote sidst redigeret af
                    #12

                    @ferricoxide Thanks. It appears to be ~/.var/app/com.google.Chrome/config/google-chrome/OptGuideOnDeviceModel/ for me as I have it installed via Flatpak, but the weights.bin file hasn't showed up yet.

                    I wonder if Flatpak is getting in the way here, or if it's getting installed somewhere else.

                    ferricoxide@blahaj.zoneF 1 Reply Last reply
                    0
                    • atoponce@fosstodon.orgA atoponce@fosstodon.org

                      Google Chrome is silently installing a local LLM on your computer that is 4 gigabytes in size. It's done without consent, it's not visible in the settings, and removing it will reinstall it later.

                      https://www.thatprivacyguy.com/blog/chrome-silent-nano-install/

                      faduda@mastodon.ieF This user is from outside of this forum
                      faduda@mastodon.ieF This user is from outside of this forum
                      faduda@mastodon.ie
                      wrote sidst redigeret af
                      #13

                      @atoponce So outside of uninstalling Chrome, what's the solution here?
                      And does it affect other Chrone-based browsers?

                      atoponce@fosstodon.orgA 1 Reply Last reply
                      0
                      • faduda@mastodon.ieF faduda@mastodon.ie

                        @atoponce So outside of uninstalling Chrome, what's the solution here?
                        And does it affect other Chrone-based browsers?

                        atoponce@fosstodon.orgA This user is from outside of this forum
                        atoponce@fosstodon.orgA This user is from outside of this forum
                        atoponce@fosstodon.org
                        wrote sidst redigeret af
                        #14

                        @faduda A possible solution might be toggling chrome://settings/system -> On-device AI, although I haven't been able to confirm, as the 4 GB weights.bin file hasn't shown up on my install yet.

                        And no, this is strictly Google Chrome browser bloat. It doesn't affect Chromium, Edge, Brave, or any of the other Chromium forks as I understand it.

                        andres4ny@social.ridetrans.itA 1 Reply Last reply
                        0
                        • ryan@bemrose.socialR This user is from outside of this forum
                          ryan@bemrose.socialR This user is from outside of this forum
                          ryan@bemrose.social
                          wrote sidst redigeret af
                          #15
                          @0461fcbecc4c3374439932d6b8f11269ccdb7cc973ad7a50ae362db135a474dd @atoponce

                          Your sarcasm is noted. But it's also misplaced. In the article, the author points out that the obvious AI entry points in the browser (the toolbar AI button and the omnibar) don't even use the local model. They still send your queries to Google.

                          So you've got a ton of wasted bandwidth and storage space, no consent, no user action, no respect for user preferences (eg: deleting the file), and no privacy benefit because they route everything you type through the Google cloud anyway.
                          1 Reply Last reply
                          0
                          • ryan@bemrose.socialR This user is from outside of this forum
                            ryan@bemrose.socialR This user is from outside of this forum
                            ryan@bemrose.social
                            wrote sidst redigeret af
                            #16
                            @0461fcbecc4c3374439932d6b8f11269ccdb7cc973ad7a50ae362db135a474dd @atoponce I'll allow that it's clickbait (most every tech news article is these days). But how is it misinformation?
                            1 Reply Last reply
                            0
                            • atoponce@fosstodon.orgA atoponce@fosstodon.org

                              @ferricoxide Thanks. It appears to be ~/.var/app/com.google.Chrome/config/google-chrome/OptGuideOnDeviceModel/ for me as I have it installed via Flatpak, but the weights.bin file hasn't showed up yet.

                              I wonder if Flatpak is getting in the way here, or if it's getting installed somewhere else.

                              ferricoxide@blahaj.zoneF This user is from outside of this forum
                              ferricoxide@blahaj.zoneF This user is from outside of this forum
                              ferricoxide@blahaj.zone
                              wrote sidst redigeret af
                              #17

                              @atoponce@fosstodon.org

                              No clue. I only looked in
                              ~ because the only other locations my user would be able to write to would be /tmp or /var/tmp (which would be a bad place for Chrome to try to write to since those tend to be smaller partitions than /home normally is (whether /home is a standalone partition or part of `/)

                              tomtom@pouet.chapril.orgT 1 Reply Last reply
                              0
                              • atoponce@fosstodon.orgA atoponce@fosstodon.org

                                Google Chrome is silently installing a local LLM on your computer that is 4 gigabytes in size. It's done without consent, it's not visible in the settings, and removing it will reinstall it later.

                                https://www.thatprivacyguy.com/blog/chrome-silent-nano-install/

                                jonfr600@mastodon.socialJ This user is from outside of this forum
                                jonfr600@mastodon.socialJ This user is from outside of this forum
                                jonfr600@mastodon.social
                                wrote sidst redigeret af
                                #18

                                @atoponce I can confirm this on my PC. I am removing Google Chrome now.

                                1 Reply Last reply
                                0
                                • atoponce@fosstodon.orgA atoponce@fosstodon.org

                                  Google Chrome is silently installing a local LLM on your computer that is 4 gigabytes in size. It's done without consent, it's not visible in the settings, and removing it will reinstall it later.

                                  https://www.thatprivacyguy.com/blog/chrome-silent-nano-install/

                                  naturemc@mastodon.onlineN This user is from outside of this forum
                                  naturemc@mastodon.onlineN This user is from outside of this forum
                                  naturemc@mastodon.online
                                  wrote sidst redigeret af
                                  #19

                                  @atoponce Time for #degoogle and #diday !

                                  #Google

                                  1 Reply Last reply
                                  0
                                  • atoponce@fosstodon.orgA atoponce@fosstodon.org

                                    Google Chrome is silently installing a local LLM on your computer that is 4 gigabytes in size. It's done without consent, it's not visible in the settings, and removing it will reinstall it later.

                                    https://www.thatprivacyguy.com/blog/chrome-silent-nano-install/

                                    w6kme@mastodon.radioW This user is from outside of this forum
                                    w6kme@mastodon.radioW This user is from outside of this forum
                                    w6kme@mastodon.radio
                                    wrote sidst redigeret af
                                    #20

                                    @atoponce Seems like an easy fix.

                                    "The only ways to make the deletion stick are to disable Chrome's AI features through chrome://flags or enterprise policy tooling that home users do not generally have, or to uninstall Chrome entirely "

                                    veronica@mastodon.onlineV 1 Reply Last reply
                                    0
                                    • atoponce@fosstodon.orgA atoponce@fosstodon.org

                                      Google Chrome is silently installing a local LLM on your computer that is 4 gigabytes in size. It's done without consent, it's not visible in the settings, and removing it will reinstall it later.

                                      https://www.thatprivacyguy.com/blog/chrome-silent-nano-install/

                                      johnkavs@mastodon.ieJ This user is from outside of this forum
                                      johnkavs@mastodon.ieJ This user is from outside of this forum
                                      johnkavs@mastodon.ie
                                      wrote sidst redigeret af
                                      #21

                                      @atoponce what about Chromium?

                                      atoponce@fosstodon.orgA 1 Reply Last reply
                                      0
                                      • johnkavs@mastodon.ieJ johnkavs@mastodon.ie

                                        @atoponce what about Chromium?

                                        atoponce@fosstodon.orgA This user is from outside of this forum
                                        atoponce@fosstodon.orgA This user is from outside of this forum
                                        atoponce@fosstodon.org
                                        wrote sidst redigeret af
                                        #22

                                        @johnkavs It's unaffected. This is only Google Chrome bloat.

                                        johnkavs@mastodon.ieJ 1 Reply Last reply
                                        0
                                        • atoponce@fosstodon.orgA atoponce@fosstodon.org

                                          Google Chrome is silently installing a local LLM on your computer that is 4 gigabytes in size. It's done without consent, it's not visible in the settings, and removing it will reinstall it later.

                                          https://www.thatprivacyguy.com/blog/chrome-silent-nano-install/

                                          n4ch1sm0@mastodon.socialN This user is from outside of this forum
                                          n4ch1sm0@mastodon.socialN This user is from outside of this forum
                                          n4ch1sm0@mastodon.social
                                          wrote sidst redigeret af
                                          #23

                                          @atoponce Just in case someone wasn't already convinced they should dump Google Chrome for fucking good

                                          1 Reply Last reply
                                          0
                                          Svar
                                          • Svar som emne
                                          Login for at svare
                                          • Ældste til nyeste
                                          • Nyeste til ældste
                                          • Most Votes


                                          • Log ind

                                          • Har du ikke en konto? Tilmeld

                                          • Login or register to search.
                                          Powered by NodeBB Contributors
                                          Graciously hosted by data.coop
                                          • First post
                                            Last post
                                          0
                                          • Hjem
                                          • Seneste
                                          • Etiketter
                                          • Populære
                                          • Verden
                                          • Bruger
                                          • Grupper