我没有在我的机器上安装JMF .
我的设计是:
我已经按照甲骨文的指示找到了这里。他们说的只是执行/bin/sh ./jmf-2_1_1e-linux-i586.bin。它基本上只运行他们提供的.bin文件。
不过,在安装过程中,会出现以下错误:
Unpacking...
tail: cannot open '+309' for reading: No such file or directory
Extracting...
./install.sfx.23041: 1: ./install.sfx.23041: cannot open ==: No such file
./install.sfx.23041: 1: ./install.sfx.23041: ==: not found
./install.sfx.23041: 3: ./install.sfx.23041: Syntax error: ")" unexpected
chmod: cannot access 'JMF-2.1.1e/bin/jmstudio': No such file or directory
chmod: cannot access 'JMF-2.1.1e/bin/jmfregistry': No such file or directory
chmod: cannot access 'JMF-2.1.1e/bin/jmfinit': No such file or directory
./jmf-2_1_1e-linux-i586.bin: 305: ./jmf-2_1_1e-linux-i586.bin: JMF-2.1.1e/bin/jmfinit: not found
/bin/cp: cannot stat 'JMF-2.1.1e/lib/jmf.properties': No such file or directory
Done.这个错误似乎与不存在的目录有关,但我似乎找不到解决方案。
提前谢谢你!
发布于 2018-05-18 13:49:31
问题在于.bin文件的这一行:
tail +309 $0 > $outname似乎缺少了-n选项,因为要获得最后309行的输出,您需要将其更改为:
tail -n +309 $0 > $outname要做到这一点,可以使用vim提供-b (用于二进制)选项来编辑它:
vim -b jmf-2_1_1e-linux-i586.bin 发布于 2019-09-11 00:02:59
我刚刚做到了,done.This就是这些步骤:
+309' for reading: No such file or directory Extracting... ./install.sfx.3639: line 1: ==: No such file or directory ./install.sfx.3639: line 3: syntax error neUQU599ù;···ÿrþÑÑÑ¢\_Âò«KK)C{<>úú<<¿è QQRLÙÜÌLÅ^sfx.36 88ø$èåõÕ®¢¬,àöè´iÑ\*ÒÒÒV~ámn.à7w^ÝÂÆ,;M¢“A$D吲哚@ENO.AY wA”+309' for reading: No such file or directory Extracting... ./install.sfx.6017: 1: cannot open ==: No such file ./install.sfx.6017: 1: ==: not found ./install.sfx.6017: 3: Syntax error: ")" unexpected chmod: cannot accessJMF-2.1.1e/bin/jmstudio':没有这样的文件或目录chmod:无法访问JMF-2.1.1e/bin/jmfregistry': No such file or directory chmod: cannot accessJMF-2.1.1e/bin/jmfinit':没有这样的文件或目录。/jmf-2_1_1e-linux-i586.bin: 305: JMF-2.1.1e/bin/jmfinit: No found /bin/cp:无法统计“JMF-2.1.1e/lib/jmf.properties”:没有这样的文件或目录。https://stackoverflow.com/questions/50405234
复制相似问题