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
| #!/bin/bash | |
| # 解除唯讀模式 | |
| sudo steamos-readonly disable | |
| # 刷新pacman(套件管理工具) | |
| sudo pacman -Ssy | |
| # 初始化pacman密鑰 | |
| sudo pacman-key --init | |
| # 使用默認的Arch Linux密鑰替代 | |
| sudo pacman-key --populate archlinux | |
| # 安裝建構編譯所需的工具 |