Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
Status
The first post of this thread is a WikiPost and can be edited by anyone with the appropiate permissions. Your edits will be public.

Dayo

macrumors 68020
Dec 21, 2018
2,257
1,279
So does this make the above @DTRX way obsolete?! Or is there a way to cover all..
They are not related. His method should work and might even be more reliable. Just be careful and be sure you are in the right folder before running the deletes.
 

Dayo

macrumors 68020
Dec 21, 2018
2,257
1,279
Blocking access to ocsp.apple.com, or other hosts used for Certificate validation, will eventually affect Safari and other apps/services that rely on macOS for certificates.
True. Some potential blow backs possible there. The idea however is that for most cases, these are are sitting there validated but yes, it is a crude step and only a temp workaround until a fix is issued.

Actually, by looking at the logs in detail, it is possible to apply the folder locking option listed to the specific folder the web driver uses.

Too convoluted to get into for me as I don't actually actively use Nvidia GPU
 
  • Like
Reactions: Ashok.Vardhan

mirko.meschini

macrumors regular
Feb 13, 2011
116
5
Italy
There are several hosts used for certificate validation, macOS probably switches to another after several failed attempts on one. https://support.apple.com/en-us/HT210060
RX560 should be one the cheapest and works perfectly from High Sierra to Monterey, with
WhateverGreen of course ;)
I'd like to fix via software, but in case of gpu switch, there are many cheap gpus that work without webdriver, all GTX6xx and GTX7xx (with exeption of GTX750Ti that's a Maxwell card), and Radeons from HD7850 2GB.
 

Macschrauber

macrumors 68030
Dec 27, 2015
2,980
1,487
Germany
compressed a bit what @DTRX suggested:

the lines after ls -R are just an example, your folders will vary.

it could be simpler but I think this way it is safe, before rm -R * you can show the content with ls to be safe.


be careful, and backup before. if a cd command gives an error stop it !


Code:
sudo su



ls -R /private/var/folders/ | grep com.apple.trustd:
 

>  /private/var/folders//qw/x2tq2v791cjdsnncdrk0g2mm0000gn/C/com.apple.trustd:
>  /private/var/folders//qw/x2tq2v791cjdsnncdrk0g2mm0000gn/T/com.apple.trustd:
>  /private/var/folders//zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.trustd:
>  /private/var/folders//zz/zyxvpxvq6csfxvn_n0000000000000/T/com.apple.trustd:
>  /private/var/folders//zz/zyxvpxvq6csfxvn_n00000b400002s/C/com.apple.trustd:


cd /private/var/folders//qw/x2tq2v791cjdsnncdrk0g2mm0000gn/C/com.apple.trustd/
rm -R *
cd ..
chflags uchg com.apple.trustd


cd /private/var/folders//qw/x2tq2v791cjdsnncdrk0g2mm0000gn/T/com.apple.trustd/
rm -R *
cd ..
chflags uchg com.apple.trustd


cd /private/var/folders//zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.trustd/
rm -R *
cd ..
chflags uchg com.apple.trustd


cd /private/var/folders//zz/zyxvpxvq6csfxvn_n0000000000000/T/com.apple.trustd/
rm -R *
cd ..
chflags uchg com.apple.trustd


cd /private/var/folders//zz/zyxvpxvq6csfxvn_n00000b400002s/C/com.apple.trustd/
rm -R *
cd ..
chflags uchg com.apple.trustd


after that I installed the modded "MyWebdriver" like @chris1111 suggested by:

Code:
curl -L https://images.nvidia.com/mac/pkg/387/WebDriver-387.10.10.10.40.140.pkg -o $HOME/Downloads/WebDriver-387.10.10.10.40.140.pkg
xattr -r -d com.apple.quarantine ~/Downloads/WebDriver-387.10.10.10.40.140.pkg

# Expand the Packages with pkgutil
echo "Expand the Packages with pkgutil  "
echo "= = = = = = = = = = = = = = = = = = = = = = = = =  "
pkgutil --expand $HOME/Downloads/WebDriver-387.10.10.10.40.140.pkg $HOME/Downloads/Files_MyWebDriver

