Skip to content

Add WSL to installation doc (ko) #2048

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 22, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions ko/documentation/installation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ ruby -v

* [패키지 관리 시스템](#package-management-systems)
* [Debian, Ubuntu](#apt)
* [Windows WSL Ubuntu](#apt-wsl)
* [CentOS, Fedora, RHEL](#yum)
* [Snap](#snap)
* [Gentoo](#portage)
Expand Down Expand Up @@ -78,6 +79,23 @@ Debian GNU/Linux와 Ubuntu는 apt 패키지 관리 시스템을 사용합니다.
$ sudo apt-get install ruby-full
{% endhighlight %}

### apt (Windows WSL Ubuntu)
{: #apt-wsl}

Windows 10을 사용 중이라면 WSL을 통해 Linux Ubuntu OS를 사용할 수 있습니다.
또한 apt를 통해 루비를 사용할 수 있습니다.

다음 페이지에서 WSL을 설치하는 방법에 대해 알아보세요.

[Windows Subsystem for Linux Installation Guide for Windows 10](https://docs.microsoft.com/ko-kr/windows/wsl/install-win10)

다음과 같이 Linux OS와 동일하게 apt를 사용할 수 있습니다.

{% highlight sh %}
$ sudo apt-get install ruby-full
{% endhighlight %}

WSL에서 rbenv와 같은 루비 관리자를 사용하는 것도 가능합니다.

### yum (CentOS, Fedora, RHEL)
{: #yum}
Expand Down