윈도우10 우분투 리눅스 사용하기
윈도우10 에서 리눅스 사용이 가능해졌습니다. 베타버전이고 Ubuntu 리눅스이긴 하지만 그래도 Hyper-V 로 설치하는 것 보단 메모리 관리 측면에서 유리할 것 같네요.
리눅스 설치와 root 계정으로 ssh 로 접속하는 방법에 대해서 알아보겠습니다.
리눅스를 사용하려면 Windows 기능에서 "Linux용 Windows 하위 시스템" 을 활성화 시켜야 합니다.
재부팅을 한 다음에 개발자 기능 사용에서 개발자 모드를 선택합니다.
이제 cmd 를 관리자 권한으로 열어서 lxrun /install 을 실행합니다.
위 과정에서 10분 넘게 반응이 없다면 가상 메모리 페이징 파일이 분산되어서 진행이 되지 않는 현상이 생깁니다.
그러므로 "모든 드라이브에 대한 페이징 파일 크기 자동 관리"를 체크하고 재부팅 하고 설치하면 됩니다.
재설치 방법은
lxrun /uninstall /full
lxrun /install
이렇게 하면 됩니다.
설치가 다 되었습니다.
cmd 창에서 bash 를 실행하고 ssh 접속 환경을 설정합니다.
root@DESKTOP-8SGGEIP:~# service ssh restart
sudo: unable to resolve host DESKTOP-8SGGEIP
initctl: Unable to connect to Upstart: Failed to connect to socket /com/ubuntu/upstart: 연결이 거부됨
Could not load host key: /etc/ssh/ssh_host_rsa_key
Could not load host key: /etc/ssh/ssh_host_dsa_key
Could not load host key: /etc/ssh/ssh_host_ecdsa_key
Could not load host key: /etc/ssh/ssh_host_ed25519_key
* Restarting OpenBSD Secure Shell server sshd
st key: /etc/ssh/ssh_host_rsa_key
Could not load host key: /etc/ssh/ssh_host_dsa_key
Could not load host key: /etc/ssh/ssh_host_ecdsa_key
Could not load host key: /etc/ssh/ssh_host_ed25519_key
[ OK ]
위 처럼 ssh 키를 로드할 수 없다고 나오면
# dpkg-reconfigure openssh-server
명령어를 한번 실행하여 줍니다.
이제 될겁니다.
그럼 이제 root 계정으로 로그인이 되도록 환경설정을 하면 됩니다.
# vi /etc/ssh/sshd_config
Port 10022
UsePrivilegeSeparation no
PermitRootLogin yes
PasswordAuthentication yes
# service ssh restart
이제 ssh 접속을 테스트 해보세요~
'윈도우10' 카테고리의 다른 글
윈도우10 OneDrive 삭제후 재설치 (2) | 2017.04.28 |
---|---|
윈도우10 Remix OS 설치 (2) | 2017.04.28 |
윈도우10 FTP 서버 구축 방법 (0) | 2017.04.21 |
윈도우10 Hyper-V 가상 컴퓨터 만들기 (0) | 2017.04.20 |
윈도우10 시작프로그램 추가 방법 (0) | 2017.03.21 |