├── README.md ├── com.apple.jetsamproperties.D22.plist.new ├── com.apple.jetsamproperties.D221.plist.new ├── com.apple.jetsamproperties.N56.plist.new ├── com.apple.jetsamproperties.N66.plist.new └── com.apple.jetsamproperties.N66m.plist.new /README.md: -------------------------------------------------------------------------------- 1 | # 越狱 iOS 系统内存限制修改 2 | 3 | 越狱后的 iOS 系统在使用 Kitsunebi 时会有崩溃的情况,目前来看是与内存限制有关,越狱系统似乎更容易触发内存上限导致应用被系统杀掉。 4 | 5 | 在 iOS 中负责监控其它进程内存用量和杀掉超出限制的进程叫做 Jetsam,在它的配置文件中就有相关的对内存做限制的配置,它的配置文件一般在 `/System/Library/LaunchDaemons/com.apple.jetsamproperties.{Model}.plist`,其中 Model 在各个手机上可能都不一样,也有可能有多个这样的文件。里面对 VPN 进程做限制的条目是: 6 | ``` 7 | com.apple.networkextension.packet-tunnel 8 | 9 | ActiveHardMemoryLimit 10 | 15 11 | InactiveHardMemoryLimit 12 | 15 13 | JetsamPriority 14 | 14 15 | 16 | ``` 17 | 打开文件后搜索 `packet-tunnel` 即可找到,其中两个 `15` 的数值就是 iOS 对 VPN 进程的内存限制值 15MB。 18 | 19 | 要修改 iOS VPN 进程的内存限制,我们只需要用 iFile 等文件管理工具找到这些配置文件,复制到电脑上然后对相关数值进行修改,修改后覆盖原来文件,重启一下手机即可。 20 | 21 | 要打开这些 `plist` 文件需要一些特殊的编辑器;如果你用的是 macOS,且安装有 Xcode,那就可以直接双击打开,如果没装 Xcode,可以下载 [BBEdit](https://s3.amazonaws.com/BBSW-download/BBEdit_12.6.1.dmg)(30 天试用期) 这个软件来打开;如果你用的是 Windows,大概可以使用 [这个](http://www.johnwordsworth.com/downloads/plistpad/plist-pad-x64-installer-0-1-0.exe) 软件来编辑。 22 | 23 | 要修改的内容很明显了,就是把数值改大就行,比如把原本 15MB 的限制改为 30MB 限制: 24 | ``` 25 | com.apple.networkextension.packet-tunnel 26 | 27 | ActiveHardMemoryLimit 28 | 30 29 | InactiveHardMemoryLimit 30 | 30 31 | JetsamPriority 32 | 14 33 | 34 | ``` 35 | 36 | 本 repo 中上传有一些已经修改好的文件,如果它们的 Model 跟你手机上的一样,你应该可以直接下载来覆到你系统上(去掉 .new 后缀),如果 Model 不一样,你可能需要自己去修改。如果你不会自己修改,也可以把相关文件通过邮件 `eric.y.corsican@gmail.com` 发给我修改,如果有多个文件,请把它们都发过来,修改后我会放到这个 repo 上来。 37 | 38 | 记住在操作前做好备份工作。 39 | -------------------------------------------------------------------------------- /com.apple.jetsamproperties.D22.plist.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamada95/jetsamproperties/3a777706668e6e033e142fe8344a5ff636efa9fb/com.apple.jetsamproperties.D22.plist.new -------------------------------------------------------------------------------- /com.apple.jetsamproperties.D221.plist.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamada95/jetsamproperties/3a777706668e6e033e142fe8344a5ff636efa9fb/com.apple.jetsamproperties.D221.plist.new -------------------------------------------------------------------------------- /com.apple.jetsamproperties.N56.plist.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamada95/jetsamproperties/3a777706668e6e033e142fe8344a5ff636efa9fb/com.apple.jetsamproperties.N56.plist.new -------------------------------------------------------------------------------- /com.apple.jetsamproperties.N66.plist.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamada95/jetsamproperties/3a777706668e6e033e142fe8344a5ff636efa9fb/com.apple.jetsamproperties.N66.plist.new -------------------------------------------------------------------------------- /com.apple.jetsamproperties.N66m.plist.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamada95/jetsamproperties/3a777706668e6e033e142fe8344a5ff636efa9fb/com.apple.jetsamproperties.N66m.plist.new --------------------------------------------------------------------------------