{"id":19840288,"url":"https://github.com/nocapscripts/arch-install-manual","last_synced_at":"2026-05-15T12:34:36.511Z","repository":{"id":253014896,"uuid":"842197671","full_name":"nocapscripts/arch-install-manual","owner":"nocapscripts","description":null,"archived":false,"fork":false,"pushed_at":"2024-08-13T22:09:37.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-15T06:19:04.167Z","etag":null,"topics":["arch-linux","awesomelinux","linux","linux-love"],"latest_commit_sha":null,"homepage":"","language":null,"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/nocapscripts.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-13T21:51:52.000Z","updated_at":"2024-08-13T22:10:25.000Z","dependencies_parsed_at":"2024-08-14T01:07:45.609Z","dependency_job_id":null,"html_url":"https://github.com/nocapscripts/arch-install-manual","commit_stats":null,"previous_names":["reduxscripts/arch-install-manual","nocapscripts/arch-install-manual"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nocapscripts/arch-install-manual","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nocapscripts%2Farch-install-manual","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nocapscripts%2Farch-install-manual/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nocapscripts%2Farch-install-manual/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nocapscripts%2Farch-install-manual/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nocapscripts","download_url":"https://codeload.github.com/nocapscripts/arch-install-manual/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nocapscripts%2Farch-install-manual/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33067399,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["arch-linux","awesomelinux","linux","linux-love"],"created_at":"2024-11-12T12:26:13.801Z","updated_at":"2026-05-15T12:34:36.494Z","avatar_url":"https://github.com/nocapscripts.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Steps in `fdisk` for `/dev/sdb`\n\n## 1. Create the Boot Partition (500 MB)\n\n1. Press `n` to create a new partition.\n2. Choose `p` for a primary partition.\n3. Enter `1` for the partition number.\n4. Press `Enter` to accept the default starting sector.\n5. Enter `+500M` for the size.\n6. Press `t` to change the partition type.\n7. Enter `83` for Linux filesystem (or `b` for W95 FAT32 if using BIOS boot).\n\n## 2. Create the EFI Partition (500 MB)\n\n1. Press `n` to create a new partition.\n2. Choose `p` for a primary partition.\n3. Enter `2` for the partition number.\n4. Press `Enter` to accept the default starting sector.\n5. Enter `+500M` for the size.\n6. Press `t` to change the partition type.\n7. Enter `ef` for EFI System.\n\n## 3. Create the Swap Partition (8 GB)\n\n1. Press `n` to create a new partition.\n2. Choose `p` for a primary partition.\n3. Enter `3` for the partition number.\n4. Press `Enter` to accept the default starting sector.\n5. Enter `+8G` for the size.\n6. Press `t` to change the partition type.\n7. Enter `82` for Linux swap.\n\n## 4. Create the Root Partition (remaining space)\n\n1. Press `n` to create a new partition.\n2. Choose `p` for a primary partition.\n3. Enter `4` for the partition number.\n4. Press `Enter` to accept the default starting sector.\n5. Press `Enter` again to use the remaining space.\n\n## 5. Write Changes and Exit\n\n1. Press `w` to write the changes and exit `fdisk`.\n\n\n# Formating partitions\n\n## Format the boot partition\n```\nmkfs.ext4 /dev/sdb1\n```\n\n## Format the EFI partition\n```\nmkfs.fat -F32 /dev/sdb2\n```\n\n## Format the root partition\n```\nmkfs.ext4 /dev/sdb4\n```\n\n## Initialize the swap partition\n```\nmkswap /dev/sdb3\n```\n\n# Mount these drives \n\n## Mount the root partition /mnt\n```\nmount /dev/sdb4 /mnt\n```\n\n## Create and mount the boot partition /boot\n```\nmkdir /mnt/boot\n```\n```\nmount /dev/sdb1 /mnt/boot\n```\n\n## Create and mount the EFI partition /efi\n```\nmkdir /mnt/boot/efi\n```\n```\nmount /dev/sdb2 /mnt/boot/efi\n```\n\n\n## Enable the swap partition\n```\nswapon /dev/sdb3\n```\n\n\n# Arch base install KDE\n\n\n```\npacstrap /mnt base linux linux-firmware\n```\n\n## Generate fstab \n\n```\ngenfstab -U /mnt \u003e\u003e /mnt/etc/fstab\n\n```\n\n## Arch chroot into /mnt \n\n\n```\narch-chroot /mnt\n```\n\n# Chroot tuning \n\n\n\n## Create user\n\n\n```\nuseradd -m -G wheel -s /bin/bash yourname\n\n```\n\n## Passwd the user \n\n```\npasswd newusername\n```\n\n\n## Edit visudo envs \n\n```\nvisudo\n```\n\nand enable or copy\n\n```\n%wheel ALL=(ALL) ALL\n```\n\n\n## Install plain clean plasma env\n\n```\npacman -S plasma-desktop sddm vim nano networkmanager git github-cli ufw\n```\n\n\n## Create grub files \n\n\n```\npacman -S grub efibootmgr\n```\n\n```\ngrub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=grub\n```\n\n```\ngrub-mkconfig -o /boot/grub/grub.cfg\n```\n\n# Last part \n\n```\nexit\n```\n\n```\nreboot\n```\n\n# It should start with grub if not then shady boy you can try again these steps because linux is awesome \u003c3\n\n\n\n\n\n\n\n\n\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnocapscripts%2Farch-install-manual","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnocapscripts%2Farch-install-manual","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnocapscripts%2Farch-install-manual/lists"}