标签归档:黑苹果

Deskmini H310 IntelMausiEthernet working with WOL

黑果开启 WOL,UEFI 中 Advance→ACPI→i219v 及 boot→wake on line 改为 enable。
Deskmimi H310 网卡型号为 I219V,使用驱动 IntelMausiEthernet。

git clone https://github.com/Mieze/IntelMausiEthernet.git
Change line 174 and 175 of IntelMausiEthernet.cpp to TRUE
wolCapable = true;
wolActive = true;

Recompiled the kext and replace in /EFI/efi/clover/kext/other

编译过程:
App Store 搜索 Xcode 安装,打开项目文件 IntelMausiEthernet.xcodeproj,Product → Build ,Product → Archive,在生成文件中找到 IntelMausiEthernet.kext。

参考自:
https://github.com/Mieze/IntelMausiEthernet/issues/17#issuecomment-424290662

Asrock Deskmini H310-STX/COM Hackintosh Command

隐藏“允许任何来源的应用”选项问题

新的系统安装好后,通常你打开一个dmg文件准备安装的时候,系统会提示你不允许打开未知来源的应用,这是因为从macOS Sierra开始增强了GateKeeper的安全性,所以“允许任何来源的应用”选项被隐藏,目的在于避免除Mac AppStore和正规签名外的未知或未签名App在系统内被任意执行,从而威胁用户隐私和系统安全。但这也造成了很多不便。

操作方法:打开终端,输入命令:

sudo spctl --master-disable

验证口令后即可。

查看声卡型号及注入的ID以及ConfigData
ioreg -l | grep ALC | grep HDAConfigDefault

开启原生SSD Trim功能
sudo trimforce enable

转自 黑果小兵的部落阁 Mac常用到的命令[持续更新]

Win7 挂载 U 盘 EFI 分区

diskpart
list disk # 磁盘列表
select disk n # 选择需要制作EFI分区的磁盘,n为磁盘号
list partition # 磁盘分区列表
select partition m # 选择efi分区,m为efi分区号
set id=ebd0a0a2-b9e5-4433-87c0-68b6b72699c7
assign letter=x # x为efi分区盘符
set id="C12A7328-F81F-11D2-BA4B-00A0C93EC93B" # 设置为EFI分区

参考来源:
https://blog.daliansky.net/Under-Windows-using-DISKPART-to-create-EFI-points.html
http://bbs.pcbeta.com/forum.php?mod=redirect&goto=findpost&ptid=1771724&pid=47914884