ROOT 권한 부여
https://www.leafcats.com/323
원문 : https://syudal.tistory.com/entry/Ubuntu-Nginx-Lets-Encrypt%EB%A1%9C-https-%EC%A0%81%EC%9A%A9%ED%95%98%EA%B8%B0 1. CertBot 다운로드 Certbot의 Repo를 등록, 해당 패키지를 다운로드 $ sudo add-apt-repository ppa:certbot/certbot $ sudo apt-get install python3-certbot-nginx 2. SSL 인증서를 적용하여 https 적용하기 $ sudo certbot…
https://yh-kr.tistory.com/34 https://davi06000.tistory.com/61 https://aeong-dev.tistory.com/6
계정 추가 및 www 폴더 생성 sudo adduser blog cd /home/blog sudo mkdir ./www sudo chmod 755 ./www cd ./www 다운로드 wget -c http://wordpress.org/latest.tar.gz 압축 해제 tar -xzvf latest.tar.gz 권한…
원문 : https://velog.io/@pikamon/Linux-3 1. WSL 활성화 Windows PowerShell을 관리자 권한으로 실행 그리고 아래 2개의 명령어를 차례대로 입력 dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart 2. PC 재부팅 3. WSL2…