✘ n@Libbys-MacBook-Pro  ~  sudo /Applications/Install\ macOS\ Catalina.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled
Ready to start.
To continue we need to erase the volume at /Volumes/Untitled.
If you wish to continue type (Y) then press return: Y
Erasing disk: 0%... 10%... 20%... 30%... 100%
Copying to disk: 0%... 10%... 20%... 30%... 40%... 50%... 60%... 70%... 80%... 90%... 100%
Making disk bootable...
Copying boot files...
Install media now available at "/Volumes/Install macOS Catalina"
 n@Libbys-MacBook-Pro  ~ 

'OS X 설정' 카테고리의 다른 글

macOS usb 만들기  (2) 2024.10.31
homebrew nvm 설치  (0) 2019.12.02
Mojave 모하비 usb 만들기  (0) 2019.07.21
맥 ssh 입력주소 줄이기  (0) 2019.07.21
맥 초기 설치  (1) 2018.09.07
Posted by wakira
,

$SSHDaemonSvc = Get-Service -Name ‘sshd’
Set-Service -Name $SSHDaemonSvc.Name -StartupType Automatic
Start-Service -Name $SSHDaemonSvc.Name

Get-Service sshd
Start-Service sshd
Stop-Service sshd
Restart-Service sshd

Posted by wakira
,

client=new XMLHttpRequest();
client.open('POST', "http://14.52.96.94:4600/apitest/Login2.php", true);
client.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
client.send("ID=abc@naver.com&Password=asas");

 

 

client=new XMLHttpRequest(); 
client.open('POST', "http://14.52.96.94:4600/apitest/Login2.php", true); 
client.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); 

client.send('{"id":"abc@naver.com","password":"asas"}');

 

'' 카테고리의 다른 글

aws 도메인 연결 Route53  (0) 2017.03.28
Posted by wakira
,