Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable Google Chrome auto update for MAC OS? [closed]

Does anyone know how to disable Google Chrome auto-update for MAC OS?

I tried:

  1. Renaming the GoogleSoftwareUpdate folder
  2. Change Google Chrome auto-update URL
  3. Command defaults write com.google.Keystone.Agent checkInterval 0 in terminal

It doesn't work for me.

like image 631
NeverSleeps Avatar asked Nov 29 '22 05:11

NeverSleeps


1 Answers

Method that helped me:

  1. To empty these directories:
/Library/Google/GoogleSoftwareUpdate/
~/Library/Google/GoogleSoftwareUpdate/
  1. Then change the permissions on these folders named 'GoogleSoftwareUpdate' so that there's no owner and no read/write/execute permissions.

In terminal:

cd /Library/Google/
sudo chown nobody:nogroup GoogleSoftwareUpdate
sudo chmod 000 GoogleSoftwareUpdate
cd ~/Library/Google/
sudo chown nobody:nogroup GoogleSoftwareUpdate
sudo chmod 000 GoogleSoftwareUpdate
  1. Then do the same for the folder Google one level up.
cd /Library/
sudo chown nobody:nogroup Google
sudo chmod 000 Google
cd ~/Library/
sudo chown nobody:nogroup Google
sudo chmod 000 Google

I did this after installing the Chrome version I need. Now when I'll check 'About Google Chrome' I'll see the error "Update failed (error: 10)"

like image 147
NeverSleeps Avatar answered Mar 04 '23 21:03

NeverSleeps