1

我正在尝试在 Ubuntu Server 11.04 VM 上安装 Oracle 数据库 10g。我正在使用 Vagrant 运行它并访问它。我下载了具有 .cpio.gz 文件扩展名的安装包。Oracle 指定这些命令来解压它:

gunzip filename
cpio -idmv filename 

gunzip 操作工作得很好,但是当我运行 cpio 命令时,它似乎花费了太长时间。我让它运行了 3 个多小时,但它还没有完成。现在,.cpio 文件为 764MB。它应该运行这么长时间吗?

4

1 回答 1

2

使用以下之一

 cpio -idmvI filename      # note the capital I

或者

 cpio -idmv < filename     # note the 'lower than'

否则 cpio 会尝试从标准输入读取

于 2011-10-04T13:03:35.483 回答