The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Install/Download LiveCD/zh-tw"
(Updating to match new version of source page) |
(Updating to match new version of source page) |
||
Line 16: | Line 16: | ||
{{console|body= | {{console|body= | ||
# ##i##dd if=install-amd64-minimal-20210103T214503Z.iso of=/dev/sdx bs=4k status=progress | # ##i##dd if=install-amd64-minimal-20210103T214503Z.iso of=/dev/sdx bs=4k status=progress oflag=sync | ||
}} | }} | ||
Revision as of 04:24, December 13, 2021
安裝教學 : 下載LiveCD
Install Guide, Chapter 1 | < Prev | Next > |
要安裝Funtoo Linux,首先你需要一個Linux的Live CD或是隨身碟來啟動你的電腦。我們推薦Gentoo系的System Rescue CD ,因為它附有很多工具而且同時支援32和64位元的系統。你可以將它燒錄進CD/DVD或是安裝在隨身碟裡。在這裡可以下載他們:
- 從這裡下載 funtoo.org
To copy it to a USB stick for booting, use the following command:
root # dd if=install-amd64-minimal-20210103T214503Z.iso of=/dev/sdx bs=4k status=progress oflag=sync
Of course, you will need to change /dev/sdx
to point to the block device of the USB stick on your system.
連接網路
For steps on setting up network access from the LiveCD, please see the Funtoo:New Install Experience/LiveCD page.
遠端安裝
你也可以透過SSH來遠端登入System Rescue CD來從其他的電腦上安裝,這樣安裝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
如果想要遠端安裝Funtoo,首先你需要去認System Rescue CD已經成功連上網路,然後你會需要設定一組System Rescue CD的root密碼。
root # passwd New password: ******** Retype new password: ******** passwd: password updated successfully
設定完密碼後,你還會需要知道System Rescue CD的ip位址來ssh
它。輸入ifconfig
來取得System Rescue CD的ip位址:
root # ifconfig
你也可以使用iproute2 的 ip
工具來找出IP位址:
root # ip addr show
其中一個網路介面應該要擁有一組ip位址(包含字串inet addr:
),你可以從區域網路中的其他電腦遠端連接到System Rescue CD並使用現有的作業系統來完成安裝的工作。在像是MacOS或是Linux等你想用來遠端操作的系統上輸入(將1.2.3.4
替換為System Rescue CD的ip位址):
(remote system) $ ssh root@1.2.3.4 Password: **********
如果想從Microsoft Windows連接 你需要下載一個SSH客戶端,例如:PuTTY。
在透過SSH登入System Rescue CD之後你就能遠端的執行下列的安裝步驟了。
Install Guide, Chapter 1 | < Prev | Next > |