# Flatten the Packages with pkgutil
echo "Flatten the Packages with pkgutil  "
echo "= = = = = = = = = = = = = = = = = = = = = = = = =  "
pkgutil --flatten $HOME/Downloads/Files_MyWebDriver $HOME/Downloads/MyWebDriver-387.10.10.10.40.140.pkg

#rm -rf $HOME/Downloads/WebDriver-387.10.10.10.40.140.pkg
rm -rf $HOME/Downloads/Files_MyWebDriver
echo "Download and modding Done!   "
echo "= = = = = = = = = = = = = = = = = = = = = = = = =  "
xattr -r -d com.apple.quarantine ~/Downloads/MyWebDriver-387.10.10.10.40.140.pkg

and nvidia Drivers were back.

the 2nd step is maybe not needed, as I tested a lot with this box.


s.i.p. needs to be disabled for it (by csrutil disable in Recovery or createinstallmedia stick)
 
Last edited:
  • Like
Reactions: Konakan

Fullerfun

macrumors member
Jun 5, 2022
33
29
Hey, after reading and trying for a while, I think I have found a solution...

While waiting for new (possibly not-existing) driver packages from NVIDIA, one could try the following:

trustd saves files in multiple folders:

/Library/Keychains/crls
/private/var/db/crls

Several copies of the "hidden" database reside in folders labeled as "com.apple.trustd" in
/private/var/folders/

To make them visible, use the following commands in Terminal:

cd /private/var/folders/

Next step is to authenticate as root by:

sudo su

Then reveal the db folder locations by:

ls -R

You need to dive into all the folders coming up:

cd ./path/to/folder/

Take care of the following command, it could easily lead to a disaster: make sure you are in the right folder, when issuing the command.
Next is to remove all contents by:

rm -R *

Then lock the folder by:

setfile -a L .

or without Developer Tools use:

chflags uchg .

Repeat this for every "com.apple.trustd" folder in /private/var/folders/.

During my tests, new folders can appear when killing the several trustd processes in Activity Monitor with a running system. To make sure trustd will not block the kexts, keep monitoring the contents of /private/var/folders/ after killing the trustd instances. Once you have found all locations, it will eventually give up and stop.

To finish blocking trustd, remove all files in the following two folders (by rm -R *) and lock them afterwards by one of the two commands above:

/Library/Keychains/crls
/private/var/db/crls

Up to my testing, additional blocking in the hosts file or via Little Snitch is not necessary.

After you are done, restart and voilà. Your GPUs will be back.
Nice! I think you’ve effectively shut down the trustd process! You went down the road I was going down, except I was trying to replace all those files from a time machine backup before June 1st. But, I discovered simply booting safe mode, and following the guides already discussed...worked on my setup, so I stopped messing with it.

I wonder if /Library/Keychains/crls is necessary....or maybe it is for only some people...cause I have definitely fixed some systems Without touching that folder. There’s no doubt trustd uses that, but what I’m NOT sure of, is if anything about revoking this particular certificate is stored there. Perhaps that’s why the other solutions posted only seem to work for some people. Maybe on some systems/machines there is something stored there, but not on others. Or perhaps it’s variations on whether people have applied all the latest security updates to their system or not... but you know what, clear it out....can always be restored from a backup if it revokes something else you need...
 

DTRX

macrumors member
Jun 9, 2022
35
29
compressed a bit what @DTRX suggested:

the lines after ls -R are just an example, your folders will vary.

it could be simpler but I think this way it is safe, before rm -R * you can show the content with ls to be safe.


be careful, and backup before. if a cd command gives an error stop it !


Code:
sudo su



ls -R /private/var/folders/ | grep com.apple.trustd:
 

>  /private/var/folders//qw/x2tq2v791cjdsnncdrk0g2mm0000gn/C/com.apple.trustd:
>  /private/var/folders//qw/x2tq2v791cjdsnncdrk0g2mm0000gn/T/com.apple.trustd:
>  /private/var/folders//zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.trustd:
>  /private/var/folders//zz/zyxvpxvq6csfxvn_n0000000000000/T/com.apple.trustd:
>  /private/var/folders//zz/zyxvpxvq6csfxvn_n00000b400002s/C/com.apple.trustd:


cd /private/var/folders//qw/x2tq2v791cjdsnncdrk0g2mm0000gn/C/com.apple.trustd/
rm -R *
cd ..
chflags uchg com.apple.trustd


