apt install を使用した deb パッケージのインストール

apt install を使用した deb パッケージのインストール

以前のバージョンのdebパッケージがインストールされていない場合は、次のようにインストールするのapt installが正しいでしょう。ただし、以前のバージョンのdebパッケージがシステムにインストールされていると、エラーが発生します。

chmod: cannot access '/opt/mplc4_installer/install.sh': No such file or directory
dpkg: error processing package mplc4-oni-plc-w (--configure):
 installed mplc4-oni-plc-w package post-installation script subprocess returned error exit status 1
Errors were encountered while processing:
 mplc4-oni-plc-w

私のpostinstスクリプト:

#!/usr/bin/env bash
set -Eeu
chmod u+x opt/mplc4_installer/install.sh
cd opt/mplc4_installer/
./install.sh > /dev/null 2>&1
exit $?

ベストアンサー1

おすすめ記事