Last active
October 21, 2022 06:54
-
-
Save tats-u/89a20f60c11ef86b32deeaf4a6e3cc91 to your computer and use it in GitHub Desktop.
Ubuntuのリポジトリを日本ミラー(jp.archive.ubuntu.com)に変更するスクリプト
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 | |
# 利用法: | |
# curl -LsSf https://gist.github.com/tats-u/89a20f60c11ef86b32deeaf4a6e3cc91/raw/ubuntu_use_jp_mirror_repo.sh | sudo bash | |
# | |
# 主にWSL・Docker上のUbuntuが利用対象です | |
# (ベアメタルや各種VMにインストールしたUbuntuはすでにリポジトリが日本ミラーになっているため) | |
sed -i '/^deb/s@://archive\.ubuntu\.com@://jp.archive.ubuntu.com@' /etc/apt/sources.list |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment