Install/Download and Extract Stage3/pt-br

From Funtoo
< Install
Revision as of 11:59, September 21, 2018 by Kyetoy (talk | contribs) (Created page with "Se você não sabe qual subarquitetura escolher, execute esse comando: {{console|body= ###i## gcc -march=native -Q --help=target | grep march }} A página Subarches lista...")
Jump to navigation Jump to search
Other languages:
English • ‎español • ‎polski • ‎português do Brasil • ‎русский • ‎中文(中国大陆)‎

Guia de Instalação: Descarregue e Extraia o Estágio 3

Install Guide, Chapter 8 < Prev Next >

Agora que os sistemas de arquivos foram criados e seu hardware e relógio do sistema estão configurados, a próxima etapa é fazer o download do tarball inicial do estágio 3. O estágio 3 é um sistema pré compilado usado como ponto de partida para instalar o Funtoo Linux.

Para descarregar a versão correta do Funtoo Linux para o seu sistema, vá para a página Subarches. Sub arquiteturas são construções do Funtoo Linux que são projetadas para rodar em um tipo particular de CPU, para oferecer o melhor desempenho possível. Elas também tiram vantagens dos conjuntos de instruções disponíveis para cada CPU.

   Note

Agora temos um banco de dados de todos os processadores Intel de 64 bits, mapeados para o stage3 ideal para download! Para ver esta lista, visite Funtoo CPU Database e procure por sua CPU. Um subconjunto dessa lista agora também aparece nas páginas de sub-arquitetura Intel de 64 bits.

Se você não sabe qual subarquitetura escolher, execute esse comando:

root # gcc -march=native -Q --help=target

A página Subarches lista todas as versões otimizadas para CPU do Funtoo Linux. Encontre aquela que é apropriada para o tipo de CPU que seu sistema possui, e então clique no seu nome na primeira coluna (como corei7, por exemplo). Você então irá para uma página dedicada a essa subarquitetura e os tarballs de estágio 3 disponíveis para download serão listados. Se você estiver usando uma tecnologia de virtualização para executar o Funtoo Linux, e existir a possibilidade de sua VM migrar para diferentes tipos de hardware, é recomendável usar um estágio 3 otimizado para o conjunto de instruções de CPU mais antigo em que sua VM será executada ou uma imagem genérica se essa VM puder ser executada nos processadores AMD e Intel.

For most subarches, you will have several stage3s available to choose from. This next section will help you understand which one to pick.

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:

VariantDescription
standardThe "standard" version of Funtoo Linux
pure64A 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
   Important

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.