创建用于软件分发的多平台 CD
这与编程无关,但我希望仍然相关。
我正在开发一个用 Java 编写的项目,旨在用于 PC 和 Mac。 它将以 CD 形式发行(最终可能还会以 DVD 形式发行)。 我们的目标受众显然是非技术性的,因此,CD 在加载时“正常工作”非常重要。
这本身并不困难。 对于Windows,我们可以设置自动运行来自动启动应用程序,对于Mac,我们可以使用特殊的文件夹格式来明确用户应该做什么。
问题是我们希望提供一张可在 Mac 或 PC 上使用的光盘。 我见过一些相当拜占庭的方法使用特定的专有软件来实现这一点。 希望这不是实现这一目标的唯一方法。
所以我的问题是:如何创建 CD 来分发软件,以便 CD 在 Mac 和 PC 上打开时都能正常运行、执行或显示为“本机”?
This is not strictly programming related, but I hope still relevant.
I'm working on a project which is written in Java and intended for use on PCs and Macs. It will be distributed on CD (and perhaps DVD, eventually). Our intended audience is decidedly non-technical and, as such, it's important the CD "just work" when it's loaded.
This is not itself difficult. For Windows, we can setup Autorun to automatically launch the app and, for Mac, we can use special folder formatting to make it clear what the user should do.
The hitch is that we would like to ship one disc which could be used on either a Mac or a PC. I have seen some rather byzantine methods of accomplishing this with specific, proprietary software. Hopefully, this is not the only way to accomplish this.
So my question: How do I create a CD to distribute software so that the CD will function, perform or appear "native" when opened on both a Mac and a PC?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有很多工具可以刻录 CD 或创建在 Mac 和 PC 上本机可读的 CD 映像。
例如尝试 MacImage
There are a lot of tools that can burn CDs or create CD images thats readable natively on both Mac and PC.
Try MacImage for example
您可以使用 mkisofs 或 mkhybrid 来创建“混合”CD 映像。
You can use mkisofs or mkhybrid to crate a "hybrid" CD image.