Mac系统启动项管理:安装Adobe软件,出现Error code 41解决方案
Author:zhoulujun Date:
Mac上面安装新的Adobe软件时候,报错。点击官方链接:
Error code 41: Unable to access a critical file/directory
Error code 41 indicates that the installer doesn't have proper access to a critical file or directory.
Solution
Make sure you're not logged in with a restricted account. It is also likely that the file permissions under your current user account have been modified. Select Retry to install the Creative Cloud app again。
我因为是文件权限问题。或者用户权限问题。但是我 是管理员用户,应该不存在用户权限问题。
其实我理解错了,这个问题的原因是:41 是因为你用某个优化工具禁用了 Adobe 的开启代理项导致的。
具体查看:https://blog.csdn.net/weixin_42060630/article/details/114365755
文件里面推荐用:App Cleaner & Uninstaller Pro
我在用的腾讯的 lemon。
为什么不用系统的默认工具管理启动项?
关键是,比如像adboe这类的启动项,你在系统巩固里面看不到呀
手动管理开机启动项
macOS 系统的启动项会以 .plist 的文件存在于以下目录中:
/Library/LaunchDaemons:系统启动时运行,用户不登录也会运行。
/Library/LaunchAgents:用户登录后运行。
~/Library/LaunchAgents:用户自定义的用户启动项
/System/Library/LaunchDaemons:系统自带的启动项
/System/Library/LaunchAgents:系统自带的启动项
每个 .plist 文件中,有 3 个属性控制着是否会开机自动启动。
KeepAlive:决定程序是否需要一直运行,如果是 false 则需要时才启动。默认 false
RunAtLoad:开机时是否运行。默认 false。
SuccessfulExit:此项为 true 时,程序正常退出时重启(即退出码为 0);为 false 时,程序非正常退出时重启。此项设置时会隐含默认 RunAtLoad = true,因为程序需要至少运行一次才能获得退出状态。
所以其实针对这三项,不同的值有不同的表现:
如果 KeepAlive = false:
当 RunAtLoad = false 时:程序只有在有需要的时候运行。
当 RunAtLoad = true 时:程序在启动时会运行一次,然后等待在有需要的时候运行。
当 SuccessfulExit = true / false 时:不论 RunAtLoad 值是什么,都会在启动时运行一次。其后根据 SuccessfulExit 值来决定是否重启。
如果 KeepAlive = true :不论 RunAtLoad/SuccessfulExit 值是什么,都会启动时运行且一直保持运行状态。
如果不希望开机自动运行,则需要:
找到对应程序的 .plist 文件
删除 SuccessfulExit 属性。
将 RunAtLoad / KeepAlive 均设为
Reference
https://developer.apple.com/library/content/technotes/tn2083/_index.html
https://wild-flame.github.io/guides/docs/mac-os-x-setup-guide/preference_and_settings/launch
转载本站文章《Mac系统启动项管理:安装Adobe软件,出现Error code 41解决方案》,
请注明出处:https://www.zhoulujun.cn/html/OS/Mac/MacOSTutorials/8648.html