Download Aperio GNU/Linux
Download — 760M.Pre-installed packages.
- linux-image-amd64
- live-boot
- systemd-sysv
- firmware-brcm80211
- firmware-intelwimax
- firmware-iwlwifi
- firmware-libertas
- firmware-misc-nonfree
- firmware-realtek
- firmware-ti-connectivity
- fdisk
- locales
- dialog
- lsb-release
- squashfs-tools
- nano
- grub2
- wpasupplicant
- inetutils-ping
- isc-dhcp-common
- isc-dhcp-client
- curl
- git
- wget
- openssh-client
- openssh-server
Installation Instructions
- Enter Aperio GNU/Linux with the credentials
root:aperio
. -
Configure disks. — I recommend you using MBR instead of GPT — My current configuration is:
/dev/sda1 — primary — bootable — almost full disk size — type: Linux.
/dev/sda2 — extended — the rest of the disk size — type: Extended.
/dev/sda5 — type: Swap.
mkfs.ext4 /dev/sda1.
mkswap /dev/sda5.
- Mount root disk to
/mnt
. - Run
apinstall /mnt
. - Inside Aperio
chroot
, runapchroot
. - Configure locales and other personal stuff.
- Add an user.
- Add the user to the video, audio and input groups:
usermod -a -G audio,video,input $USER
- Set a password for the user:
passwd $USER
- Set a password for the root user:
passwd root
- Setup GRUB:
grub-install /dev/sda --root-directory=/
update-grub
- Exit Aperio
chroot
. - Unmount everything:
umount /mnt/*
umount /dev/sda1
- Reboot
- Done!
Converting GPT to MBR.
- Connect Aperio GNU/Linux to the internet.
- Install
gdisk
:
# apt install gdisk
. - Run
gdisk
with the disk you will install Aperio on:
# gdisk /dev/sda
. - Inside
gdisk
, typer
to enter the recovery and transformation options. - Then, type
g
to convert GPT into MBR and exit. p
to print the MBR partition table.- And finally, type
w
to write the changes.