Difference between revisions of "Beginners' Guide/Preparation (Português)"
(→CD de instalação) |
(→Dispositivo de memória flash ou pen-drive USB) |
||
Line 41: | Line 41: | ||
Veja [[Install_from_a_USB_flash_drive|Instalar a partir de um drive flash USB]] para instruções mais detalhadas. | Veja [[Install_from_a_USB_flash_drive|Instalar a partir de um drive flash USB]] para instruções mais detalhadas. | ||
− | Este método funciona para qualquer tipo de mídia flash a partir da qual o BIOS permite você | + | Este método funciona para qualquer tipo de mídia flash a partir da qual o BIOS permite a você realizar o boot, seja ele um leitor de cartão ou porta USB. |
{{Atenção|Esse procedimento irá destruir irremediavelmente todos os dados na mídia! Além disso, tenha muito cuidado quando você envia a imagem ISO, como <code>dd</code> irá obedientemente escrever em qualquer alvo que você apontar, mesmo que seja o seu disco rígido.}} | {{Atenção|Esse procedimento irá destruir irremediavelmente todos os dados na mídia! Além disso, tenha muito cuidado quando você envia a imagem ISO, como <code>dd</code> irá obedientemente escrever em qualquer alvo que você apontar, mesmo que seja o seu disco rígido.}} |
Revision as of 02:27, 14 June 2011
Contents
Preparar a Instalação
Obtendo a última mídia de Instalação
Você pode obter a mídia oficial de instalação do Arch aqui. A última versão é a 2010.05
- Ambas as imagens Core e Netinstall fornecem apenas os pacotes necessários para criar um sistema básico Arch Linux. Observe que o sistema básico não inclui uma interface gráfica. É composto, principalmente, das ferramentas GNU (compilador, assembler, linker, bibliotecas, shell e utilitários), o kernel do Linux, e uns poucos acréscimos de bibliotecas e módulos.
- Imagens Core facilitam tanto a instalação a partir do CD como pela rede.
- Imagens Netinstall são menores e não oferecem pacotes próprios; todo o sistema é recuperado através da Internet.
- O FAQ do Arch64 pode ajudar você a escolher entre as versões 32-, 64-bits e ambas.
- Lembre-se de baixar os arquivos txt de verificação (checksum) junto com a ISO escolhida.
Imagens de pré-lançamento também estão disponíveis e podem ser baixadas aqui. Não se trata de lançamentos oficiais e por isso não são oficialmente suportadas. Elas só devem ser utilizadas se as imagens de instalação oficial não funcionarem com o hardware atual do seu sistema e se você suspeitar de que as imagens mais recentes terão os drivers apropriados.
Verifique a Integridade dos Arquivos Transferidos
cd
para o diretório onde os arquivos baixados foram colocados, e invoque sha1sum
:
Template:Cli
Isso deve resultar em "OK". (Simplesmente ignore outras linhas.) Caso contrário, baixar todos os arquivos novamente.
A verificação md5sum funciona da mesma maneira.
Instalar Sobre a Rede
Em vez de gravar o disco de boot numa unidade USB ou disco, você poderá alternativamente inicializar a imagem .iso através da rede. Isso funciona bem quando você já tiver um servidor configurado. Por favor, veja este artigo para obter mais informações, e depois continue em Carregar o Instalador Arch Linux
CD de instalação
Grave o arquivo de imagem .iso num CD ou DVD com o seu software gravador de CD/DVD preferido, e continue em Carregar o Instalador Arch Linux
Dispositivo de memória flash ou pen-drive USB
Veja Instalar a partir de um drive flash USB para instruções mais detalhadas.
Este método funciona para qualquer tipo de mídia flash a partir da qual o BIOS permite a você realizar o boot, seja ele um leitor de cartão ou porta USB.
dd
irá obedientemente escrever em qualquer alvo que você apontar, mesmo que seja o seu disco rígido.Método *nix
Insira um dispositivo flash vazio ou expansível, determine o seu caminho, e grave o ISO para o dispositivo com o programa dd
:
onde if=</ code> é o caminho para o arquivo .iso e <code>of=</ code> é o seu dispositivo flash. Certifique-se de usar Template:Filename e não Template:Filename. Você vai precisar de um dispositivo de memória flash grande o suficiente para acomodar a imagem.
To verify that the image was successfully written to the flash device, make a note of the number of records (blocks) read in and written out, then perform the following check:
The md5sum returned should match the md5sum of the downloaded archlinux image file (2010.05); they both should match the md5sum of the image as listed in the md5sums file in the mirror distribution site. A typical run will look like this: Template:Command
Continue with Boot Arch Linux Installer
Microsoft Windows Method
Download Disk Imager from https://launchpad.net/win32-image-writer/+download. Insert flash media. Start the Disk Imager and select the image file (Disk Imager accepts only *.IMG files, so you'll have to put "*.iso" in file open dialog to select Arch snapshot). Select the drive letter associated with the flash drive. Click "write".
There are also other solutions to writing bootable ISO images to USB sticks. If you have problems with USB sticks disconnecting, try using different USB port and/or cable.
Continue with Boot Arch Linux Installer
Boot Arch Linux Installer
Boot from the Media
Insert the CD or Flash media you prepared, and boot from it. You may have to change the boot order in your computer BIOS or press a key (usually DEL, F1, F2, F11 or F12) during the BIOS POST (Power On Self-Test) phase.
Main Menu: The main menu should be displayed at this point. Select the preferred choice by using the arrow keys to highlight your choice, and then by pressing Enter. Menus vary slightly among the different ISOs.
OS System Start
The system will now load and present a login prompt. Login as 'root', without the quotes.
If using an Intel video chipset and the screen goes blank during the boot process, the problem is likely an issue with kernel mode setting. A possible workaround may be achieved by rebooting and pressing <Tab> at the GRUB menu to enter kernel options. At the end of the kernel line, add a space and then:
i915.modeset=0
Alternatively, add:
video=SVIDEO-1:d
which (if it works) will not disable kernel mode setting.
When done making any changes to any menu command, simply press "Enter" to boot with that setup.
See the Intel article for more information.
Changing the keymap
If you have a non-US keyboard layout you can interactively choose your keymap/console font with the command:
Template:Cli
or use the loadkeys command:
Template:Cli
where layout is your keyboard layout such as "<code>fr" or "be-latin1
"
Documentation
The official install guide is conveniently available right on the live system! To access it, change to tty2 (virtual console #2) with <ALT>+F2, log in as "root" and then invoke /usr/bin/less
by typing in the following at the # prompt:
Template:Cli
less
will allow you to page through the document.
Change back to tty1 with <ALT>+F1 to follow the rest of the install process. (Change back to tty2 at any time if you need to reference the Official Guide as you progress through the installation process.)