Created
December 16, 2025 01:46
-
-
Save 0x00000FF/3b4f04479b94d5338c67bc536236617f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # for me | |
| # partitioning | |
| # EFI = 512MB / Swap (if 8gb or less) RAM * 2 / Ramining for root | |
| # EFI fat32, label "ESP" | |
| # Swap is Swap | |
| # root btrfs | |
| # packages | |
| pacstrap /mnt base base-devel linux linux-firmware zsh git vim sddm plasma-desktop konsole dolphin kate firefox chromium pulseaudio alsa-utils plasma-pa wget networkmanager plasma-nm refind | |
| arch-chroot | |
| # after arch-chroot | |
| systemctl enable sddm NetworkManager pulseaudio | |
| echo "patche-arch" > /etc/hostname | |
| echo "en_US.UTF-8\nko-KR.UTF-8\nko-KR.EUC-KR\nja-JP.UTF-8" > locale.gen | |
| locale-gen | |
| ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime | |
| hwclock --systohc | |
| useradd -m $1 -s /usr/bin/zsh | |
| usermod -aG sudo $1 | |
| chpasswd "$1:$2" --crypt-method SHA256 --sha-rounds 300000 | |
| mkinitcpio -P | |
| # bootloader | |
| refind-install --use-default /dev/disk/by-label/ESP |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment