- 你的位置 /
- 苹果系统之家 /
- 正文
VirtualSMC是高级的 Apple SMC 核心模拟驱动,让苹果系统以为当前启动的电脑是Mac电脑,需要 Lilu 作为依赖以正常工作。
特点
- 支持 64 位的 macOS 10.6 以及更新系统 (推荐使用 10.9 及以后的系统)
- 实现 MMIO 协议以及适配现代版本 macOS 的中断响应机制
- 正确提交键值属性以及它们的读写保护
- 允许根据机器型号动态调节使用不同代的 SMC
- 支持通过插件添加可扩展的传感器
- 支持启动参数
smcdebug=XX
(10.9+) - 替换查找到的硬件 SMC (你需要刷写特定的固件来完全禁用 SMC)
启动代码
- 添加
-vsmcdbg
以开启 debug 输出 (需要 DEBUG 版本支持)。 - 添加
-vsmcoff
以禁用所有 Lilu 增强。 - 添加
-vsmcbeta
以在不支持的系统中启用 Lilu 增强 (11 及以下版本为默认开启)。 - 添加
-vsmcrpt
以报告缺失的的 SMC 密钥到系统日志中。 - 添加
-vsmccomp
以优先使用硬件 SMC(如果有) - 添加
vsmcgen=X
以强制暴露 X-gen SMC 设备 (支持 1 和 2 代)。 - 添加
vsmchbkp=X
以设置 HBKP dumping mode (0 – 关闭, 1 – 普通, 2 – 没有加密)。 - 添加
vsmcslvl=X
以设置 serialisation level 的值 (0 – 关闭, 1 – 普通, 2 – 包含敏感数据 (默认))。 - 添加
smcdebug=0xff
以启用 AppleSMC debug 信息输出。 - 添加
watchdog=0
以禁用看门狗 (WatchDog) 倒计时 (if you get accidental reboots).
传感器 Kext 作用
- SMCBatteryManager 添加 SMC 跟 SMBus 协议完整的 AppleSmartBattery 模拟层,电池相关的传感器
- SMCLightSensor 通过新的 SMC 事件 API,是一个光线传感器的例子 (需要 ACPI0008_ALI)
- SMCProcessor 给 Penryn CPU 或以上提供温度传感器支持
- SMCSuperIO 风扇信息读取
v1.3.1
- Fixed
smcread -l
output
v1.3.0
- Added preliminary macOS 13 support
v1.2.9
- Fix infinite panic loop when kernel panic happens on macOS 11 and newer
- Fix rare panics caused by SMCDellSensors (new way of reading SMM was ported from FanIO driver V2.3)
- Added IT8689E device
v1.2.8
- Do not override CPU proximity SMC key in SMCDellSensors + minor fixes in logic
v1.2.7
- Fixed build settings for 32-bit
- Added EC fan monitoring support on
HP OMEN Laptop 15-ek0xxx
, thx @lunjielee - Added
fan0-dividend
to support more EC fan monitors
v1.2.6
- Added macOS 10.4 support for VirtualSMC and SMCBatteryManager
v1.2.5
- Added preliminary macOS 12 support
- Added macOS 10.6 support for SMCBatteryManager
v1.2.4
- Added support for NCT6683D series
v1.2.3
- Fixed Intel NUC EC sensors not showing proper values on some platforms
- Added
generic
EC sensor type - Added EC fan monitoring support on
HP Pavilion 14 CE2072NL
, thx @1alessandro1
1.2.2
- Improve manual fan control in SMCDellSensors (SMM access is enabled even if audio is played)
- Fixed sensor DEBUG logging with
-liludbgall
argument - Improved startup performance when probing SuperIO chips by splitting vendors
- Added SuperIO device activation when it is disabled on probe
- Added support for Nuvoton NCT6796D-E (0xD42A)
- Added support for ITE IT8987 (requires DEBUG firmware, not available for public)
- Added Intel NUC monitoring (requires manual configuration via
ec-device
, seeEmbeddedControllers.md
)
v1.2.1
- Fix version publishing for VirtualSMC and plugins
v1.2.0
- Improve manual fan control in SMCDellSensors (switch off manual control before going to sleep), rename control boot-args (start with -dell)
v1.1.9
- Improve manual fan control in SMCDellSensors (use control registers 0x35a3 and 0x34a3 to cover more Dell models)
- Fix processKext in SMCDellSensors (could be called multiple times for the same kext since flag Reloadable was set)
- Reduce audio lags in SMCDellSensors when USB audio device is used
- Allow not injecting TB0T SMC key when it is unavailable in SMCBatteryManager
v1.1.8
- Reduce audio lags in SMCDellSensors
v1.1.7
- Added MacKernelSDK with Xcode 12 compatibility
- Fixed SMCDellSensors loading on macOS 10.8
- Added VirtualSMC support for 10.6 (most plugins require newer versions)
- Fixed rare kernel panic in SMCSuperIO
1.1.6
- Added battery supplement info, thx @zhen-zen
- Fix audio lags in Safari caused by reading SMM in SMCDellSensors plugin
- Fix module version for SMCDellSensors, SMCBatteryManager and SMCLightSensor
- Optimised floating point sensor key reading with fewer arithmetic operations
- Improved SMCProcessor CPU power consumption by relaxing core synchronisation
- Fix key sensor key enumeration on Macmini8,x and MacBookPro models
v1.1.5
- Improved CHLC key value reporting
- Fixed B0PS and B0St key size to resolve broken fully charged state
- Fixed sometimes stuck battery update thx to @zhen-zen
- Added workaround for kBRemainingCapacityCmd exceeding kBFullChargeCapacityCmd
- Added preliminary 11.0 support
- Fixed SMCProcessor model detection warning
- Fixed legacy smc tool value calculation
- Fixed running smcread on 11.0 without IOKit framework
- Added a new plugin SMCDellSensors for Temp/FAN monitor/control
- Added basic SMCBatteryManager compatibility with 11.0
- Fixed crashes when trying to read CLKT key
v1.1.4
- Fixed incorrect revision reporting on T2 models (e.g. Macmini8,1)
v1.1.3
- Fixed compatibility with 10.15 debug kernel with traptrace enabled
v1.1.2
- Improved performance with Lilu 1.4.3 APIs
v1.1.1
- Fixed SMCSuperIO crashes with unsupported chips
- SMCSuperIO detected chip name to ioreg
v1.1.0
- Minor performance improvements
- Added OpenCore builtin protocol support (VirtualSmc.efi can still be used in other bootloaders)
- Added fan and voltage reporting in SMCSuperIO through I/O Registry (requires client updates) by @joedmru
下载
无法打开“xxx”,因为无法确认开发者的身份 无法打开“xxx”,因为无法验证开发者 无法打开“xxx”,因为无法检查其是否包含恶意软件 “xxx” 已损坏,打不开.您应该将它移到废纸篓 解决
目前网站的软件资源都使用网盘服务,100MB以内的文件使用
蓝奏云下载,100MB以上的文件使用
百度网盘下载。6月9号起部分100MB-5G以内文件使用
123云盘



