domingo, 27 de octubre de 2024

Instalación manual de Arch Linux

Instalación manual de Arch Linux
===========================
Establecer una distribución de teclado español
# loadkeys es
Establecer una distribución de teclado español latinoamericano
# loadkeys la-latin1
# timedatectl set-timezone America/Lima

Conectarse a internet por red Wifi
# iwctl
    [iwd]# device list
    [iwd]# station DEVICE scan
    [iwd]# station DEVICE get-networks
    [iwd]# station DEVICE connect [SSID]
    [iwd]# exit

# timedatectl set-ntp true
Verificar la fecha y hora actual
# date

Particionar el Disco
# fdisk -l
(elegimos el disco de 80GB)
# fdisk /dev/sdX
Command (m for help): g
Command (m for help): n
Partition number(1-128): 1
First Sector: Enter
Last Sector: +512M
Command (m for help): t
Partition type or alias(m for help): uefi
Command (m for help): n
Partition number(2-128): 2
First Sector: Enter
Last Sector: +60G
Command (m for help): n
Partition number (3-128): 3
First Sector: Enter
Last Sector: Enter(Todo espacio disponible)
Command (m for help): w

Formatear las particiones
# fdisk -l
# mkfs.vfat /dev/sda1
# mkfs.ext4 /dev/sda2
# mkfs.ext4 /dev/sda3
# lsblk -f

Montar las particiones
# mkdir -p /mnt/boot
# mkdir -p /mnt/datos
# mount /dev/sda1   /mnt/boot
# mount /dev/sda2   /mnt
# mount /dev/sda3   /mnt/datos
# df -h

Instalación de paquetes básicos
# pacstrap /mnt base linux linux-firmware linux-headers vim grub networkmanager sudo efibootmgr plasma dolphin konsole spectacle

Configuración del sistema
Generar un archivo fstab con las configuraciones de montaje de las particiones del sistema
# genfstab -U /mnt   >>  /mnt/etc/fstab
# cat /mnt/etc/fstab

Cambiar el entorno raíz al sistema montado en /mnt
# arch-chroot /mnt

Habilitar el servicio NetworkManager
# systemctl enable NetworkManager

Habilitar el servicio de Bluetooth
# systemctl enable bluetooth

Habilitar el gestor de inicio de sesión sddm
# systemctl enable sddm

Crear un usuario y agregarlo al grupo wheel
# useradd -m -G wheel juan
# passwd juan
# visudo  (descomentar la linea del #wheel)

Configurar la zona horaria
# ln -sf /usr/share/zoneinfo/America/Lima  /etc/localtime
# hwclock --systohc

Configuración de teclado
# echo "KEYMAP=la-latin1" > /etc/vconsole.conf

Configurar Idioma del sistema
# vim /etc/locale.gen  (descomentar #es_PE.UTF-8 UTF-8)
# locale-gen

Configurar nombre de equipo (archlinux)
# vim /etc/hostname  (ponemos el nombre del equipo o hostname)

Configuracion del gestor de arranque grub
# grub-install --target=x86_64-efi   --efi-directory=/boot   --bootloader-id=GRUB
# grub-mkconfig -o /boot/grub/grub.cfg
# exit
# reboot

Una vez arranque kde plasma
Establecer la resolución de pantalla settings -> display
Cambiar la distribución de teclado settings -> keyboard














No hay comentarios:

Publicar un comentario

Instalación y Configuración de un DNS Público en Debian 12

Configuración de un DNS Público en Debian 12 ===================================== Registrar un dominio público en Goddady, Namecheap  ó pun...