설치 방법
윈도우 검색 -> 개발자 기능 사용
-> 개발자 모드
선택
윈도우 store에서 검색 -> ubuntu
설치
윈도우 PowerShell 관리자모드 실행
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
컴퓨터 재부팅 -> ubuntu
실행 -> username, password 설정
VMware으로 Centos 설치 방법
vmware player 다운로드
https://www.vmware.com/kr/products/workstation-player/workstation-player-evaluation.html
centos 다운로드
http://mirror.navercorp.com/centos/7.6.1810/isos/x86_64/CentOS-7-x86_64-DVD-1810.iso
Ubuntu nginx(웹서버) 설치
sudo apt-get install nginx // nginx 설치
sudo service nginx start // 실행
Centos를 GUI로 바꾸기
sudo yum update -y
sudo yum groupinstall “GNOME Desktop” “Graphical Administration Tools”
sudo ln -sf /lib/systemd/system/runlevel5.target /etc/systemd/system/default.target
reboot
Apache 실행
sudo yum install httpd -y // 아파치 설치
sudo systemctl start httpd // 아파치 실행
Centos http 방화벽 오픈
firewall-cmd --permanent --add-service=http
firewall-cmd --reload
잘 보고 갑니다~