linux – 安装时可以将用户定义的参数传递给RPM吗?

前端之家收集整理的这篇文章主要介绍了linux – 安装时可以将用户定义的参数传递给RPM吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
安装时可以将用户定义的参数传递给RPM.

例如:

~>rpm -i sample.rpm -license_path=/path/

要么

~>rpm -i -license_path=/path/ sample.rpm

要么

~>rpm -i -somearg sample.rpm

-Sakthi

解决方法

RPM并不意味着采用用户定义的参数.

RPM – Install time parameters

另一个类似的问题是在https://superuser.com/questions/408852/is-it-possible-to-get-users-input-during-installation-of-rpm

一种解决方法是让rpm的postinstall脚本请求来自stdin的输入,在这种情况下,您可以通过从文件或此处文档重定向stdio来传递答案.

>rpm -i sample.rpm <<__NOT_RECOMMENDED__
somearg
__NOT_RECOMMENDED__
原文链接:https://www.f2er.com/linux/394313.html

猜你在找的Linux相关文章