30
ARCH LINUX MEMBBERS: CASTRO, PATRICK PAUL DE GUZMAN, REAN PAOLO LAPORGA, MARTIN PAOLO SORIANO, ZANDO

Arch linux

Embed Size (px)

Citation preview

Page 1: Arch linux

ARCH LINUXMEMBBERS:CASTRO, PATRICK PAULDE GUZMAN, REAN PAOLOLAPORGA, MARTIN PAOLOSORIANO, ZANDO

Page 2: Arch linux
Page 3: Arch linux
Page 4: Arch linux
Page 5: Arch linux
Page 6: Arch linux

PRE-INSTALLATION REQUIREMENTS

• Partition disks• Format the partitions• Mount the partitions• Connect to the Internet

Page 7: Arch linux

PARTITIONING THE DISK

• Download and burn any partitioning tool on a CD.• Insert the CD into your Optical drive and boot from the CD.

Page 8: Arch linux
Page 9: Arch linux

PARTITIONING THE DISK

• Download and burn any partitioning tool on a CD.• Insert the CD into your Optical drive and boot from the CD.• Create a partition table.

Page 10: Arch linux
Page 11: Arch linux

PARTITIONING THE DISK

• Download and burn any partitioning tool on a CD.• Insert the CD into your Optical drive and boot from the CD.• Create a partition table.• Create a extended partition.

Page 12: Arch linux

PARTITIONING THE DISK

• Download and burn any partitioning tool on a CD.• Insert the CD into your Optical drive and boot from the CD.• Create a partition table.• Create a extended partition.• On the extended partition create swap, root, and home

partitions.

Page 13: Arch linux
Page 14: Arch linux
Page 15: Arch linux
Page 16: Arch linux
Page 17: Arch linux
Page 18: Arch linux

INSTALLING ARCH LINUX

• Download Arch Linux .iso file and burn it on a CD or USB drive.• Insert your Arch Linux CD or USB into your Optical Drive.

Page 19: Arch linux
Page 20: Arch linux

INSTALLING ARCH LINUX

• Download Arch Linux .iso file and burn it on a CD or USB drive.• Insert your Arch Linux CD or USB into your Optical Drive.• Choose the appropriate option for your system, if your

running 32-bit choose x86, if your running 64-bit choose x64.

Page 21: Arch linux

INSTALLING ARCH LINUX

• Download Arch Linux .iso file and burn it on a CD or USB drive.• Insert your Arch Linux CD or USB drive.• Choose the appropriate option for your system, if your

running 32-bit choose x86, if your running 64-bit choose x64.

Page 22: Arch linux
Page 23: Arch linux

INSTALLING ARCH LINUX

• Download Arch Linux .iso file and burn it on a CD or USB drive.• Insert your Arch Linux CD or USB drive.• Choose the appropriate option for your system, if your

running 32-bit choose x86, if your running 64-bit choose x64.• Mount the root and home partitions using the command, mount /name of the partition /where you want to be mounted.

Page 24: Arch linux
Page 25: Arch linux
Page 26: Arch linux

INSTALLING ARCH LINUX• Download Arch Linux .iso file and burn it on a CD or USB

drive.• Insert your Arch Linux CD or USB drive.• Choose the appropriate option for your system, if your

running 32-bit choose x86, if your running 64-bit choose x64.• Mount the root and home partitions using the command, mount /name of the partition /where you want to be mounted.

• Install the base packages using the command, pacstrap /mnt base base-devel

Page 27: Arch linux
Page 28: Arch linux

INSTALLING ARCH LINUX

• After the base package is already installed, you just have to do some configurations in the system. These are:• Generate an fstab file, this defines how disk partitions,

various other block devices, or remote file systems should be mounted into the file system. The command for this is # genfstab -p /mnt >> /mnt/etc/fstab.

• Change root into the new system using the command # arch-chroot /mnt.

Page 29: Arch linux

INSTALLING ARCH LINUX

• Set the hostname using the command # echo computer_name > /etc/hostname.

• Set the time zone using the command # ln -sf /usr/share/zoneinfo/zone/subzone /etc/localtime.

• Uncomment the needed locales in /etc/locale.gen, then generate them with the command # locale-gen.

Page 30: Arch linux

INSTALLING ARCH LINUX

• Set locale preferences in /etc/locale.conf and possibly $HOME/.config/locale.conf using the command # echo LANG=your_locale > /etc/locale.conf.

• Configure /etc/mkinitcpio.conf if additional features are needed using the command # mkinitcpio -p linux.• And lastly you can set the root password using the command # passwd.