cd /private/var/folders//qw/x2tq2v791cjdsnncdrk0g2mm0000gn/T/com.apple.trustd/
rm -R *
cd ..
chflags uchg com.apple.trustd


cd /private/var/folders//zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.trustd/
rm -R *
cd ..
chflags uchg com.apple.trustd


cd /private/var/folders//zz/zyxvpxvq6csfxvn_n0000000000000/T/com.apple.trustd/
rm -R *
cd ..
chflags uchg com.apple.trustd


cd /private/var/folders//zz/zyxvpxvq6csfxvn_n00000b400002s/C/com.apple.trustd/
rm -R *
cd ..
chflags uchg com.apple.trustd



after that I installed "normally" with the GUI the NoSignature Webdrivers like @Syncretic suggested

Code:
pkgutil --expand WebDriver-387.10.10.10.40.140.pkg /tmp/FlatNVIDIA.pkg
pkgutil --flatten /tmp/FlatNVIDIA.pkg WebDriver-387.10.10.10.40.140_NoSignature.pkg

and nvidia Drivers were back.

the 2nd step is maybe not needed, as I tested a lot with this box.
I do not think a driver reinstall is required to get the functionality back, but I just discovered that even the nonfunctioning installation of the signed packages (web driver + CUDA) is working after clearing and locking all trustd folders.
 

Macschrauber

macrumors 68030
Dec 27, 2015
2,980
1,487
Germany
I do not think a driver reinstall is required to get the functionality back, but I just discovered that even the nonfunctioning installation of the signed packages (web driver + CUDA) is working after clearing and locking all trustd folders.

I got step 2 confused as I had that unsigned myWebdriver already in my archive, please edit :)
 

Fullerfun

macrumors member
Jun 5, 2022
33
29
Hey, after reading and trying for a while, I think I have found a solution...

While waiting for new (possibly not-existing) driver packages from NVIDIA, one could try the following:

trustd saves files in multiple folders:

/Library/Keychains/crls
/private/var/db/crls

Several copies of the "hidden" database reside in folders labeled as "com.apple.trustd" in
/private/var/folders/

To make them visible, use the following commands in Terminal:

cd /private/var/folders/

Next step is to authenticate as root by:

sudo su

Then reveal the db folder locations by:

ls -R

You need to dive into all the folders coming up:

cd ./path/to/folder/

Take care of the following command, it could easily lead to a disaster: make sure you are in the right folder, when issuing the command.
Next is to remove all contents by:

rm -R *

Then lock the folder by:

setfile -a L .

or without Developer Tools use:

chflags uchg .

Repeat this for every "com.apple.trustd" folder in /private/var/folders/.

During my tests, new folders can appear when killing the several trustd processes in Activity Monitor with a running system. To make sure trustd will not block the kexts, keep monitoring the contents of /private/var/folders/ after killing the trustd instances. Once you have found all locations, it will eventually give up and stop.

To finish blocking trustd, remove all files in the following two folders (by rm -R *) and lock them afterwards by one of the two commands above:

/Library/Keychains/crls
/private/var/db/crls

Up to my testing, additional blocking in the hosts file or via Little Snitch is not necessary.

After you are done, restart and voilà. Your GPUs will be back.
I wonder if you disconnect from internet,

Then,just clear, then immediately lock these,
/Library/Keychains/crls
/private/var/db/crls

clear dyld cache(or boot safe mode)

restart.
Reconnect to internet

maybe that’s all you need?
someone should try it...I will if I come across another system with this issue...
 
Last edited:

DTRX

macrumors member
Jun 9, 2022
35
29
I wonder if you just clear, then immediately lock these,
/Library/Keychains/crls
/private/var/db/crls

clear dyld cache(or boot safe mode)

restart.

maybe that’s all you need?
someone should try it...I will if I come across another system with this issue...
I tried that and it is not enough to stop trustd. You have to dive into /private/var/folders/ and lock all its folders.
 
  • Like
Reactions: Fullerfun

Dustfarm

macrumors newbie
Jun 8, 2022
4
0
I’ve just grabbed a second hand Radeon RX 580 - working flawlessly without any tweaking!
Anyone want a 1080ti? 😂
My system’s up and running again but really hope they sort this out with a driver… really crap to leave customers in this way who rely on their machines for work.
 

