The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Install/Prepare Disk/zh-cn"
Mmwweettyy (talk | contribs) (Created page with "在对磁盘进行任何操作之前,请确保你的分区是正确的。使用 {{c|lsblk}} 命令查看系统中所有块设备的列表,以及这些块设备上的分区:") |
(Updating to match new version of source page) |
||
Line 23: | Line 23: | ||
}} | }} | ||
<div lang="en" dir="ltr" class="mw-content-ltr"> | |||
{{Note|If you're not sure which disks are which, you can use {{c|lsblk -o MODEL,NAME,SIZE}} to show the device models matching the {{c|/dev/sd?}} names.}} | {{Note|If you're not sure which disks are which, you can use {{c|lsblk -o MODEL,NAME,SIZE}} to show the device models matching the {{c|/dev/sd?}} names.}} | ||
</div> | |||
Make sure you will not be overwriting any important data and that you have chosen the correct {{c|/dev/sd?}} device. Above, you can see that SATA disk {{c|sda}} contains three partitions, {{c|sda1}}, {{c|sda2}} and {{c|sda3}}, and that {{c|sda3}} contains LVM volumes. If you are using an NVME disk, then you may see {{c|nvme0n1}} as your disk, and your partitions (if any exist yet) will be named {{c|nvme0n1p1}}, {{c|nvme0n1p2}}, etc. If you are installing on microSD Card for Raspberry Pi, your disk will likely be {{c|mmcblk0}} and partitions will have suffixes {{c|p1}}, {{c|p2}}, etc. | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
Make sure you will not be overwriting any important data and that you have chosen the correct {{c|/dev/sd?}} device. Above, you can see that SATA disk {{c|sda}} contains three partitions, {{c|sda1}}, {{c|sda2}} and {{c|sda3}}, and that {{c|sda3}} contains LVM volumes. If you are using an NVME disk, then you may see {{c|nvme0n1}} as your disk, and your partitions (if any exist yet) will be named {{c|nvme0n1p1}}, {{c|nvme0n1p2}}, etc. If you are installing on microSD Card for Raspberry Pi, your disk will likely be {{c|mmcblk0}} and partitions will have suffixes {{c|p1}}, {{c|p2}}, etc. | |||
</div> | |||
一旦你仔细检查了目标块设备,并确定将会对磁盘进行正确的分区,就继续下一步。 | 一旦你仔细检查了目标块设备,并确定将会对磁盘进行正确的分区,就继续下一步。 | ||
<noinclude>{{InstallNavigation|num=2|prev=Download LiveCD|next=MBR Partitioning|align=right}}</noinclude> | <noinclude>{{InstallNavigation|num=2|prev=Download LiveCD|next=MBR Partitioning|align=right}}</noinclude> |
Revision as of 04:57, December 13, 2021
安装指南:准备磁盘
Install Guide, Chapter 2 | < Prev | Next > |
在本节中,需要选择一种用于启动和分区的磁盘格式—— MBR 或 UEFI/GPT。如果你不熟悉这些选项之间的差异,请查看我们的磁盘格式页面,了解每个选项的概述和权衡。一般来说,对于 2TB 以下的系统盘,选择传统的 MBR 方法通常是安全的,而且大多数现代 PC 系统既支持 MBR 也支持 UEFI 启动。
但首先......
在对磁盘进行任何操作之前,请确保你的分区是正确的。使用 lsblk
命令查看系统中所有块设备的列表,以及这些块设备上的分区:
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
If you're not sure which disks are which, you can use lsblk -o MODEL,NAME,SIZE
to show the device models matching the /dev/sd?
names.
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 SATA disk sda
contains three partitions, sda1
, sda2
and sda3
, and that sda3
contains LVM volumes. If you are using an NVME disk, then you may see nvme0n1
as your disk, and your partitions (if any exist yet) will be named nvme0n1p1
, nvme0n1p2
, etc. If you are installing on microSD Card for Raspberry Pi, your disk will likely be mmcblk0
and partitions will have suffixes p1
, p2
, etc.
一旦你仔细检查了目标块设备,并确定将会对磁盘进行正确的分区,就继续下一步。
Install Guide, Chapter 2 | < Prev | Next > |