来源于:[远景论坛](http://bbs.pcbeta.com/viewthread-1862835-1-1.html) 比较懒,想了想,还是写个过程出来,但我不想排版,就这样将就的看。 big sur的卡顿是因为找不到wifi设备造成的!那么使用usb网卡、无网卡的用户就需要删掉WiFiAgent这个启动项,这里只是移动了下位置。 ```shell $mount -o rw / cd /System/Library/LaunchAgents sudo mv com.apple.wifi.WiFiAgent.plist ../LaunchAgentsIgnored ``` 以下为解锁过程 一、首先要确保可进入还原模式,见附件,我能进,看你们通过这个efi能不能。 二、big sur 和现在的权限有些变化,不能直接更改系统文件了,就需要先进入recovery解锁! 1、解锁csr, authenticated-root. ```shell csrutil disable csrutil authenticated-root disable ``` 解完后重启,不要随意重置nvram,会失效! 2、第二次进入还原模式后 ```shell #diskutil list ``` 记住你的(synthesized)分区的系统磁盘位置,例如我的是PanaMac(非数据) disk1s5 ``` mount -rw /Volumes/PanaMac(非数据) 自行替换 ``` 先写入一个空白的快照下次启动 ```shell /System/Library/Filesystems/apfs.fs/Contents/Resources/apfs_systemsnapshot -r "" -v /Volumes/<PanaMac>(非数据) 自行替换 ``` 列出该磁盘上的所有快照 ```shell diskutil apfs listSnapshots disk1s5 ``` 删除所有快照,一个一个删 ```shell diskutil apfs deletesnapshot disk1s5 -name 快照名 ``` 删完后重启,进入系统执行文章开头的wifiagent那部份命令! 另外,再次打开authenticated-root后不确定是否会再次启用快照,如果再次启动快照那么必须用舍弃之前的删快照的方法。 新建一个名为1的快照 ```shell /System/Library/Filesystems/apfs.fs/Contents/Resources/apfs_systemsnapshot -s "1" -v /Volumes/<PanaMac>(非数据) 自行替换 ``` 移动wifiagent到LaunchAgentsIgnored ```shell mount -uw /Volumes/PanaMac cd /Volumes/PanaMac/System/Library/LaunchAgents mv com.apple.wifi.WiFiAgent.plist ../LaunchAgentsIgnored ``` 新建一个名为2的快照 ```shell /System/Library/Filesystems/apfs.fs/Contents/Resources/apfs_systemsnapshot -s "2" -v /Volumes/<PanaMac>(非数据) 自行替换 ``` 应用快照2到下次开机,快照1为备份用,不用管 ```shell /System/Library/Filesystems/apfs.fs/Contents/Resources/apfs_systemsnapshot -r "2" -v /Volumes/<PanaMac>(非数据) 自行替换 ``` 问题来了,即然可以用删快照的方法破开权限,那么,u盘安装按正常来讲也是可以remount rw 以盘,然后删除快照这样操作来进行直接安装,还没研究,反正我也装好系统了,等beta2看看会怎样。 [bigsur可以进recovery的oc.zip](/api/file/getAttach?fileId=5f019c9de8ede66b210011d1) 最后修改:4年前 © 著作权归作者所有