Instalar Arch

Páginas: 3 (708 palabras) Publicado: 18 de marzo de 2015
less install.txt
Salen de leer con q

1.Investigamos la distribución de nuestro teclado y lo activamos

loadkeys la-latin1

2.Formateamos el Disco
* para el root:
mkfs -t ext4 /dev/sda2*para la swap de /dev/sda4:
mkswap /dev/sda4

Activamos swap

swapon /dev/sda4

3.Motamos las particiones

Primero la de root en su corespondiente particion
mount /dev/sda2 /mnt

*Creamos y luegomontamos la carpeta del /home dentro de la particion /root
mkdir /mnt/home
mount /dev/sda3 /mnt/home

4.Acceder a Internet
dhclient eth0

5.Instalar paquetes basicos
pacstrap /mnt basebase-devel

* las herramientas de red (ping,iwconfig,ifconifig,iwlist,etc)

pacstrap /mnt wireless_tools netcfg

6. Install Grub2

First remove Grub 0.97 package:

# chroot /mnt pacman -R grub

y luego:

#cp /etc/resolv.conf /mnt/etc/resolv.conf

a) If you run into network issues in the pacman update step below, you may have needed to install the net-tools package.
b) Check and see if the dm_modmodule is loaded. If it is not, load it manually (you might need grub2-bios):

# lsmod | grep dm_mod
# modprobe dm-mod

c) From the installer's live shell, chroot to the installed system:

#mount -o bind /dev /mnt/dev
# mount -t proc /proc /mnt/proc/
# mount -t sysfs /sys /mnt/sys/
# chroot /mnt bash

d) Update pacman's database:

# pacman-db-upgrade

e) Refresh the package list (withan extra -y flag to force a refresh of all package lists even if they appear to be up to date):

# pacman -Syy

# pacman -S grub2-bios
# modprobe dm-mod

grub-install--directory=/usr/lib/grub/i386-pc --target=i386-pc --boot-directory=/boot --recheck --debug /dev/sda


Tal vez haya que hacer:
grub-mkconfig -o /boot/grub/grub.cfg

y para crear el disco RAM inicial con:

mkinitcpio -p linuxSalimos con exit.

7.Generar un archivo fstab
genfstab -p /mnt >> /mnt/etc/fstab

8.Accedemos a la particion como chroot para configurar

arch-chroot /mnt


Establecemos nuestro hostname:
nano...
Leer documento completo

Regístrate para leer el documento completo.

Estos documentos también te pueden resultar útiles

  • Arch
  • Arch
  • Arch
  • Google Arch
  • Arch interesante
  • Arch Enemy
  • Fisiopatologia ARCH
  • Arch enemy

Conviértase en miembro formal de Buenas Tareas

INSCRÍBETE - ES GRATIS