Skip to content

AzureZeng/wsl-arch-rootfs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Arch Linux RootFS

This repository contains the automatic build script of minimal Arch Linux on WSL2 RootFS, provided by Azure Zeng.

This repo will build RootFS automatically at 07:24 AM UTC on every 1st day of the month.

⚠️ WARNING:

Please read this readme carefully before using this RootFS.

  1. Please read this README thoroughly before using any RootFS archives provided by this repository.

  2. Arch Linux on WSL installation is currently supported by official. Before you start, it is recommended to visit official guide on Arch Linux Wiki.

  3. Although supported officially, there might be some problems which is not reproducible in non-WSL Arch Linux installation. Therefore, you should be familiar with normal Arch Linux installations.

  4. The RootFS file provided in this repository is only intended to be installed in WSL2. WSL1 is not supported as Microsoft strongly advises using WSL2 now.

Getting the RootFS

Download the latest archlinux.wsl in the Repository Releases.

Installation

WSL version 2.4.4 or higher

Double click archlinux.wsl or execute the following to install and configure Arch Linux WSL:

wsl --install --from-file /path/to/archlinux.wsl

Then OOBE will start immediately if you start the distro. Just follow the instruction and start using!

WSL version prior to 2.4.4

Import RootFS by using wsl --import <Distro> <InstallLocation> <FileName>.

For example:

wsl --import Arch C:\Users\azurezeng\WSL\Arch archlinux.wsl

Then execute OOBE script immediately:

$ /usr/lib/wsl/oobe.sh

Contents in this RootFS

For detailed auto-build process, please visit build-rootfs.yml.

Summary:

  • Pre-installed packages: base curl wget vim nano sudo texinfo man-db man-pages

  • /etc/pacman.d/mirrorlist: Updated from https://archlinux.org/mirrorlist/all/, and all mirrorlist sites are enabled by default.

  • /etc/pacman.conf: Enabled Color and ParallelDownloads options by default.

  • /etc/locale.gen: Enabled en_US.UTF-8 UTF-8 by default. Then used locale-gen to generate localization files.

  • /etc/sudoers.d/wheel: Enabled %wheel ALL=(ALL:ALL) ALL, which means users in wheel group will be able to use sudo by default.

  • Removed auto-generated /etc/pacman.d/gnupg for security reason (since 7/20/2024).

  • /tmp is mounted as tmpfs by adding this mount option to /etc/fstab. This behavior is same as default Arch Linux installation.

  • Masked Systemd services: systemd-binfmt.service, systemd-resolved.service, systemd-networkd.service, tmp.mount.

  • Disabled the appending of Windows environment variables by default. This setting is done via /etc/wsl.conf.

Some tips

  1. After importing/installing the RootFS, it is advised to do pacman -Syu as early as possible, to ensure everything the latest.

  2. Install mesa mesa-utils to get WSL GPU acceleration.

  3. Intel graphics user may experience some problems (see this issue on ArchWSL). A workaround:

sudo ln -sf libedit.so /usr/lib/libedit.so.2
  1. To download all packages (without package re-installing):
pacman -Qq | sudo pacman -Sw -
  1. To enable systemd support, create /etc/wsl.conf with below content:
[boot]
systemd=true
  1. You can set the default user by putting the following content to /etc/wsl.conf:
[user]
default=USERNAME_IN_WSL
  1. Error error: restricting filesystem access failed because landlock is not supported by the kernel! when using pacman

    Some security features are introduced in pacman v7.x, requiring a newer kernel version.

    Update WSL to version 2.5.7 or later to use newer kernel version, or just enable DisableSandbox setting in /etc/pacman.conf.

#UseSyslog
Color
#NoProgressBar
CheckSpace
#VerbosePkgLists
ParallelDownloads = 5
DownloadUser = alpm
DisableSandbox

About

Automatic build minimal Arch Linux WSL2 rootfs, using pacstrap

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages