일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- datasource
- STS
- catalina log
- Java
- bitbucket
- python 개발환경
- Spring Boot
- 배열스트링
- springboot
- log4j profile
- hikari
- ubuntu
- between 날짜
- Linux
- log4j2
- oracle between
- Gradle
- Spring Security
- 라즈베리파이
- Spring
- MySQL
- between date
- ORACLE CLOUD
- github
- intellij
- git
- hikaricp
- mybatis
- template
- oracle
Archives
- Today
- Total
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- datasource
- STS
- catalina log
- Java
- bitbucket
- python 개발환경
- Spring Boot
- 배열스트링
- springboot
- log4j profile
- hikari
- ubuntu
- between 날짜
- Linux
- log4j2
- oracle between
- Gradle
- Spring Security
- 라즈베리파이
- Spring
- MySQL
- between date
- ORACLE CLOUD
- github
- intellij
- git
- hikaricp
- mybatis
- template
- oracle
Archives
- Today
- Total
파워노트
windows 10 wsl ubuntu 설치 하기. 본문
반응형
* windows 10 에서도 macbook과 같이 linux 환경의 제공이 되고 있어
이젠 맥북이 개발자들에게 좋다는 말을 굳이 하지 않아도 ???
* windows 개발자들에게는 정말 좋은 소식 같다...
# 설정 및 설치
- PowerShell을 관리자 권한으로 열어 실행합니다.
- 아래 두가지의 명령을 실행해야 합니다.
* Linux용 Windows 하위 시스템 설치
PS C:\Users\kim> dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
* '가상 머신 플랫폼' 옵션 구성 요소 사용
PS C:\Users\kim> dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
- 컴퓨터 재부팅 하면 준비 완료.
* WSL 2를 기본 버전으로 설정
PS C:\Users\kim> wsl --set-default-version 2
WSL 2와의 주요 차이점에 대한 자세한 내용은 https://aka.ms/wsl2를 참조하세요
# 설치 확인
- 컴퓨터 재부팅이후 PowerShell을 실행하여 wsl 명령어를 입력했을때 아래와 같이 나오면 정상 설치 된것입니다.
PS C:\Users\kim> wsl
Linux용 Windows 하위 시스템에 배포가 설치되어 있지 않습니다.
아래의 Microsoft Store에서 배포를 설치할 수 있습니다.
https://aka.ms/wslstore
# ubuntu 설치
- Microsoft Store에서 Ubuntu를 검색하여 설치합니다.
- 다운로드가 완료되고 나면 실행 버튼으로 변경됩니다.
- 실행버튼 클릭 창이 하나 ubuntu가 실행된다
- 사용할 User계정 등록을 위해 id/password를 입력 한다.
# 설치 확인
- 모든창을 닫고 PowerShell을 실행하여 설치 사항 확인
PS C:\Users\kim> wsl --list --verbose
NAME STATE VERSION
* Ubuntu-20.04 Stopped 2
# wsl 실행
- wsl 실행시 ubuntu가 실행되면서 shell이 변경된것을 확인 할 수 있다.
PS C:\Users\kim> wsl
To run a command as administrator (user "root"), use "sudo <command>".
See "man sudo_root" for details.
ubuntu@DESKTOP-JITFBJH:/mnt/c/Users/kim$
반응형
'Linux' 카테고리의 다른 글
VI Editor 필살기 (0) | 2021.04.05 |
---|---|
[경고] 원격 호스트 식별이 변경되었습니다! (0) | 2021.02.10 |
리눅스 Java 프로세스 모두 죽이기. (0) | 2020.07.28 |
[ubuntu] mysql 설치 (0) | 2020.07.11 |
[ubuntu] java 설치 하기 (0) | 2020.07.09 |
Comments