web-dev-qa-db-ja.com

petalinux v2018.2インストールエラー

Ubuntu 2016.04.5にPetalinux_v2018.2をインストールしています

./petalinux-v2018.2.ir.run /opt/petalinux_2018.2/

しかし、エラーで終了します。

./petalinux-v2018.2.ir.run: line 52: /opt/petalinux_2018.2/petalinux_installation_log: Permission denied
tee: /opt/petalinux_2018.2/petalinux_installation_log: Permission denied
INFO: Checking installer checksum...

tee: /opt/petalinux_2018.2/petalinux_installation_log: Permission denied
Please refer to the PetaLinux Tools Installation Guide.

Check the troubleshooting guide at the end of that manual, and if you are
unable to resolve the issue please contact customer support with file:
   /opt/petalinux_2018.2/petalinux_installation_log

tee: /opt/petalinux_2018.2/petalinux_installation_log: Permission denied
INFO: Extracting PetaLinux installer...
tar: /tmp/tmp.eeJueiu2Ol: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
tee: /opt/petalinux_2018.2/petalinux_installation_log: Permission denied
ERROR: Failed to extract the PetaLinux installer. Failed to install PetaLinux Tools!

この問題を解決するための助けをいただければ幸いです。

Sudo ./petalinux-v2018.2.ir.run /opt/petalinux_2018.2/を試すとき

また、エラーでプロンプト

ERROR: Exiting Installer: Cannot install as root user !
2
abbasi_ahsan

別の場所にディレクトリを作成し、そこにインストールします。

mkdir ~/petalinux
./petalinux-*.run ~/petalinux

これは、root以外のユーザーが/optの内容を変更できないために発生します。また、Petalinuxには、誤って使用するとシステムが破損する可能性があるため、root自体によってインストールされていないことを確認するチェックもあります。

4
Kristopher Ives