Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      Sunshine And March Vibes (2025 Wallpapers Edition)

      June 1, 2025

      The Case For Minimal WordPress Setups: A Contrarian View On Theme Frameworks

      June 1, 2025

      How To Fix Largest Contentful Paint Issues With Subpart Analysis

      June 1, 2025

      How To Prevent WordPress SQL Injection Attacks

      June 1, 2025

      7 MagSafe accessories that I recommend every iPhone user should have

      June 1, 2025

      I replaced my Kindle with an iPad Mini as my ebook reader – 8 reasons why I don’t regret it

      June 1, 2025

      Windows 11 version 25H2: Everything you need to know about Microsoft’s next OS release

      May 31, 2025

      Elden Ring Nightreign already has a duos Seamless Co-op mod from the creator of the beloved original, and it’ll be “expanded on in the future”

      May 31, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      Student Record Android App using SQLite

      June 1, 2025
      Recent

      Student Record Android App using SQLite

      June 1, 2025

      When Array uses less memory than Uint8Array (in V8)

      June 1, 2025

      Laravel 12 Starter Kits: Definite Guide Which to Choose

      June 1, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      Photobooth is photobooth software for the Raspberry Pi and PC

      June 1, 2025
      Recent

      Photobooth is photobooth software for the Raspberry Pi and PC

      June 1, 2025

      Le notizie minori del mondo GNU/Linux e dintorni della settimana nr 22/2025

      June 1, 2025

      Rilasciata PorteuX 2.1: Novità e Approfondimenti sulla Distribuzione GNU/Linux Portatile Basata su Slackware

      June 1, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»Operating Systems»Linux»Installing Arch Linux with BTRFS and Disk Encryption

    Installing Arch Linux with BTRFS and Disk Encryption

    February 7, 2025

    Installing Arch Linux with BTRFS and Disk Encryption

    On our Arch installation video, a viewer requested a tutorial on installing Arch but with BTRFS and with encryption enabled.

    And hence this tutorial came into existence.

    I am using the official archinstall script. Though a command line tool, this guided installer allows even a moderate system user to enjoy the “greatness” of Arch Linux.

    🚧
    The method discussed here wipes out the existing operating system(s) from your computer and installs Arch Linux on it. So if you are going to follow this tutorial, make sure that you have backed up your files externally, or else you’ll lose all of them. You have been warned!

    Requirements

    Here’s what I recommend for this tutorial:

    • An x86_64 (i.e. 64 bit) compatible machine
    • Minimum 2 GB of RAM (recommended 4-8 GB, depending upon the desktop environment or window manager you choose)
    • At least 10 GB of free disk space (recommended 20 GB for basic usage with a desktop environment)
    • An active internet connection
    • A USB drive with a minimum 4 GB of storage capacity
    • Familiarity with the Linux command line

    Once you have made sure you have all the requirements, let’s install Arch Linux.

    Step 1: Download the Arch Linux ISO

    Download the ISO from the official website. Both direct download and torrent links are available.

    Download Arch Linux

    Step 2: Create a live USB of Arch Linux

    You will have to create a live USB of Arch Linux from the ISO you just downloaded.

    You may use the Etcher GUI tool to create the live USB. It is available for both Windows and Linux.

    Installing Arch Linux with BTRFS and Disk Encryption
    Etcher Live USB creation

    Alternatively, if you are on Linux, you can use the dd command to create a live USB. Replace /path/to/archlinux.iso with the path where you have downloaded the ISO file, and /dev/sdx with your USB drive in the example below. You can get your drive information using lsblk command.

    dd bs=4M if=/path/to/archlinux.iso of=/dev/sdx status=progress && sync
    

    Basically, choose any live USB creation tool you like.

    Step 3: Boot from the live USB

    🚧
    Do note that in some cases, you may not be able to boot from live USB with secure boot enabled. If that’s the case with you, disable secure boot first.

    Once you have created a live USB for Arch Linux, shut down your PC. Plug in your USB and boot your system. While booting, keep pressing F2, F10 or F12 key (depending upon your system) to access UEFI boot settings.

    Here, select to boot from USB or removable disk. Once you do that and the system boots, you should see an option like this:

    Installing Arch Linux with BTRFS and Disk Encryption
    UEFI Boot Screen

    Select Arch Linux UEFI (x86_64) option to start the live medium.

    📋
    Legacy BIOS users should select the x86_64 BIOS option.

    Step 4: Connect to Wi-Fi

    You need an active internet connection for installing Arch Linux.

    If you have wired connection, good. Else, you need to make some effort to connect to your Wi-Fi before starting the archinstall script.

    First, in the Arch Linux live prompt, enter the command:

    iwctl
    

    This Internet Wireless daemon control is used to enrol Wi-Fi connection to your system. As soon as you enter the command, you can see that the prompt has changed to iwd.

    Here, you need to list devices to get the name of your wireless hardware device.

    Installing Arch Linux with BTRFS and Disk Encryption
    List network devices

    In the above screenshot, you can see the name of my Wi-Fi device is wlan0.

    Now, use this device to scan available Wi-Fi connections in the vicinity.

    station wlan0 scan
    station wlan0 get-networks
    
    Installing Arch Linux with BTRFS and Disk Encryption
    Connect to a Wi-Fi

    This will print the name of the Wi-Fi services available. Note the “Network Name”.

    To connect to the network, use the command:

    station wlan0 connect "Network Name"
    

    This will ask you to enter the Wi-Fi password. Enter it and you should be now connected to internet.

    Exit the iwd prompt using CTRL+D.

    You can check if the network is functioning using the ping command:

    ping google.com
    
    Installing Arch Linux with BTRFS and Disk Encryption
    Ping Google

    Step 5: Pacman download settings

    Before starting the archinstall script, let’s change the download limit of pacman.

    Edit the pacman configuration using:

    nano /etc/pacman.conf
    

    Here, uncomment the parellelDownload option and set a value according to your internet speed.

    If you have a decent internet speed, set the parallel download count to 10.

    📋
    On my test system, I needed to run pacman -Sy and then pacman -S archlinux-keyring (install Arch Linux keyrings) before starting the installer. Otherwise, the installer crashed with some errors.
    You may also need to read carefully what the prompt error says.

    Step 6: Start Archinstall script

    With the network connection ready, let’s start the archinstall script with the command below:

    archinstall
    

    This will start the text-based arch installation script.

    Installing Arch Linux with BTRFS and Disk Encryption
    Archinstall script

    Set the installation language

    The first setting in the installer is the installation language. This option sets what language is used in the Terminal User Interface.

    The latest archinstall provides a percentage value corresponding to each language, that describes how much translation has been completed.

    Installing Arch Linux with BTRFS and Disk Encryption
    Installation language

    I will be going with the default English.

    Locale Settings

    You should set your locale and keyboard settings. Here, if you are OK with the defaults, you can skip to the next setting.

    💡
    Some programs like Rofi launcher may not launch if your locale is different from en_US. So, adding en_US as a locale is a good thing to avoid future headaches.
    Installing Arch Linux with BTRFS and Disk Encryption
    Set keyboard and locale settings

    To change a setting, press the enter key to go inside and select individual items.

    Installing Arch Linux with BTRFS and Disk Encryption
    Inside locale settings

    Mirror settings

    Press the enter key on the Mirrors in the main menu of archinstall script. This will bring you to the mirror selection section.

    Enter the Mirror Region.

    Installing Arch Linux with BTRFS and Disk Encryption
    Select the Mirror Region option.

    This will provide a list of countries. You can select a country near your location for a faster network.

    Installing Arch Linux with BTRFS and Disk Encryption
    Mirror Countries (Click to expand the image)
    💡
    Use the “/” key to start a search. TAB key to select/mark an entry. Once multiple entries are marked, use the ENTER key to set those countries as mirrors.

    The mirrors from selected countries will be listed. Move to “Back” and click enter.

    Installing Arch Linux with BTRFS and Disk Encryption
    Country-wise mirror list

    Disk Configuration

    Now, you need to partition your disk. The archinstall has a neat mechanism to help you here.

    On the main menu, select “Disk Partition”. Inside this, select “Partitioning”.

    Installing Arch Linux with BTRFS and Disk Encryption
    Select Partitioning option

    Here, use the option “Use a best-effort default partition layout”.

    Installing Arch Linux with BTRFS and Disk Encryption
    Best-effort partitioning

    In the next dialog, use the TAB key to select your hard disk device and press the ENTER key.

    Installing Arch Linux with BTRFS and Disk Encryption
    Select Disk

    Choose a partition type. Here, I am going with BTRFS partition. You can pick EXT4, a very well-tested file system, or XFS, f2fs etc.

    Installing Arch Linux with BTRFS and Disk Encryption
    Select BTRFS File System

    On the next screen, you will be asked to use a default subvolume structure or not.

    Let’s say you select “Yes”.

    Installing Arch Linux with BTRFS and Disk Encryption
    Create Subvolumes True

    You will be asked to pick compression or disable copy-on-write. It is advised to select Compression, to enable a Zstd compression.

    Installing Arch Linux with BTRFS and Disk Encryption
    Use Compression option

    This will create a partition for you, with subvolumes for /, /home, /var/log, /var/cache/pacman/pkg, and /.snapshots.

    Hostinger
    Installing Arch Linux with BTRFS and Disk Encryption
    Subvolume listing (Click to expand the image)
    📋
    Subvolumes are beneficial for users who want a granular control and use features like snapshots extensively.

    If you are using a simple system, and not going to use such features, you can choose to avoid the subvolumes.

    For this, pick “No” for BTRFS default subvolumes.

    Installing Arch Linux with BTRFS and Disk Encryption
    Subvolume choice

    On the next screen, you should select “Use Compression” option.

    Thus, you will get a simple partition for the system.

    Installing Arch Linux with BTRFS and Disk Encryption
    Simple no-subvolume partition.

    Use the “Back” button to go to the installer main menu.

    Disk Encryption

    🚧
    Disk encryption may introduce slight performance delay to the system. If your system is a casual home PC or an alternative system with no critical data, you can ignore the encryption.

    Select the Disk Encryption option from the main menu. On the dialog box, select Encryption type and pick LUKS.

    This will enable two other fields; Encryption password and Partition.

    Fill the fields. Select the partitions that need to be encrypted using the TAB key.

    Installing Arch Linux with BTRFS and Disk Encryption
    Encryption overview (Click to expand the image)
    🚧
    Do not forget the encryption password. If you do, you’ll lose access to the data on disk and formatting the entire operating system will be the only option for you.

    Swap

    Swap on zram is enabled by default in the installer. If needed, you can disable it.

    Bootloader

    By default, it is set to systemd-boot. This is a simple bootloader for those who expect simplicity.

    If you require familar functionality, go for GRUB bootloader.

    Installing Arch Linux with BTRFS and Disk Encryption
    Select Grub Bootloader

    Hostname

    You can configure hostname here. By default, it is archlinux.

    Root password

    Next is Root password. Select it using enter key. Then enter and confirm a strong root password.

    Installing Arch Linux with BTRFS and Disk Encryption
    Root Password Setting

    User creation

    It is important to create a regular user account other than root account. This is for day-to-day purposes.

    On User section, select “Add a user” option.

    Installing Arch Linux with BTRFS and Disk Encryption
    Click on “Add a user”

    Here, enter the username.

    Installing Arch Linux with BTRFS and Disk Encryption
    Enter username

    Now, enter a password.

    Installing Arch Linux with BTRFS and Disk Encryption
    Password for user

    Confirm it by entering again when prompted. You will be asked whether the user a superuser or not.

    Make the created user superuser (administrative privileges) by selecting the “Yes” option.

    Installing Arch Linux with BTRFS and Disk Encryption
    Admin privileges to regular user

    Now, use the “Confirm and exit” option.

    Installing Arch Linux with BTRFS and Disk Encryption
    Exit user creation

    Profile (Desktop selection)

    The “Profile” field in the installer is where we will set desktop environments.

    Select Profile → Type. Here, select the Desktop option.

    Installing Arch Linux with BTRFS and Disk Encryption
    Select Desktop Option

    On the next screen, select a desktop (desktops) using the TAB key and press enter.

    🚧
    Try to avoid installing multiple heavy desktops in one system. Like KDE Plasma and GNOME in one system is not recommended.
    Installing Arch Linux with BTRFS and Disk Encryption
    Select GNOME Desktop
    💡
    You can choose one desktop like GNOME/Plasma and then choose one tiling window manager, making it install two desktop options.

    Selecting a desktop and pressing enter will bring you to the driver selection settings.

    For the test system, the installer automatically assigned all open-source drivers.

    Installing Arch Linux with BTRFS and Disk Encryption
    Driver packages

    You can enter the “Graphics driver” settings and decide appropriate driver packs.

    Installing Arch Linux with BTRFS and Disk Encryption
    Available drivers are listed

    Normally, you should not be doing anything on the greeter, as it will be automatically selected (GDM for GNOME, SDDM for KDE Plasma etc.)

    Audio settings

    For Audio settings, you can select Pipewire or pulse audio.

    Installing Arch Linux with BTRFS and Disk Encryption
    Select Pipewire

    Kernel

    You can either go with the default Linux kernel or select multiple kernels. Learn more about kernel options in Arch Linux.

    The screenshot below shows two kernels selected, linux and linux-lts.

    Installing Arch Linux with BTRFS and Disk Encryption
    Kernel selection

    Network Configuration

    In the Network Configuration settings, select “Use NetworkManager” option.

    Installing Arch Linux with BTRFS and Disk Encryption
    Use NetworkManager

    Additional Packages

    If you need to install additional packages to your system, you can do it at the installation stage itself.

    Press enter key on “Additional package” option in main menu.

    Now, just enter the proper name of the packages you want to install, separated with space.

    In the screenshot below, packages like firefox, htop, fastfetch, and starship are added.

    Installing Arch Linux with BTRFS and Disk Encryption
    Specify additional packages

    Optional Repositories

    You can enable multilib repositories using this setting. Select items using the TAB key and press enter. Learn about various Arch repos here.

    Installing Arch Linux with BTRFS and Disk Encryption
    Additional Repositories

    Timezone

    Search and set the timezone based on your location. Asia/Kolkata for Indian Standard Time, US/Central for central timezone etc.

    Installing Arch Linux with BTRFS and Disk Encryption
    Timezone settings

    Automatic Time Sync with NTP will be automatically enabled, and no need to change.

    Start the actual install

    Once all the settings have been done, you can use the Install option to start the installation procedure.

    Installing Arch Linux with BTRFS and Disk Encryption
    Use Install button

    You will be asked to verify the installation configurations you have set. Once satisfied, enter on “Yes” option.

    Installing Arch Linux with BTRFS and Disk Encryption
    Confirm installation (Click to expand the image)

    The process will be started, and you need to wait for some time to finish all the downloads and installations.

    Step 6: Post Installation

    Once the archinstall script finishes, it will ask you to chroot into the system for further settings. You can give NO to the question if you have nothing planned to do.

    Installing Arch Linux with BTRFS and Disk Encryption
    No chroot enter

    You can now shut down the system.

    shutdown now
    
    Installing Arch Linux with BTRFS and Disk Encryption
    Shutdown the system

    Once the system is shut down, remove the USB device from the port and boot the system.

    This will bring you to the encryption page, if you have enabled encryption. Enter the password you have set.

    Installing Arch Linux with BTRFS and Disk Encryption
    Enter encryption password

    You will reach the login page. Enter the password to log in to your system.

    Installing Arch Linux with BTRFS and Disk Encryption
    Log in to the system

    Enjoy Arch Linux with BTRFS and encrypted drive.

    Source: Read More

    Hostinger
    Facebook Twitter Reddit Email Copy Link
    Previous ArticleError’d: Artificial Average Intelligence
    Next Article Snal Linux – Arch based live distribution

    Related Posts

    Linux

    Photobooth is photobooth software for the Raspberry Pi and PC

    June 1, 2025
    Linux

    Le notizie minori del mondo GNU/Linux e dintorni della settimana nr 22/2025

    June 1, 2025
    Leave A Reply Cancel Reply

    Continue Reading

    ViLe: Two Men Plead Guilty For Hacking Into Law Enforcement Portal and Threatening Victim

    Development

    Apple’s New macOS Sequoia Tightens Gatekeeper Controls to Block Unauthorized Software

    Development

    SGLang: An Open-Source Inference Engine Transforming LLM Deployment through CPU Scheduling, Cache-Aware Load Balancing, and Rapid Structured Output Generation

    Machine Learning

    CVE-2025-39410 – Themegusta Smart Sections Theme Builder – WPBakery Page Builder Addon Deserialization of Untrusted Data Vulnerability

    Common Vulnerabilities and Exposures (CVEs)

    Highlights

    Learning Resources

    Best USB WiFi Adapter For Kali Linux 2025 [Updated March]

    May 31, 2025

    Best WiFi Adapter for Kali Linux Nowadays using Kali Linux becomes very simple as our…

    Google I/O 2025: Top 10 Highlights of Google’s New Announcements

    May 21, 2025

    Weekly Vulnerability Report: Critical Security Flaws Identified by Cyble in GitHub, FortiOS, and PHP

    June 14, 2024

    lomkit/laravel-rest-api

    August 11, 2024
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.