Last active
November 15, 2023 18:46
-
-
Save MakuSensei/f2c47afea2ea298bc8aaf80f3348b32b to your computer and use it in GitHub Desktop.
Guia de instalacion de ArchLinux By MakuSensei
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Guia de instalacion de ArchLinux | |
By MakuSensei | |
Descargar iso https://www.archlinux.org/download/ | |
Configurar teclado en Español | |
loadkeys la-latin1 | |
Creando particiones | |
usar: cfdisk | |
Formatear particiones | |
Raíz: mkfs -t ext4 /dev/sdaX | |
Swap: swapon /dev/sdaX | |
Montar: mount /dev/sdaX /mnt | |
Conectar wifi: wifi-menu | |
Configurar repos con Rankmirrors (Opcional) | |
cd /etc/pacman.d | |
cp mirrorlist mirrorlist.backup | |
sed '/^#\S/ s|#||' -i mirrorlist.backup | |
rankmirrors -n 6 mirrorlist.backup > mirrorlist | |
Instalación: | |
pacstrap /mnt base base-devel | |
pacstrap /mnt netctl wpa_supplicant dialog | |
pacstrap /mnt grub-bios | |
pacstrap /mnt networkmanager | |
pacstrap /mnt xf86-input-synaptics | |
gestor de arranque GRUB | |
pacstrap /mnt grub-bios os-prober ntfs-3g | |
Configurando el Sistema | |
genfstab -p /mnt >> /mnt/etc/fstab | |
arch-chroot /mnt | |
Configurar localhost: nano /etc/hostname | |
Configurar Zona/Región | |
(Buscar la configuración correcta para tu Región) | |
Argentina: ln -sf /usr/share/zoneinfo/America/Buenos_Aires /etc/localtime | |
Configurar Localización | |
(Buscar la configuración correcta para tu localización) | |
nano /etc/locale.conf y agregar LANG=es_AR.UTF-8 | |
nano /etc/locale.gen y descomentar es_AR.UTF-8 UTF-8 y es_AR ISO-8859-1 | |
Generar localización con: locale-gen | |
Distribución del teclado: nano /etc/vconsole.conf “Agregar: KEYMAP=la-latin1” | |
Instalar y configurar grub | |
grub-install /dev/sda | |
grub-mkconfig -o /boot/grub/grub.cfg | |
mkinitcpio -p linux | |
Poner clave a la cuenta root y crear nuevo usuario | |
passwd (para el root) | |
Crear usuario (Dependiendo de las necesidades elegir una de las opciones) | |
Opción 1: useradd -m -g users -G audio,lp,optical,storage,video,wheel,games,power,scanner -s /bin/bash USUARIO | |
Opcion 2: useradd -m -g users -G wheel -s /bin/bash USUARIO | |
passwd USUARIO (para el usuario) | |
Privilegios Sudo al usuario | |
nano /etc/sudoers | |
“User privilege specification” | |
(en esta línea agregar debajo de root nuestro usuario) | |
root ALL=(ALL) ALL | |
USUARIO ALL=(ALL) ALL | |
Desmontar particiones y reiniciar | |
umount /mnt/ | |
reboot | |
Instalar Xorg, Drivers de video, Soporte 3D | |
sudo pacman -S xorg-server xorg-xinit mesa mesa-demos | |
Drivers de video: instalar el que corresponda | |
Intel: sudo pacman -S xf86-video-intel | |
Nvidia | |
Drivers propietarios: sudo pacman -S nvidia nvidia-utils | |
Drivers de código abierto: sudo pacman -S xf86-video-nouveau | |
ATI: sudo pacman -S xf86-video-ati | |
Lista completa de drivers de vídeo de código abierto: sudo pacman -Ss xf86-video | |
Video Genérico: sudo pacman -S xf86-video-vesa | |
Instalación del escritorio | |
Gnome: Sudo pacman -S gnome gnome-extra gnome-shell gdm network-manager-applet | |
Habilitar servicios Systemd | |
GDM: sudo systemctl enable gdm.service | |
NetworkManager: systemctl enable NetworkManager | |
Kde Plasma: pacman -S kf5 plasma-desktop sddm | |
Habilitar servicios Systemd | |
SDDM: sudo systemctl enable sddm | |
NetworkManager: systemctl enable NetworkManager | |
Post instalación | |
instalar los paquetes para usar AUR | |
Descargar y compilar | |
https://aur.archlinux.org/packages/package-query/ | |
https://aur.archlinux.org/packages/yaourt/ | |
Compilar con Makepkg -s | |
Instalar con pacman -U |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment