Debian 8 Jessieがリリースされました。
めでたくDebianの新バージョンがリリースされました。
Debian 8.0 Jessie has been released!
https://bits.debian.org/2015/04/jessie-released.html
ダウンロードは今までどおりDebian を入手するにはのページからできます。
リリースノートはこちら。
アーキテクチャや言語ごとに細やかに分かれておりますのでよく探してから読んでください。
wheezyからのアップグレード
リリースノートにも日本語で書いてありますが、一応やり方の紹介です。
まずは/etc/apt/sources.list
を編集しましょう。
1 |
sudo nano /etc/apt/sources.list |
1 2 3 4 5 6 7 8 |
# wheezyから・・・ # deb http://ftp.jp.debian.org/debian/ wheezy main contrib non-free # jessieに書き換える deb http://ftp.jp.debian.org/debian/ jessie main contrib non-free # リリース名ではなく状態名でも可能 deb http://ftp.jp.debian.org/debian/ stable main contrib non-free |
書き換えたらリポジトリの更新をします。
1 |
sudo apt-get update |
ミラーサーバーを使っている場合は以下のようなエラーが出ることがあります。
1 |
W: Conflicting distribution: http://mirror.server jessie Release (expected stable but got jessie) |
これはミラーサーバーにjessieリリースの情報が適用されていないためなので、サーバーをhttp://ftp.jp.debian.org/debian/
にしたらOKです。
その後はパッケージの更新をして再起動しておわり。
1 2 3 |
sudo apt-get upgrade sudo apt-get dist-upgrade sudo reboot |