Macschrauber

macrumors 68030
Dec 27, 2015
2,980
1,487
Germany
Was thinking myself that a script would probably be best.

If you could parse and capture the output from this into an array, you could then loop over this and have a script that could be safely run by anyone.

I wanted to do this at first sight but I dont want to publish a script what runs with su privileges thru the system folder and removes recursively content…
 

startergo

macrumors 603
Sep 20, 2018
5,021
2,283
I wanted to do this at first sight but I dont want to publish a script what runs with su privileges thru the system folder and removes recursively content…
Code:
ls -R /private/var/folders/ | grep com.apple.trustd
ls: com.apple.LaunchServices.dv: Operation not permitted
ls: com.apple.SharedWebCredentials: Operation not permitted
ls: com.apple.lockoutagent: Operation not permitted
ls: com.apple.nsurlsessiond: Operation not permitted
ls: dmd: Operation not permitted
ls: Store: Operation not permitted
ls: /private/var/folders//7q/z35n3wgx0z166tpqc3m73h7w0000gr/0/com.apple.ScreenTimeAgent: Operation not permitted
ls: ClassKit: Operation not permitted
ls: /private/var/folders//7q/z35n3wgx0z166tpqc3m73h7w0000gr/0/com.apple.progressd: Operation not permitted
ls: dv: Operation not permitted
ls: /private/var/folders//7q/z35n3wgx0z166tpqc3m73h7w0000gr/0/com.apple.routined: Operation not permitted
ls: /private/var/folders//7q/z35n3wgx0z166tpqc3m73h7w0000gr/0: Operation not permitted
ls: com.apple.WebKit.Networking.Sandbox: Operation not permitted
ls: com.apple.WebKit.WebContent.Sandbox: Operation not permitted
ls: com.apple.QuickLook.thumbnailcache: Operation not permitted
ls: /private/var/folders//7q/z35n3wgx0z166tpqc3m73h7w0000gr/C/com.apple.quicklook.ThumbnailsAgent: Operation not permitted
com.apple.trustd
ls: /private/var/folders//7q/z35n3wgx0z166tpqc3m73h7w0000gr/C: Operation not permitted
ls: com.apple.LaunchServices.dv: Operation not permitted
ls: /private/var/folders//bx/c14q61g13dbg0nzp9m5j3hbc0000gp/0: Operation not permitted
ls: com.apple.LaunchServices.dv: Operation not permitted
ls: com.apple.SharedWebCredentials: Operation not permitted
ls: com.apple.exchangesync: Operation not permitted
ls: com.apple.lockoutagent: Operation not permitted
ls: com.apple.nsurlsessiond: Operation not permitted
ls: dmd: Operation not permitted
ls: Store: Operation not permitted
ls: /private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/0/com.apple.ScreenTimeAgent: Operation not permitted
ls: SATUpdate: Operation not permitted
ls: /private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/0/com.apple.corespeechd/Caches/VoiceTrigger: Operation not permitted
ls: ClassKit: Operation not permitted
ls: /private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/0/com.apple.progressd: Operation not permitted
ls: dv: Operation not permitted
ls: /private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/0/com.apple.routined: Operation not permitted
ls: /private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/0: Operation not permitted
ls: com.apple.WebKit.GPU.Sandbox: Operation not permitted
ls: com.apple.WebKit.Networking.Sandbox: Operation not permitted
ls: com.apple.WebKit.WebContent.Sandbox: Operation not permitted
/private/var/folders//7q/z35n3wgx0z166tpqc3m73h7w0000gr/C/com.apple.trustd:
/private/var/folders//7q/z35n3wgx0z166tpqc3m73h7w0000gr/C/com.apple.trustd/mds:
com.apple.trustd
/private/var/folders//bx/c14q61g13dbg0nzp9m5j3hbc0000gp/C/com.apple.trustd:
/private/var/folders//bx/c14q61g13dbg0nzp9m5j3hbc0000gp/C/com.apple.trustd/mds:
com.apple.trustd
ls: com.apple.QuickLook.thumbnailcache: Operation not permitted
ls: /private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/C/com.apple.quicklook.ThumbnailsAgent: Operation not permitted
/private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/C/com.apple.trustd:
/private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/C/com.apple.trustd/mds:
ls: /private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/C: Operation not permitted
com.apple.trustd
ls: com.apple.LaunchServices.dv: Operation not permitted
ls: /private/var/folders//zz/zyxvpxvq6csfxvn_n0000000000000/0: Operation not permitted
ls: com.apple.WebKit.Networking.Sandbox: Operation not permitted
ls: com.apple.WebKit.WebContent.Sandbox: Operation not permitted
/private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/T/com.apple.trustd:
/private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/T/com.apple.trustd/TemporaryItems:
com.apple.trustd
ls: /private/var/folders//zz/zyxvpxvq6csfxvn_n0000000000000/C: Operation not permitted
/private/var/folders//zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.trustd:
com.apple.trustd
/private/var/folders//zz/zyxvpxvq6csfxvn_n0000000000000/T/com.apple.trustd:
com.apple.trustd
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000b400002s/C/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000b400002s/C/com.apple.trustd/mds:
com.apple.trustd
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000b400002s/T/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000b400002s/T/com.apple.trustd/TemporaryItems:
com.apple.trustd
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000cc000033/C/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000cc000033/C/com.apple.trustd/mds:
ls: /private/var/folders//zz/zyxvpxvq6csfxvn_n00000sm00006d/0: Operation not permitted
ls: /private/var/folders//zz/zyxvpxvq6csfxvn_n00000sm00006d/C: Operation not permitted
ls: com.apple.nsurlsessiond: Operation not permitted
ls: /private/var/folders//zz/zyxvpxvq6csfxvn_n00000y800007k/0: Operation not permitted
com.apple.trustd
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000sm00006d/T/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000sm00006d/T/com.apple.trustd/TemporaryItems:
com.apple.trustd
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000y800007k/T/com.apple.nsurlsessiond/com.apple.trustd:
ls: com.apple.SharedWebCredentials: Operation not permitted
ls: com.apple.exchangesync: Operation not permitted
ls: com.apple.lockoutagent: Operation not permitted
ls: com.apple.nsurlsessiond: Operation not permitted
ls: dmd: Operation not permitted
ls: Store: Operation not permitted
ls: /private/var/folders//zz/zyxvpxvq6csfxvn_n00000z000007r/0/com.apple.ScreenTimeAgent: Operation not permitted
ls: dv: Operation not permitted
ls: /private/var/folders//zz/zyxvpxvq6csfxvn_n00000z000007r/0/com.apple.routined: Operation not permitted
ls: /private/var/folders//zz/zyxvpxvq6csfxvn_n00000z000007r/0: Operation not permitted
ls: com.apple.QuickLook.thumbnailcache: Operation not permitted
ls: /private/var/folders//zz/zyxvpxvq6csfxvn_n00000z000007r/C/com.apple.quicklook.ThumbnailsAgent: Operation not permitted
com.apple.trustd
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000z000007r/C/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000z000007r/C/com.apple.trustd/mds:
com.apple.trustd
/private/var/folders//zz/zyxvpxvq6csfxvn_n000013800008t/C/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n000013800008t/C/com.apple.trustd/mds:
com.apple.trustd
/private/var/folders//zz/zyxvpxvq6csfxvn_n000013800008t/T/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n000013800008t/T/com.apple.trustd/TemporaryItems:
A lot of noise.
 

