Difference between revisions of "Install/Download LiveCD/zh-cn"

From Funtoo
Jump to navigation Jump to search
(Created page with "如果使用远程登录 System Rescue CD 方式进行安装,先要确认系统已经联网,并且需要在 System Rescue CD 中设置一个 root 密码:")
Line 32: Line 32:
}}
}}


If you'd like to complete the install remotely, here's how. First, you will need to ensure that your bootable CD/USB image has a functioning network connection. Then, you will need to set a root password:
如果使用远程登录 System Rescue CD 方式进行安装,先要确认系统已经联网,并且需要在 System Rescue CD 中设置一个 root 密码:


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

Revision as of 21:06, March 11, 2021

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

安装指南:下载 LiveCD

Install Guide, Chapter 1 < Prev Next >

In order to install Funtoo Linux, you will first need to boot your computer using a Linux-based Live CD or USB stick. We currently recommend the Gentoo Minimal Installation CD as it contains a modern kernel and updated booting for UEFI systems, and is a quick download. It can be burned to CD/DVD or installed on a USB stick. Download it here:

要将其复制到 U 盘上进行启动,使用以下命令:

root # dd if=install-amd64-minimal-20210103T214503Z.iso of=/dev/sdx bs=4k status=progress

当然,需要将 /dev/sdx 改为指向系统中 U 盘的块设备。

接入网络

关于从 LiveCD 设置接入网络的步骤,请参见 Funtoo:New Install Experience/LiveCD 页面。

远程安装

Alternatively, you can log into your bootable environment over the network via SSH to perform the install from another computer, and this may be more convenient way to install Funtoo Linux.

First ensure that sshd is running. For the Gentoo Minimal Installation CD, you will need to start sshd as follows:

root # /etc/init.d/sshd start

如果使用远程登录 System Rescue CD 方式进行安装,先要确认系统已经联网,并且需要在 System Rescue CD 中设置一个 root 密码:

root # passwd
New password: ********
Retype new password: ********
passwd: password updated successfully


Once you have typed in a password, you will now need to determine the IP address of the bootable system, and then you can use ssh to connect to it. To determine the IP address currently being used by the LiveCD, type ifconfig:

root # ifconfig

Alternatively, determining of an IP address is possible with iproute2 ip tool:

root # ip addr show

One of the interfaces should have an IP address (listed as inet addr:) from your LAN. You can then connect remotely, from another system on your LAN, your bootable environment, and perform steps from the comfort of an existing OS. On your remote system, type the following, replacing 1.2.3.4 with the IP address of the LiveCD. Connecting from an existing Linux or MacOS system would look something like this:

remote system $ ssh root@1.2.3.4
Password: **********
   Note

如果想从现有的微软 Windows 系统进行远程连接,则需要下载一个 Windows 的 SSH 客户端,比如 OpenSSH

通过 SSH 登录后,现在已经远程连接到 LiveCD,可以进行安装步骤。

Install Guide, Chapter 1 < Prev Next >