The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Gentoo Minimal Installation CD"
m (added note for net-setup tool on the gentoo live cd) |
|||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
<translate> | <translate> | ||
<!--T:1--> | |||
The Gentoo Minimal Installation CD is a bootable CD/USB image that can be used to install Funtoo Linux. It can be downloaded from https://www.gentoo.org/downloads/ | The Gentoo Minimal Installation CD is a bootable CD/USB image that can be used to install Funtoo Linux. It can be downloaded from https://www.gentoo.org/downloads/ | ||
== Advantages and Disadvantages == | == Advantages and Disadvantages == <!--T:2--> | ||
<!--T:3--> | |||
The advantages of the Gentoo Minimal Installation CD are: | The advantages of the Gentoo Minimal Installation CD are: | ||
<!--T:4--> | |||
# It's small, so it can quickly be downloaded. | # It's small, so it can quickly be downloaded. | ||
# It uses GRUB 2.04 to boot UEFI (and isolinux for BIOS) which supports the most modern UEFI systems well. | # It uses GRUB 2.04 to boot UEFI (and isolinux for BIOS) which supports the most modern UEFI systems well. | ||
Line 11: | Line 14: | ||
# It uses a modern kernel so should support recent hardware. | # It uses a modern kernel so should support recent hardware. | ||
<!--T:5--> | |||
Some possible downsides for this image are: | Some possible downsides for this image are: | ||
<!--T:6--> | |||
# Since it's small, not much is included. | # Since it's small, not much is included. | ||
# You are left with {{c|wpa-supplicant}} for configuring WiFi (This is not difficult if you know how and we'll cover the steps, but is more complicated than using NetworkManager.) | # You are left with {{c|wpa-supplicant}} for configuring WiFi (This is not difficult if you know how and we'll cover the steps, but is more complicated than using NetworkManager.) | ||
== Downloading the Funtoo Stage == | == Downloading the Funtoo Stage == <!--T:7--> | ||
<!--T:8--> | |||
Use the the following command to start a text-based browser once you are online: | Use the the following command to start a text-based browser once you are online: | ||
<!--T:9--> | |||
{{console|body= | {{console|body= | ||
# ##i##cd /mnt/funtoo | # ##i##cd /mnt/funtoo | ||
Line 25: | Line 32: | ||
}} | }} | ||
== Getting Online == | == Getting Online == <!--T:10--> | ||
<!--T:11--> | |||
If you are using a wired connection, simply plug in and run {{c|dhcpcd <iface_name>}} to grab an IP address. You should then be ready to go. | If you are using a wired connection, simply plug in and run {{c|dhcpcd <iface_name>}} to grab an IP address. You should then be ready to go. | ||
<!--T:12--> | |||
Using WiFi is a bit trickier and is covered next. | Using WiFi is a bit trickier and is covered next. | ||
{{Note|The Gentoo Live CD has a utility named {{c|net-setup}} that makes WiFi setup a breeze. It can also aid in setting up wired devices as well. :)}} | |||
<!--T:13--> | |||
Once you have booted the LiveCD, you should be able to use WiFI as follows. First, type | Once you have booted the LiveCD, you should be able to use WiFI as follows. First, type | ||
{{c|ifconfig -a}} and ensure that your wireless interface is visible. Your wireless | {{c|ifconfig -a}} and ensure that your wireless interface is visible. Your wireless | ||
interface should begin with a "w". | interface should begin with a "w". | ||
<!--T:14--> | |||
Next, you will want to configure {{c|wpa_supplicant}} configuration so it has the | Next, you will want to configure {{c|wpa_supplicant}} configuration so it has the | ||
credentials to log in to your local WiFi access point. To do this, use the following command: | credentials to log in to your local WiFi access point. To do this, use the following command: | ||
<!--T:15--> | |||
{{console|body= | {{console|body= | ||
# ##i##wpa_passphrase my_wifi_network my_wifi_passphrase > /etc/wpa_supplicant/ | # ##i##wpa_passphrase my_wifi_network my_wifi_passphrase > /etc/wpa_supplicant/wpa_supplicant.conf | ||
}} | }} | ||
<!--T:16--> | |||
{{Note|If you are connecting to an ''unsecured'' wireless access point, then please follow the {{c|wpa_cli}} instructions on Arch Wiki: https://wiki.archlinux.org/index.php/wpa_supplicant#Connecting_with_wpa_cli}} | {{Note|If you are connecting to an ''unsecured'' wireless access point, then please follow the {{c|wpa_cli}} instructions on Arch Wiki: https://wiki.archlinux.org/index.php/wpa_supplicant#Connecting_with_wpa_cli}} | ||
<!--T:17--> | |||
Replace {{c|my_wifi_network}} with the actual name of your WiFi network, using double-quotes if the network name includes spaces, and replace {{c|my_wifi_passphrase}} with your literal passphrase (again using necessary quoting for spaces or special characters.) | Replace {{c|my_wifi_network}} with the actual name of your WiFi network, using double-quotes if the network name includes spaces, and replace {{c|my_wifi_passphrase}} with your literal passphrase (again using necessary quoting for spaces or special characters.) | ||
<!--T:18--> | |||
Next, you will want to start {{c|wpa_supplicant}}: | Next, you will want to start {{c|wpa_supplicant}}: | ||
<!--T:19--> | |||
{{console|body= | {{console|body= | ||
# ##i##/etc/init.d/wpa_supplicant start | # ##i##/etc/init.d/wpa_supplicant start | ||
}} | }} | ||
<!--T:20--> | |||
Once this completes, {{c|wpa_supplicant}} should begin connecting to your WiFi network | Once this completes, {{c|wpa_supplicant}} should begin connecting to your WiFi network | ||
automatically. You will be able to then see this by typing {{c|ifconfig}}. | automatically. You will be able to then see this by typing {{c|ifconfig}}. | ||
<!--T:21--> | |||
Finally, you will want to run the following command, specifying the name of your wireless interface. This will start a DHCP client which will grab an IP address and configure your network so that you can use it: | Finally, you will want to run the following command, specifying the name of your wireless interface. This will start a DHCP client which will grab an IP address and configure your network so that you can use it: | ||
<!--T:22--> | |||
{{console|body= | {{console|body= | ||
# ##i##dhcpcd wasdflk | # ##i##dhcpcd wasdflk | ||
}} | }} | ||
<!--T:23--> | |||
Replace {{c|wasdflk}} with the name of your wireless interface as it appears in {{c|ifconfig}}. You should now be able to {{c|ping}}, etc. | Replace {{c|wasdflk}} with the name of your wireless interface as it appears in {{c|ifconfig}}. You should now be able to {{c|ping}}, etc. | ||
</translate> | </translate> | ||
[[Category:CD/USB Installation Media]] | [[Category:CD/USB Installation Media]] | ||
[[Category:Official Documentation]] | [[Category:Official Documentation]] |
Latest revision as of 08:56, March 9, 2021
The Gentoo Minimal Installation CD is a bootable CD/USB image that can be used to install Funtoo Linux. It can be downloaded from https://www.gentoo.org/downloads/
Advantages and Disadvantages
The advantages of the Gentoo Minimal Installation CD are:
- It's small, so it can quickly be downloaded.
- It uses GRUB 2.04 to boot UEFI (and isolinux for BIOS) which supports the most modern UEFI systems well.
- It's based on Gentoo -- always good :)
- It uses a modern kernel so should support recent hardware.
Some possible downsides for this image are:
- Since it's small, not much is included.
- You are left with
wpa-supplicant
for configuring WiFi (This is not difficult if you know how and we'll cover the steps, but is more complicated than using NetworkManager.)
Downloading the Funtoo Stage
Use the the following command to start a text-based browser once you are online:
root # cd /mnt/funtoo root # links https://build.funtoo.org
Getting Online
If you are using a wired connection, simply plug in and run dhcpcd <iface_name>
to grab an IP address. You should then be ready to go.
Using WiFi is a bit trickier and is covered next.
The Gentoo Live CD has a utility named net-setup
that makes WiFi setup a breeze. It can also aid in setting up wired devices as well. :)
Once you have booted the LiveCD, you should be able to use WiFI as follows. First, type
ifconfig -a
and ensure that your wireless interface is visible. Your wireless
interface should begin with a "w".
Next, you will want to configure wpa_supplicant
configuration so it has the
credentials to log in to your local WiFi access point. To do this, use the following command:
root # wpa_passphrase my_wifi_network my_wifi_passphrase > /etc/wpa_supplicant/wpa_supplicant.conf
If you are connecting to an unsecured wireless access point, then please follow the wpa_cli
instructions on Arch Wiki: https://wiki.archlinux.org/index.php/wpa_supplicant#Connecting_with_wpa_cli
Replace my_wifi_network
with the actual name of your WiFi network, using double-quotes if the network name includes spaces, and replace my_wifi_passphrase
with your literal passphrase (again using necessary quoting for spaces or special characters.)
Next, you will want to start wpa_supplicant
:
root # /etc/init.d/wpa_supplicant start
Once this completes, wpa_supplicant
should begin connecting to your WiFi network
automatically. You will be able to then see this by typing ifconfig
.
Finally, you will want to run the following command, specifying the name of your wireless interface. This will start a DHCP client which will grab an IP address and configure your network so that you can use it:
root # dhcpcd wasdflk
Replace wasdflk
with the name of your wireless interface as it appears in ifconfig
. You should now be able to ping
, etc.