- 版本
- 大小
- 更新日期
- 下载链接
- 1.3.1
- 1.2MB
- 2022-03-06
- [ 蓝奏云1 密码:1r17 ]
- 1.3.0
- 1.28MB
- 2022-07-05
- [ 蓝奏云 密码:4kva ]
- 1.2.9
- 1.3MB
- 2022-03-08
- [ 蓝奏云 密码:5mbb ]
- 1.2.8
- 1.3MB
- 2021-12-06
- [ 蓝奏云 密码:hcm2 ]
- 1.2.7
- 1.3MB
- 2021-09-07
- [ 蓝奏云 密码:fsge ]
- 1.2.6
- 951.6K
- 2021-08-06
- [ 蓝奏云 密码:9c0t ]
- 1.2.5
- 944.7K
- 2021-07-04
- [ 蓝奏云 密码:9ni7 ]
- 1.2.4
- 944.9K
- 2021-06-08
- [ 蓝奏云 密码:hbph ]
- 1.2.3
- 939.9K
- 2021-05-03
- [ 蓝奏云 密码:denb ]
- 1.2.2
- 932K
- 2021-04-06
- [ 蓝奏云 密码:bb0r ]
- 1.2.1
- 871.6K
- 2021-03-02
- [ 蓝奏云 密码:5giw ]
- 1.2.0
- 870.7K
- 2021-02-08
- [ 蓝奏云 密码:1e0g ]
- 1.1.9
- 866.1K
- 2020-12-08
- [ 蓝奏云 密码:hhz6 ]
- 1.1.8
- 854.1K
- 2020-11-04
- [ 蓝奏云 密码:c0y5 ]
- 1.1.7
- 797.2K
- 2020-10-06
- [ 蓝奏云 密码:bizs ]
- 1.1.6
- 797.2K
- 2020-09-08
- [ 蓝奏云 密码:cjua ]
- 1.1.5
- 781.3K
- 2020-08-04
- [ 蓝走呀 密码:3b6w ]
- 1.1.4
- 695.7K
- 2020-06-02
- [ 蓝奏云 密码:62qf ]
- 1.1.3
- 695.7K
- 2020-05-04
- [ 蓝奏云 密码:cbau ]
- 1.1.2
- 695.5K
- 2020-04-07
- [ 蓝奏云 密码:8b7u ]
- 1.1.1
- 693.7K
- 2020-02-05
- [ 蓝奏云 密码:hi5q ]
- 1.1.0
- 688.9K
- 2020-01-13
- [ 蓝奏云 密码:dvag ]
通告
对于M1/M2芯片的电脑,如果软件官方未兼容 M1/M2,可以使用 Rosetta2 转译运行。在Apple Silicon M1 Mac电脑上安装Rosetta 2 运行intel应用
苹果自家的M1和M2芯片都是ARM架构,所以M1和M2是完全通用的,未来就算有M3芯片,其底层都还是ARM构架,只是芯片名字叫法不一样而已。就像intel芯片虽然有i5、i7、i9等叫法,但底层都是x86构架的,一般直接统称intel芯片。
1.该软件著作权归作者所有,本站所有软件均来源于网络,不保证所有游戏DLC或软件插件内容齐全,仅供学习和研究使用,请支持正版。
2.本站软件大部分为破解版和开源免费软件,如有强迫症需要请购买正版。
3.本站提供的软件、驱动、镜像、mac系统镜像等等其他资源,都不包含任何免费技术服务请大家谅解!
4.本站提供的免登录付费资源购买后不支持退款,下单前请先再三确认需求哈!
5.本站每个软件都会在我们自用的MacBook Pro 13 intel和 M1 MacBook Air 电脑安装测试后发布,以确保安全无后门。
6.关于游戏说明,macOS新系统发布日期大于游戏日期的请自行判断,游戏兼容最好的还是在12系统下畅玩,13系统很难保证所有游戏都能畅玩!另外移植版游戏不保证绝对完美,移植游戏默认不支持iMac、Max机型,介意勿下。13.3+系统大部分移植游戏都不能正常运行。请查看公告日志
7.移植游戏标题中的“2022移植”、“2023移植”是指我们基于win版本的游戏使用2022或2023年的游戏移植程序,并不是说游戏官方有2022或2023最新版的游戏。
8.破解版软件不要登录账号不要更新,如需更新在本站下载新版本,然后卸载老版本重新安装最新版即可。
9.软件功能描述来自软件官网,并非我们测试结果,具体以官网为准,我们不为软件官方描述的功能负责,软件的使用请自行学习研究。
如有下载链接失效或者资源求档,请发送邮件到:macoshome@163.com,客服QQ:201863008(SVIP)。我们收到消息后会尽快回应消息。点我查看部分地区蓝奏云下载链接无法访问问题解决。
安装必看
-
Pkg安装包的游戏 PKG安装包的游戏安装开始后,再最后阶段基本都会有下图的权限提示,这个时候要按照下面的操作设置选择,不然选错了地方就不在启动台里面...
-
macOS系统对于不是从App Store商店下载的软件是有着严格的权限限制,从网上下载的软件在安装或者安装好打开时候都会有相应的提示。 常见的安装问题 ...
-
安装提示错误:Error The installation cannot continue as the installer file may be damag. Download the installer file again. 这个并不是安装镜像...
-
对于Adobe家族软件、CAD软件等等各种软件卸载这个问题,就目前市面的清理软件来说,CleanMyMac X、腾讯柠檬等等这种类型软件卸载功能不是很彻底,我们更推荐...
看看相关
-
一个开源触控板聚合器内核扩展,为 Vo
-
macOS Monterey 12 、macOS Big Sur 1
-
BrcmPatchRAM 支持DW1560、DW1820A
-
本次WiFi驱动更新对10.15系统的支持,
-
驱动版本 387.10.10.10.40.131
-
VirtualSMC是高级的 Apple SMC 核心模
随便看看
-
化身弗林特,竭尽全力让奶奶的公园维
-
一款运行快速、操作简单、功能强大的
-
支持M1/intel,已经在macOS Monterey
-
Adobe Zii 2021 is a small and great
-
本ISO镜像采用App Store原版macOS Cat
-
Apple Silicon M1/M2 芯片电脑打开游