Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
fuss:macos [2019/10/17 11:03] – [Boot in Target Disk Mode] officefuss:macos [2022/08/07 12:33] (current) – [Make ISO] office
Line 175: Line 175:
   - open ''about:config'' and set ''security.enterprise_roots.enabled'' to ''true''.   - open ''about:config'' and set ''security.enterprise_roots.enabled'' to ''true''.
  
 +====== Get Apple Model Identifier from Terminal ======
  
 +Run as root:
 +<code bash>
 +system_profiler SPHardwareDataType | grep "Model Identifier".
 +</code>
 +
 +====== 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/24 is the network to NAT traffic for 
 +# and 192.168.1.1 is the local machine IP address
 +nat on en0 from 192.168.1.0/24 to any -> 192.168.1.1 
 +
 +# load NAT rules from the previously stored file
 +pfctl -f nat-rules -e
 +
 +# list all firewall configurations
 +pfctl -s all
 +</code>
 +
 +====== Make ISO ======
 +
 +''hdiutil'' can be used to make an ISO image out of a folder or to convert other image types:
 +<code bash>
 +hdiutil makehybrid /PATH -o image.iso -iso -joliet
 +</code>
 +where:
 +  * ''/PATH'' is either the path to a folder to be bundled in an ISO or an image in a different format,
 +  * ''image.iso'' is the output ISO,
 +  * the ''-iso'' parameter instructs ''hdiutil'' to create an ISO,
 +  * ''-joliet'' enables Joliet extensions on the ISO to be created (modern ISO files, without name restrictions, etc.)
 +
 +====== Enable Bluetooth without Mouse ======
 +
 +Bluetooth can be enabled in case it has been turned off accidentally by using spotlight (<key>Command-Space</key>) and then opening up the Bluetooth Exchange program. The Bluetooth Exchange program will ask whether bluetooth should be enabled.
 + 

fuss/macos.1571310213.txt.gz · Last modified: 2019/10/17 11:03 by office

Wizardry and Steamworks

© 2025 Wizardry and Steamworks

Access website using Tor Access website using i2p Wizardry and Steamworks PGP Key


For the contact, copyright, license, warranty and privacy terms for the usage of this website please see the contact, license, privacy, copyright.