Note
The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Install/Prepare Disk/zh-tw"
< Install
Jump to navigation
Jump to search
(Created page with "==== 在此之前... ====") |
(Created page with "在對硬碟做任何的變更之前,請確保你選擇了正確的目標,使用 {{c|lsblk}} 指令來查看你系統上的所有硬碟(block devices),以及在這些硬...") |
||
Line 10: | Line 10: | ||
==== 在此之前... ==== | ==== 在此之前... ==== | ||
在對硬碟做任何的變更之前,請確保你選擇了正確的目標,使用 {{c|lsblk}} 指令來查看你系統上的所有硬碟(block devices),以及在這些硬碟上的所有分區。 | |||
{{console|body= | {{console|body= |
Revision as of 06:52, October 24, 2018
安裝教學: 準備硬碟
Install Guide, Chapter 2 | < Prev | Next > |
在這個章節,你需要選擇一個MBR或UEFI/GPT之中選擇一個硬碟格式,如果你不太熟悉這兩者之間的差別,請參考 Disk Formats以了解更多,大致上在小於2.2TB硬碟之下選擇legacy MBR方法會通常沒什麼問題,大多數的現代Pc系統同時支援MBR和UEFI啟動。
在此之前...
在對硬碟做任何的變更之前,請確保你選擇了正確的目標,使用 lsblk
指令來查看你系統上的所有硬碟(block devices),以及在這些硬碟上的所有分區。
root # lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 1.8T 0 disk ├─sda1 8:1 0 512M 0 part ├─sda2 8:2 0 8G 0 part [SWAP] └─sda3 8:3 0 1.8T 0 part ├─main-root 254:0 0 500G 0 lvm / └─main-data 254:1 0 1.3T 0 lvm /home
Make sure you will not be overwriting any important data and that you have chosen the correct /dev/sd?
device. Above, you can see that sda
contains three partitions, sda1
, sda2
and sda3
, and that sda3
contains LVM volumes.
Once you've double-checked your target block device and made sure you'll be partitioning the correct disk, proceed to the next step.