mirko.meschini

macrumors regular
Feb 13, 2011
116
5
Italy
Code:
ls -R /private/var/folders/ | grep com.apple.trustd
ls: com.apple.LaunchServices.dv: Operation not permitted
ls: com.apple.SharedWebCredentials: Operation not permitted
ls: com.apple.lockoutagent: Operation not permitted
ls: com.apple.nsurlsessiond: Operation not permitted
ls: dmd: Operation not permitted
ls: Store: Operation not permitted
ls: /private/var/folders//7q/z35n3wgx0z166tpqc3m73h7w0000gr/0/com.apple.ScreenTimeAgent: Operation not permitted
ls: ClassKit: Operation not permitted
ls: /private/var/folders//7q/z35n3wgx0z166tpqc3m73h7w0000gr/0/com.apple.progressd: Operation not permitted
ls: dv: Operation not permitted
ls: /private/var/folders//7q/z35n3wgx0z166tpqc3m73h7w0000gr/0/com.apple.routined: Operation not permitted
ls: /private/var/folders//7q/z35n3wgx0z166tpqc3m73h7w0000gr/0: Operation not permitted
ls: com.apple.WebKit.Networking.Sandbox: Operation not permitted
ls: com.apple.WebKit.WebContent.Sandbox: Operation not permitted
ls: com.apple.QuickLook.thumbnailcache: Operation not permitted
ls: /private/var/folders//7q/z35n3wgx0z166tpqc3m73h7w0000gr/C/com.apple.quicklook.ThumbnailsAgent: Operation not permitted
com.apple.trustd
ls: /private/var/folders//7q/z35n3wgx0z166tpqc3m73h7w0000gr/C: Operation not permitted
ls: com.apple.LaunchServices.dv: Operation not permitted
ls: /private/var/folders//bx/c14q61g13dbg0nzp9m5j3hbc0000gp/0: Operation not permitted
ls: com.apple.LaunchServices.dv: Operation not permitted
ls: com.apple.SharedWebCredentials: Operation not permitted
ls: com.apple.exchangesync: Operation not permitted
ls: com.apple.lockoutagent: Operation not permitted
ls: com.apple.nsurlsessiond: Operation not permitted
ls: dmd: Operation not permitted
ls: Store: Operation not permitted
ls: /private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/0/com.apple.ScreenTimeAgent: Operation not permitted
ls: SATUpdate: Operation not permitted
ls: /private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/0/com.apple.corespeechd/Caches/VoiceTrigger: Operation not permitted
ls: ClassKit: Operation not permitted
ls: /private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/0/com.apple.progressd: Operation not permitted
ls: dv: Operation not permitted
ls: /private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/0/com.apple.routined: Operation not permitted
ls: /private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/0: Operation not permitted
ls: com.apple.WebKit.GPU.Sandbox: Operation not permitted
ls: com.apple.WebKit.Networking.Sandbox: Operation not permitted
ls: com.apple.WebKit.WebContent.Sandbox: Operation not permitted
/private/var/folders//7q/z35n3wgx0z166tpqc3m73h7w0000gr/C/com.apple.trustd:
/private/var/folders//7q/z35n3wgx0z166tpqc3m73h7w0000gr/C/com.apple.trustd/mds:
com.apple.trustd
/private/var/folders//bx/c14q61g13dbg0nzp9m5j3hbc0000gp/C/com.apple.trustd:
/private/var/folders//bx/c14q61g13dbg0nzp9m5j3hbc0000gp/C/com.apple.trustd/mds:
com.apple.trustd
ls: com.apple.QuickLook.thumbnailcache: Operation not permitted
ls: /private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/C/com.apple.quicklook.ThumbnailsAgent: Operation not permitted
/private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/C/com.apple.trustd:
/private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/C/com.apple.trustd/mds:
ls: /private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/C: Operation not permitted
com.apple.trustd
ls: com.apple.LaunchServices.dv: Operation not permitted
ls: /private/var/folders//zz/zyxvpxvq6csfxvn_n0000000000000/0: Operation not permitted
ls: com.apple.WebKit.Networking.Sandbox: Operation not permitted
ls: com.apple.WebKit.WebContent.Sandbox: Operation not permitted
/private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/T/com.apple.trustd:
/private/var/folders//q8/nfrgkvfd1jqdksvzg81m21q00000gn/T/com.apple.trustd/TemporaryItems:
com.apple.trustd
ls: /private/var/folders//zz/zyxvpxvq6csfxvn_n0000000000000/C: Operation not permitted
/private/var/folders//zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.trustd:
com.apple.trustd
/private/var/folders//zz/zyxvpxvq6csfxvn_n0000000000000/T/com.apple.trustd:
com.apple.trustd
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000b400002s/C/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000b400002s/C/com.apple.trustd/mds:
com.apple.trustd
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000b400002s/T/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000b400002s/T/com.apple.trustd/TemporaryItems:
com.apple.trustd
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000cc000033/C/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000cc000033/C/com.apple.trustd/mds:
ls: /private/var/folders//zz/zyxvpxvq6csfxvn_n00000sm00006d/0: Operation not permitted
ls: /private/var/folders//zz/zyxvpxvq6csfxvn_n00000sm00006d/C: Operation not permitted
ls: com.apple.nsurlsessiond: Operation not permitted
ls: /private/var/folders//zz/zyxvpxvq6csfxvn_n00000y800007k/0: Operation not permitted
com.apple.trustd
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000sm00006d/T/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000sm00006d/T/com.apple.trustd/TemporaryItems:
com.apple.trustd
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000y800007k/T/com.apple.nsurlsessiond/com.apple.trustd:
ls: com.apple.SharedWebCredentials: Operation not permitted
ls: com.apple.exchangesync: Operation not permitted
ls: com.apple.lockoutagent: Operation not permitted
ls: com.apple.nsurlsessiond: Operation not permitted
ls: dmd: Operation not permitted
ls: Store: Operation not permitted
ls: /private/var/folders//zz/zyxvpxvq6csfxvn_n00000z000007r/0/com.apple.ScreenTimeAgent: Operation not permitted
ls: dv: Operation not permitted
ls: /private/var/folders//zz/zyxvpxvq6csfxvn_n00000z000007r/0/com.apple.routined: Operation not permitted
ls: /private/var/folders//zz/zyxvpxvq6csfxvn_n00000z000007r/0: Operation not permitted
ls: com.apple.QuickLook.thumbnailcache: Operation not permitted
ls: /private/var/folders//zz/zyxvpxvq6csfxvn_n00000z000007r/C/com.apple.quicklook.ThumbnailsAgent: Operation not permitted
com.apple.trustd
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000z000007r/C/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000z000007r/C/com.apple.trustd/mds:
com.apple.trustd
/private/var/folders//zz/zyxvpxvq6csfxvn_n000013800008t/C/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n000013800008t/C/com.apple.trustd/mds:
com.apple.trustd
/private/var/folders//zz/zyxvpxvq6csfxvn_n000013800008t/T/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n000013800008t/T/com.apple.trustd/TemporaryItems:
A lot of noise.
You need "sudo su" first
 

