Posts

Showing posts with the label Windows 10 Home

IT 筆記: 在 Windows 10 Home 安裝 Windows Subsystem for Linux

Image
剛剛換了一台新的筆記型電腦,搭載Windows 10 Home 作業系統。 Hyper-V是Windows 10內建的虛擬機器(Virtual Machine) 軟體,只需要直接從控制台中啟用「適用於 Linux 的 Windows 子系統」這項功能即可,非常容易,但只適合Windows 10 Enterprise, Pro, 或者是 Education版本。 可惜的是,家用版 Home Edition 並無此功能。 其實除了安裝VM軟件,如 VMware、VirtualBox之外,還可以在 Windows 10 Home 安裝 Windows Subsystem for Linux (WSL),以便測試 Linux 系統的功能。 首先要看一看windows的版本是否符合最低的要求,Windows build  16215 或者是較新的版本。 FROM Settings > System > About, CHECK the OS build no. 或者在 PowerShell 輸入以下的指令: systeminfo | Select-String "^OS Name","^OS Version" OS Name: Microsoft Windows 10 Home OS Version: 10.0.18362 N/A Build 18362 結果是 Windows 10 home的版本是符合最低安裝要求。 要留意的是PowerShell需要用 Adminstrator 的身份開啟。 用 Adminstrator 的身份開啟 PowerShell 輸入以下的指令: Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows - Subsystem-Linux 收到指示之後,重新啟動電腦。 再次輸入以下的指令: Enable-WindowsOptionalFeature  -Online -FeatureName  ...