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.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.So does this make the above @DTRX way obsolete?! Or is there a way to cover all..
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.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.
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.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
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
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
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.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 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.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.
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.ls -R /private/var/folders/ | grep com.apple.trustd:
I wonder if you disconnect from internet,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 tried that and it is not enough to stop trustd. You have to dive into /private/var/folders/ and lock all its folders.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...
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.
If you can't share them, can you at least tell us exactly how you contacted NVidia, and what you said to get them?View attachment 2016341
actually called like this, but i dont think they're beta testing drivers.
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…
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:
You need "sudo su" firstA lot of noise.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:
Same thing.try grep com.apple.trustd: (with : at the end)
Same thing.
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:
It is there.
Mine (Mojave) works like yours as well.tried on two Macs, here my main machine with Mojave