{"id":15007281,"url":"https://github.com/antergos/antergos-iso","last_synced_at":"2025-10-03T14:31:43.457Z","repository":{"id":6601263,"uuid":"7844404","full_name":"Antergos/antergos-iso","owner":"Antergos","description":"Scripts based on archiso to create the Antergos ISO","archived":true,"fork":false,"pushed_at":"2019-04-04T02:36:25.000Z","size":35876,"stargazers_count":75,"open_issues_count":39,"forks_count":41,"subscribers_count":19,"default_branch":"master","last_synced_at":"2024-09-29T15:04:14.775Z","etag":null,"topics":["antergos-iso","archiso","install-media","isolinux","linux-distribution","syslinux"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Antergos.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-01-26T22:07:27.000Z","updated_at":"2023-06-11T19:21:55.000Z","dependencies_parsed_at":"2022-08-31T03:31:35.622Z","dependency_job_id":null,"html_url":"https://github.com/Antergos/antergos-iso","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Antergos%2Fantergos-iso","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Antergos%2Fantergos-iso/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Antergos%2Fantergos-iso/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Antergos%2Fantergos-iso/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Antergos","download_url":"https://codeload.github.com/Antergos/antergos-iso/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235146477,"owners_count":18943264,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["antergos-iso","archiso","install-media","isolinux","linux-distribution","syslinux"],"created_at":"2024-09-24T19:07:40.988Z","updated_at":"2025-10-03T14:31:37.188Z","avatar_url":"https://github.com/Antergos.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Antergos ISO (antiso)\nModified version of archiso to build the Antergos ISO (livecd)\n\n## Dependencies\n- antergos-gfxboot for a graphical boot (or isolinux/syslinux)\n- arch-install-scripts\n- cpio\n- dosfstools\n- gfxboot\n- libisoburn\n- mkinitcpio-nfs-utils\n- make\n- opendesktop-fonts\n- patch\n- squashfs-tools\n- wget\n\n## Free space\n\nPlease, check that you have 5GB (or more) of free harddisk space in your root partition:\n`df -h /`\n\n## Instructions (without docker)\n\n1. Install dependencies:\n```\nsudo pacman -S arch-install-scripts cpio dosfstools gfxboot libisoburn mkinitcpio-nfs-utils make patch squashfs-tools wget\n```\n2. Clone this repository using `--recursive` like this:\n```\ngit clone https://github.com/antergos/antergos-iso.git --recursive\n```\n3. Enter into antergos-iso folder and change to the testing branch:\n```\ncd antergos-iso\ngit checkout testing\n```\n\n4. Install our modified mkarchiso and configurations by running:\n```\nsudo make install\n```\n\n5. While inside the `antergos-iso` folder, clone antergos-gfxboot and use antergos-gfxboot `colors` branch :\n```\ngit clone https://github.com/antergos/antergos-gfxboot\ngit checkout colors\n```\n\n6. Create `/work` and `/out` destination folders:\n```\nsudo mkdir /work\nsudo mkdir /out\n```\n\nThe `/work` folder will store the livecd filesystem while the `/out` folder will store your new ISO file.\n\n7. Go to the `config` directory you wish to build from.\n- The \"official\" iso is in the `antergos` folder.\n```\ncd /home/user/antergos-iso/configs/antergos\n```\n\n8. Check text configuration file `config` with your favourite text editor.\n\n9. Build the iso:\n```\nsudo ./build.sh build\n```\n\n **If you want to try to build the iso again, please remember to clean all generated files first:** \n ```\n sudo ./build.sh clean\n ```\n\n## Instructions (with Docker)\n\n#### Install docker and setup your user\n1. Install docker if you don't have it installed yet: \n```\nsudo pacman -S docker\n```\n2. Add your user to the docker group (change USER for your username):\n```\nsudo usermod -aG docker USER\n```\n\n#### Setup docker images and container\n1. Clone this repository :\n```\ngit clone https://github.com/antergos/antergos-iso.git\n```\n2. Enter into `antergos-iso` folder and change to the `testing` branch:\n```\ncd antergos-iso\ngit checkout testing\n```\n3. Go into `docker` folder:\n```\ncd docker\n```\n4. Create `antergos-base` and `antergos-iso` docker images: \n```\nsudo ./build-docker-images\n```\n5. Run a container based on the `antergos-iso` image:\n```\ndocker run -it --mount source=outvol,target=/out --mount source=workvol,target=/work --name antergos-iso-build antergos-iso\n```\n\n#### Once inside the container, create the iso image\n1. Go to `/antergos-iso` folder :\n```\ncd /antergos-iso\n```\n2. Go to the `config` directory you wish to build from.\n- The \"official\" iso is in the `antergos` folder.\n```\ncd /home/user/antergos-iso/configs/antergos\n```\n3. Check text configuration file `config` with your favourite text editor\n4. Build the iso: \n```\nsudo ./build.sh build\n```\n\n**If you want to try to build the iso again, please remember to clean all generated files first:** \n ```\n sudo ./build.sh clean\n ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantergos%2Fantergos-iso","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fantergos%2Fantergos-iso","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantergos%2Fantergos-iso/lists"}