Skip to content

Instantly share code, notes, and snippets.

@piyoki
Last active March 20, 2024 14:02
Show Gist options
  • Save piyoki/79f69d6b81958b018c50ff5dbaea47e2 to your computer and use it in GitHub Desktop.
Save piyoki/79f69d6b81958b018c50ff5dbaea47e2 to your computer and use it in GitHub Desktop.

Fedora Hacks

Configure source

sudo sed -e 's|^metalink=|#metalink=|g' \
         -e 's|^#baseurl=http://download.example/pub/fedora/linux|baseurl=https://mirrors.ustc.edu.cn/fedora|g' \
         -i.bak \
         /etc/yum.repos.d/fedora.repo \
         /etc/yum.repos.d/fedora-updates.repo

sudo dnf makecache

Set locale

cat > /etc/locale.conf<<EOF
LANG=en_US.UTF-8
LANGUAGE=en_US:en
LC_ALL=en_US.UTF-8
LC_MESSAGES=C
EOF

reboot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment