--- tags: 109-1 --- # 風險與效能評估 以下提供三種安裝Linux的方式,並列表提供安裝後的效能及安裝風險比較。 詳細的安裝方式請見個別的sub-section。 ## Comparison <style> .rating { min-width: 100px; } .star { color: grey; font-size: larger; } .checked { color: orange; } .warn { color: #fb3434; } </style> <table> <tr> <th>方式</th> <th class="rating">安裝後效能</th> <th class="rating">安裝風險</th> <th>說明</th> </tr> <tr> <td>雙系統</td> <td> <span class="star checked">★</span> <span class="star checked">★</span> <span class="star checked">★</span> </td> <td> <span class="star warn">★</span> <span class="star warn">★</span> <span class="star warn">★</span> </td> <td>直接灌一個單獨的Linux系統,例如Windows加Linux雙系統,可以在開機選單選擇要用哪個系統開機,效能最佳,但灌之前資料要先備份,風險最高,灌壞了可能導致另一個系統的crash</td> </tr> <tr> <td>VirtualBox</td> <td> <span class="star checked">★</span> <span class="star">★</span> <span class="star">★</span> </td> <td> <span class="star warn">★</span> <span class="star">★</span> <span class="star">★</span> </td> <td>使用VirtualBox創一個虛擬機器,因為要模擬一整個隔離的系統,效能最差,用起來可能會感覺當當的,但安裝風險最低,失敗了頂多VirtualBox當掉,砍掉重灌就好</td> </tr> <tr> <td>WSL</td> <td> <span class="star checked">★</span> <span class="star checked">★</span> <span class="star">★</span> </td> <td> <span class="star warn">★</span> <span class="star warn">★</span> <span class="star">★</span> </td> <td>Windows Subsystem for Linux,在Windows裡面裝Linux子系統,圖形介面要自己另外裝,效能聽說和雙系統差不多。安裝風險就是可能會不小心動到Windows的東西,此外因為不是完全隔離的系統,所以不保證會完全沒有問題</td> </tr> </table>