TedsterTheSecond

macrumors newbie
Jun 6, 2022
21
5
I swapped my 980Ti card over for another. For some reason the Mac wasn't even seeing the old one in hardware in the system report after this NVidia/Apple farce. I feel this is a plus at least as the new card shows up, and has a nice green light with a planet Krypton vibe. Apart from that it's still a big paperweight.
 

Macschrauber

macrumors 68030
Dec 27, 2015
2,980
1,487
Germany
Same thing.

tried on two Macs, here my main machine with Mojave
Code:
sudo ls -R /private/var/folders/ | grep com.apple.trustd:
Password:
/private/var/folders//6_/pp2ctj5x0xn6d6rg7g78x6qw0000gp/C/com.apple.trustd:
/private/var/folders//qm/jk75z9qn6g3fvp4nxsbfys2m0000gq/C/com.apple.trustd:
/private/var/folders//qm/jk75z9qn6g3fvp4nxsbfys2m0000gq/T/com.apple.trustd:
/private/var/folders//ym/5dyhlzgx3qq77br4j516ygmm0000gn/C/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n0000000000000/T/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000b400002s/C/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000b400002s/T/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000sm00006d/C/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000sm00006d/T/com.apple.trustd:
/private/var/folders//zz/zyxvpxvq6csfxvn_n00000z000007r/C/com.apple.trustd:
 

DTRX

macrumors member
Jun 9, 2022
35
29
It is there.

Since you have "com.apple.ScreenTimeAgent" in your output, you should be issuing the "sudo ls -R" command from 10.15 (Catalina) or newer. Here we are trying to fix NVIDIA web drivers for 10.13 (High Sierra). More recent versions of macOS protect the content of some temporary folders for improved security. Therefore it will fail to list all files in some subdirectories even as root user.
 

Macschrauber

macrumors 68030
Dec 27, 2015
2,980
1,487
Germany
btw:

I rolled back my High Sierra Copy to a state before all this fiddling,

installed the MyWebDriver.pkg

deleted the com.apple.trustd contents and locked it

Webdriver runs.

No /etc/hosts edited, correct date and Internet was up all the time.

see https://forums.macrumors.com/thread...idia-webdrivers-anymore.2346445/post-31169311

all credits to the contributers in the thread, I just got together what was written here :)
 
  • Like
Reactions: Ashok.Vardhan
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.