The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Install/Download and Extract Stage3/es
Guia de instalación: Descargar and Extraer el Stage3
Install Guide, Chapter 8 | < Prev | Next > |
Ahora que el sistema de archivos está creado, su hardware y reloj del sistema están establecidos, el siguiente paso es descargar el Stage 3 tarball inicial. El Stage 3 es un sistema precompilado utilizado como un punto de partida para instalar Funtoo Linux.
Para descargar la rama correcta de Funtoo Linux para su sistema, diríjase hacia la página Subarches. Las sub-arquitecturas son construcciones de Funtoo Linux que están designadas para ejecutar un tipo particular de CPU, para ofrecer el mejor rendimiento posible. También aprovechan los conjuntos de instrucciones disponibles para cada CPU.
Ahora tenemos una base de datos de todas las CPU Intel de 64 bits existentes asignadas al stage3 ideal para descargar. Para ver esta lista, visite Funtoo CPU Database y busque su CPU. Un subconjunto de esta lista ahora también aparece en las páginas de subarquitecturas Intel de 64 bits.
Si no sabe qué subarch elegir, ejecute este comando:
root # gcc -march=native -Q --help=target
La página Subarches enumera todas las versiones de Funtoo Linux optimizadas por CPU. Busque el que sea apropiado para el tipo de CPU que tiene su sistema, y luego haga clic en su nombre en la primera columna (como corei7
, por ejemplo). Luego irá a una página dedicada a esa subarch, y los stage3s disponibles para descargar serán listados. Si está utilizando una tecnología de virtualización para ejecutar Funtoo Linux, y su máquina virtual puede migrar a diferentes tipos de hardware, se recomienda utilizar un stage3 que esté optimizado para el conjunto de instrucciones de CPU más antiguo en el que se ejecutará su máquina virtual, o un genérico. imagen si puede ejecutarse en procesadores AMD e Intel.
Para la mayoría de las sub-arquitecturas, se tendrán varios stage3 disponibles para elegir. La siguiente sección le ayudará a entender cuál escoger.
Which Build?
Pick funtoo-current
.
Which Variant?
If you're not sure, pick standard
.
Our "regular" stage3's are listed with a variant of standard
. The following variant builds are available:
Variant | Description |
---|---|
standard | The "standard" version of Funtoo Linux |
pure64 | A 64-bit build that drops multilib (32-bit compatibility) support. Can be ideal for server systems. |
Download the Stage3
Once you have found the stage3 that you would like to download, use wget
to download the Stage 3 tarball you have chosen to use as the basis for your new Funtoo Linux system. It should be saved to the /mnt/funtoo
directory as follows:
root # cd /mnt/funtoo root # wget https://build.funtoo.org/funtoo-current/x86-64bit/generic_64/stage3-latest.tar.xz
Note that 64-bit systems can run 32-bit or 64-bit stages, but 32-bit systems can only run 32-bit stages. Make sure that you select a Stage 3 build that is appropriate for your CPU. If you are not certain, it is a safe bet to choose the generic_64
or generic_32
stage. Consult the Subarches page for more information.
Once the stage is downloaded, extract the contents with the following command, substituting in the actual name of your Stage 3 tarball:
root # tar xpf stage3-latest.tar.xz
It is very important to use tar's
"p
" option when extracting the Stage 3 tarball - it tells tar
to preserve any permissions and ownership that exists within the archive. Without this option, your Funtoo Linux filesystem permissions will be incorrect.