目次~
#contents

*概要 [#e6081090]
Ubuntu14.10の初期設定手順。~
Ubuntu14系は既にサポートが終了しているため、あえて古いバージョンを使用する場合にのみ使用すること。~


*OS設定 [#x32f7a49]
**リポジトリの変更 [#rec7128a]
***概要 [#vdae87e4]
Ubuntu14系は既にサポートが終了しているため、オンラインのリポジトリパスが変更されている。~
OSのインストール段階で参照しているURLにはリポジトリが存在しないため、URLの書き換えが必要となる。~

-/etc/apt/sources.list
 【変更前】http://jp.archive.ubuntu.com/ubuntu/
 【変更後】http://old-releases.ubuntu.com/ubuntu/

-一括書き換えスクリプト~
root権限で実行すること~
 #!/bin/sh
 # ------------------------
 # Ubuntu 14 setup script
 # ------------------------
 # Version : 1.0
 # date    : 2018/1/4
 
 export LANG=C
 export PATH=/bin:/sbin:/usr/bin:/usr/sbin:$PATH
 
 ##
 ## OS setting
 ##
 
 ## Rep Update
 
 cd /etc/apt
 cp sources.list sources.list_orig
 sed -i -e 's|//.*ubuntu.com/|//old-releases.ubuntu.com/|' /etc/apt/sources.list
 apt-get update
 
 #EOF


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS