kocoman Posted April 12, 2013 Share Posted April 12, 2013 How to extract dsdt from single user mode? thanks Link to comment https://www.insanelymac.com/forum/topic/287849-how-to-extract-dsdt-from-single-user-mode-thanks/ Share on other sites More sharing options...
eep357 Posted April 13, 2013 Share Posted April 13, 2013 IIRC Clover can extract at boot up, see Clover section for any info. When actually in Single User mode, what can be done is limited because the frameworks haven't loaded, so even a majority of command line tools will not work, just vary basic ones. Link to comment https://www.insanelymac.com/forum/topic/287849-how-to-extract-dsdt-from-single-user-mode-thanks/#findComment-1906478 Share on other sites More sharing options...
k3nny Posted April 13, 2013 Share Posted April 13, 2013 Theoretically this should do it: ioreg -lr -c'AppleACPIPlatformExpert' -d1 | grep 'ACPI Tables' | sed -e 's/.*DSDT"=<//' -e 's/>.*//' | xxd -r -p > '/Users/name/DSDT.aml' What the command does, is showing the 'ACPI Tables' ioreg property, cutting down the line to the bare hexadecimal content of the DSDT and converting it into binary form to the given path. Replace "name" with your user account name or chose a completely different path, as you like. Link to comment https://www.insanelymac.com/forum/topic/287849-how-to-extract-dsdt-from-single-user-mode-thanks/#findComment-1906599 Share on other sites More sharing options...
Rampage Dev Posted April 16, 2013 Share Posted April 16, 2013 use this command found here Link to comment https://www.insanelymac.com/forum/topic/287849-how-to-extract-dsdt-from-single-user-mode-thanks/#findComment-1907621 Share on other sites More sharing options...
Recommended Posts