Skip to content

Instantly share code, notes, and snippets.

@tats-u
Last active October 21, 2022 06:54
Show Gist options
  • Save tats-u/89a20f60c11ef86b32deeaf4a6e3cc91 to your computer and use it in GitHub Desktop.
Save tats-u/89a20f60c11ef86b32deeaf4a6e3cc91 to your computer and use it in GitHub Desktop.
Ubuntuのリポジトリを日本ミラー(jp.archive.ubuntu.com)に変更するスクリプト
#!/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