LoginSignup
3
3

More than 3 years have passed since last update.

Proxmox 6

Last updated at Posted at 2019-07-16

参考

Proxmox 5->6に更新手順

# 最新のProxmox5に更新
apt update
apt dist-upgrade --download-only

# 最新のProxmox5に更新
apt dist-upgrade

reboot
# checkerを実行
pve5to6
# Promxox 6にリポジトリを変更
sed -i 's/stretch/buster/g' /etc/apt/sources.list

echo "deb http://download.proxmox.com/debian/pve buster pve-no-subscription" > /etc/apt/sources.list.d/pve-enterprise.list
apt update

apt dist-upgrade --download-only

# Proxmox6に上げる
apt dist-upgrade
apt -f install

LXCのリストアに失敗する場合

tar: ./var/spool/postfix/dev/urandom: Cannot mknod: Operation not permitted
tar: ./var/spool/postfix/dev/random: Cannot mknod: Operation not permitted

スクリーンショット_2019-08-22_11-06-17.png

# 原因のファイルが存在することを確認。
ls -lh /var/spool/postfix/dev/urandom
ls -lh /var/spool/postfix/dev/random
# 設定ファイルのバックアップ
mkdir ~/backup/
cp -a /etc/postfix/ ~/backup/

# postfixの停止
apt-get remove postfix
dpkg --purge postfix
# 原因のファイルが消えたことを確認。
ls -lh /var/spool/postfix/dev/urandom
ls -lh /var/spool/postfix/dev/random

# postfixの起動
apt-get install postfix
cp -a ~/backup/postfix /etc/
  • バックアップし、リストアが成功することを確認。
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3