This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
fuss:macos [2019/10/17 11:03] – [Boot in Target Disk Mode] office | fuss:macos [2022/08/07 12:33] (current) – [Make ISO] office | ||
---|---|---|---|
Line 175: | Line 175: | ||
- open '' | - open '' | ||
+ | ====== Get Apple Model Identifier from Terminal ====== | ||
+ | Run as root: | ||
+ | <code bash> | ||
+ | system_profiler SPHardwareDataType | grep "Model Identifier" | ||
+ | </ | ||
+ | |||
+ | ====== Enabling NAT and Forwarding on Mac OS 10.10 ====== | ||
+ | |||
+ | <code bash> | ||
+ | # enable IP forwarding | ||
+ | sysctl -w net.inet.ip.forwarding=1 | ||
+ | |||
+ | # flush all firewall rules | ||
+ | pfctl -F all | ||
+ | # or, to just flush the NAT rules | ||
+ | pfctl -F nat | ||
+ | |||
+ | # this line should be placed in a file | ||
+ | # | ||
+ | # 192.168.1.0/ | ||
+ | # and 192.168.1.1 is the local machine IP address | ||
+ | nat on en0 from 192.168.1.0/ | ||
+ | |||
+ | # load NAT rules from the previously stored file | ||
+ | pfctl -f nat-rules -e | ||
+ | |||
+ | # list all firewall configurations | ||
+ | pfctl -s all | ||
+ | </ | ||
+ | |||
+ | ====== Make ISO ====== | ||
+ | |||
+ | '' | ||
+ | <code bash> | ||
+ | hdiutil makehybrid /PATH -o image.iso -iso -joliet | ||
+ | </ | ||
+ | where: | ||
+ | * ''/ | ||
+ | * '' | ||
+ | * the '' | ||
+ | * '' | ||
+ | |||
+ | ====== Enable Bluetooth without Mouse ====== | ||
+ | |||
+ | Bluetooth can be enabled in case it has been turned off accidentally by using spotlight (< | ||
+ |
For the contact, copyright, license, warranty and privacy terms for the usage of this website please see the contact, license, privacy, copyright.