Debian10へのアップデート
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*Debian10へのアップデート [#l98422d7]
自宅サーバをCore iの中古に変更するつもりが、まもなく公開...
** 現状の確認 [#wbf2a060]
$ sudo su
# lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 9.13 (stretch)
Release: 9.13
Codename: stretch
9.13がStretchの最終版。
** 最新パッケージになっているか確認 [#ud82c375]
# apt-get update
# apt-get upgrade
# dpkg --audit
** 不要になったパッケージの削除 [#fdf9128c]
# apt autoremove
# apt autoclean
** /etc/apt/sources.listの変更 [#ca386de3]
# nano /etc/apt/sources.list
deb http://httpredir.debian.org/debian buster main contr...
deb http://httpredir.debian.org/debian buster-updates ma...
deb http://security.debian.org/ buster/updates main cont...
deb-src http://security.debian.org/ buster/updates main ...
**パッケージリストの更新 [#v91919b5]
# apt-get update
エラー発生
E: Problem executing scripts APT::Update::Post-Invoke-Su...
E: Sub-process returned an error code
上記エラーのため、appstreamをインストール
# apt-get install appstream
パッケージリストの更新を再開
# apt-get update
** システムのアップグレード(最小) [#z9b703c9]
# apt-get upgrade
作業はSSHでリモートログインして行っていたのだが、間違って...
# ap-get upgrade
で再開すると、lock状態。よく見ると実行中のプロセスがあっ...
再実行で、"sudo dpkg --configure -a"せよとのこと。
# dpkg --configure -a
無事に終了したので再度
# ap-get upgrade
** システムのアップグレード(すべて) [#h19c7162]
# apt full-upgrade
エラー発生
N: Ignoring file '50unattended-upgrades.ucftmp' in direc...
google先生に聞いても決め手がないので問答無用で削除
# rm /etc/apt/apt.conf.d/50unattended-upgrades.ucftmp
"apt --fix-broken install" せよというので実行するも、まだ...
Preparing to unpack .../mesa-va-drivers_17.3.8-1_amd64.d...
Unpacking mesa-va-drivers:amd64 (17.3.8-1) ...
dpkg: error processing archive /var/cache/apt/archives/m...
trying to overwrite '/usr/lib/x86_64-linux-gnu/dri/nouv...
dpkg-deb: error: paste subprocess was killed by signal (...
Errors were encountered while processing:
/var/cache/apt/archives/mesa-va-drivers_17.3.8-1_amd64....
E: Sub-process /usr/bin/dpkg returned an error code (1)
どうも、vdpau-va-driver の存在が問題らしい。実は、xserver...
バージョンアップを重ねてきたツケかな?
# dpkg -r vdpau-va-driver
再開
# apt full-upgrade
無事完了したところで、
# dpkg --audit
依存も問題なし
# lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 10 (buster)
Release: 10
Codename: buster
再起動して完了。
#htmlinsert(amazon_pc.html);
終了行:
*Debian10へのアップデート [#l98422d7]
自宅サーバをCore iの中古に変更するつもりが、まもなく公開...
** 現状の確認 [#wbf2a060]
$ sudo su
# lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 9.13 (stretch)
Release: 9.13
Codename: stretch
9.13がStretchの最終版。
** 最新パッケージになっているか確認 [#ud82c375]
# apt-get update
# apt-get upgrade
# dpkg --audit
** 不要になったパッケージの削除 [#fdf9128c]
# apt autoremove
# apt autoclean
** /etc/apt/sources.listの変更 [#ca386de3]
# nano /etc/apt/sources.list
deb http://httpredir.debian.org/debian buster main contr...
deb http://httpredir.debian.org/debian buster-updates ma...
deb http://security.debian.org/ buster/updates main cont...
deb-src http://security.debian.org/ buster/updates main ...
**パッケージリストの更新 [#v91919b5]
# apt-get update
エラー発生
E: Problem executing scripts APT::Update::Post-Invoke-Su...
E: Sub-process returned an error code
上記エラーのため、appstreamをインストール
# apt-get install appstream
パッケージリストの更新を再開
# apt-get update
** システムのアップグレード(最小) [#z9b703c9]
# apt-get upgrade
作業はSSHでリモートログインして行っていたのだが、間違って...
# ap-get upgrade
で再開すると、lock状態。よく見ると実行中のプロセスがあっ...
再実行で、"sudo dpkg --configure -a"せよとのこと。
# dpkg --configure -a
無事に終了したので再度
# ap-get upgrade
** システムのアップグレード(すべて) [#h19c7162]
# apt full-upgrade
エラー発生
N: Ignoring file '50unattended-upgrades.ucftmp' in direc...
google先生に聞いても決め手がないので問答無用で削除
# rm /etc/apt/apt.conf.d/50unattended-upgrades.ucftmp
"apt --fix-broken install" せよというので実行するも、まだ...
Preparing to unpack .../mesa-va-drivers_17.3.8-1_amd64.d...
Unpacking mesa-va-drivers:amd64 (17.3.8-1) ...
dpkg: error processing archive /var/cache/apt/archives/m...
trying to overwrite '/usr/lib/x86_64-linux-gnu/dri/nouv...
dpkg-deb: error: paste subprocess was killed by signal (...
Errors were encountered while processing:
/var/cache/apt/archives/mesa-va-drivers_17.3.8-1_amd64....
E: Sub-process /usr/bin/dpkg returned an error code (1)
どうも、vdpau-va-driver の存在が問題らしい。実は、xserver...
バージョンアップを重ねてきたツケかな?
# dpkg -r vdpau-va-driver
再開
# apt full-upgrade
無事完了したところで、
# dpkg --audit
依存も問題なし
# lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 10 (buster)
Release: 10
Codename: buster
再起動して完了。
#htmlinsert(amazon_pc.html);
ページ名: