1---
2title: Arch Spin pt. 2 — Initial setup
3subtitle: First steps to rolling your own spin
4author: Amolith
5description: Setting up the basics for build your own Arch-based spin with archiso, the official development tool
6cover: /assets/spin/arch-spin/pt-2.png
7date: 2018-08-17T14:11:07-04:00
8categories:
9 - Technology
10Tags:
11 - Arch Linux
12 - Arch Spin
13---
14
15 *I **think** I'm going to call it a spin . . .*
16* Install the package `archiso` from the official repos or `archiso-git`
17 from the AUR
18* `$ mkdir ~/<build-directory>`
19 * Replace `<build-directory>` with wherever you want the iso build
20 to be stored. This is where we'll be spending all of our time
21 configuring. Mine is at `~/liveiso/` and that's the path I'll be
22 using in this and future posts
23* `$ sudo cp -r /usr/share/archiso/configs/releng/ ~/liveiso`
24* Edit `~/liveiso/packages.x86_64` to install desired software
25 * This will be addressed in the next post, `packages.x86_64`, where
26 I also give some quick ways to install everything you might want.