Solaris 中的软件升级解决方案
我正在开发一个软件。
我已经在运行Solaris 10的机器上安装了v1.0,
并且我想升级到版本1.1,它有一些新功能。
我不想卸载版本 1.0,而是升级到版本 1.1。
我该如何制作补丁?
编写脚本或使用一些补丁工具?
I am working on developing an software.
I have installed the v1.0 on my machine running solaris 10,
and I want to upgrade to version 1.1 tha has some new function.
I do not want to uninstall version 1.0 but upgrade to version 1.1.
How do I make a patch?
Writing a script or using some patch tools?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您询问有关 Solaris 补丁的信息,即适用于 SVR4 软件包的补丁,我想只有 Solaris 工程人员能够构建和交付它们,因为我不知道有任何标准/文档格式。新版本的 Solaris (11) 将放弃这种修补方法,转而采用新的 pkg 机制。
如果您希望新版本不取代旧版本,我想最简单的方法是将它们安装在不同的目录中。例如:/opt/zhangli/v1.0 和 /opt/zhangli/v1.1。任何包装格式都支持这一点。
If you are asking about Solaris patches, i.e. those appling to SVR4 packages, I guess only Solaris engineering is able to build and deliver them as there is no standard/documented format I'm aware of. The new version of Solaris (11) is going to abandon this patching method anyway to the new pkg mechanism.
If you want a new version not to replace the older one, I guess the simplest way would be to have them to install in different directories. eg: /opt/zhangli/v1.0 and /opt/zhangli/v1.1. Any packaging format would support that.