This sheet goes along with this SSH YouTube tutorial
$ ssh brad@192.168.1.29
$ mkdir test
$ cd test
| // | |
| // iOTG App master | |
| // | |
| // Created by Janak Shah on 26/01/2017. | |
| // Copyright © 2017 Janak Shah. All rights reserved. | |
| // | |
| #import <UIKit/UIKit.h> | |
| @interface DynamicTestViewController : UIViewController |
| // | |
| // DynamicTestViewController.m | |
| // iOTG App master | |
| // | |
| // Created by Janak Shah on 26/01/2017. | |
| // Copyright © 2017 Janak Shah. All rights reserved. | |
| // | |
| #import "DynamicTestViewController.h" |
| ------------------------------------- | |
| Translated Report (Full Report Below) | |
| ------------------------------------- | |
| Process: RemotePlay [1818] | |
| Path: /Applications/RemotePlay.app/Contents/MacOS/RemotePlay | |
| Identifier: com.playstation.RemotePlay | |
| Version: 8.0.0 (8.0.0) | |
| Code Type: ARM-64 (Native) | |
| Parent Process: launchd [1] |
| #import "MasterViewController.h" | |
| #import "DetailViewController.h" | |
| #import "UIImage+PDF.h" | |
| #import "TestViewController.h" | |
| #import "Constants.h" | |
| #include <sys/types.h> | |
| #include <sys/sysctl.h> | |
| @interface MasterViewController () | |
| @end |
| func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) { | |
| if navigationAction.request.url?.scheme == "tel" || navigationAction.request.url?.scheme == "mailto" { | |
| UIApplication.shared.open(navigationAction.request.url!) | |
| decisionHandler(.cancel) | |
| } else { | |
| decisionHandler(.allow) | |
| } | |
| } |
| sudo /Applications/Install\ macOS\ Monterey.app/Contents/Resources/createinstallmedia --volume /Volumes/yourUSBVolumeName |
| [ 2.877432] evm: security.SMACK64 | |
| [ 2.877432] evm: security.SMACK64EXEC | |
| [ 2.877433] evm: security.SMACK64TRANSMUTE | |
| [ 2.877433] evm: security.SMACK64MMAP | |
| [ 2.877433] evm: security.apparmor | |
| [ 2.877433] evm: security.ima | |
| [ 2.877434] evm: security.capability | |
| [ 2.877434] evm: HMAC attrs: 0x1 | |
| [ 2.877824] PM: Magic number: 5:564:46 | |
| [ 2.877844] event_source uprobe: hash matches |
$ ssh brad@192.168.1.29
$ mkdir test
$ cd test