> For the complete documentation index, see [llms.txt](https://termux-wiki.zsxwz.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://termux-wiki.zsxwz.com/an-zhuang-linux-fa-hang-ban.md).

# 安装linux发行版

安卓系统内核一般是aarch64，因此也只能安装arm的linux发行版，如果非要安装amd64的，可以使用qemu安装，但是性能就基本没有了，也不太建议折腾。

最简单的方法是使用proot-distro

```
安装proot
pkg install proot-distro

# 查看支持安装的发行版
proot-distro list

# 安装
proot-distro install alpine

# 启动
proot-distro login alpine

# 卸载
proot-distro remove alpine

# 重新安装
proot-distro reset alpine
```

安装发型版之后就可以安装neofetch来装x了。

```
#ubuntu
apt install neofetch

#alpine 
apk add neofetch

# arch
pacman -S neofetch
```
