We can become in root or run any commands with sudo (in this case, we option to become in root)
First, backup the .kext for BlockStorage
iguanas-MacBook:~ root# cp /System/Library/Extensions/IOAHCIFamily.kext/Contents/PlugIns/IOAHCIBlockStorage.kext/Contents/MacOS/IOAHCIBlockStorage /System/Library/Extensions/IOAHCIFamily.kext/Contents/PlugIns/IOAHCIBlockStorage.kext/Contents/MacOS/IOAHCIBlockStorage.original
Run the following perl script in the IOAHCIBlockStorage
iguanas-MacBook:~ root# Read more...
kextload
All posts tagged kextload
Enabling SSH service from command line in MacOS can be done using with some brief commands without using the GUI (Sytem preferences).
To do that, open an Terminal window and run the following commands:
$ systemsetup -setremotelogin on
$ sudo sudo launchctl load -w /System/Library/LaunchDaemons/ssh.plist
To disable remote login (SSH):
$ systemsetup -setremotelogin off
Do you really want to turn remote login off? If you do, you will lose this connection and can only turn it back on locally Read more...