Difference between revisions of "Install/Mounting Filesystems/zh-cn"

From Funtoo
Jump to navigation Jump to search
(Created page with "按照如下的步骤挂载新创建的文件系统,创建 {{c|/mnt/funtoo}} 作为安装的挂载点:")
(Created page with "如果在之前创建了额外的文件系统 (例如 {{c|/home}} 或 {{c|/var}}),应该现在就挂载它们,以便在解压 stage3 时(将在稍后的步骤中进...")
 
Line 15: Line 15:
}}
}}


If you have any additional filesystems you created earlier (such as {{c|/home}} or {{c|/var}}), you should mount them now, so that when the stage3 is extracted (which we will do in a later step) these filesystems will get populated with the necessary files. This can be done as follows:
如果在之前创建了额外的文件系统 (例如 {{c|/home}} {{c|/var}}),应该现在就挂载它们,以便在解压 stage3 时(将在稍后的步骤中进行)这些文件系统将被填充必要的文件。这可以通过以下方式完成:


{{console|body=
{{console|body=

Latest revision as of 16:51, March 14, 2021

Other languages:
English • ‎español • ‎polski • ‎português do Brasil • ‎русский • ‎中文(中国大陆)‎

安装指南:挂载文件系统

Install Guide, Chapter 6 < Prev Next >

按照如下的步骤挂载新创建的文件系统,创建 /mnt/funtoo 作为安装的挂载点:

root # mkdir /mnt/funtoo
root # mount /dev/sda3 /mnt/funtoo
root # mkdir /mnt/funtoo/boot
root # mount /dev/sda1 /mnt/funtoo/boot

如果在之前创建了额外的文件系统 (例如 /home/var),应该现在就挂载它们,以便在解压 stage3 时(将在稍后的步骤中进行)这些文件系统将被填充必要的文件。这可以通过以下方式完成:

root # mkdir /mnt/funtoo/var
root # mount /dev/sdb1 /mnt/funtoo/var
Install Guide, Chapter 6 < Prev Next >