CPIO命令需要很长时间才能完成

时间:2011-10-04 12:58:28

标签: oracle10g ubuntu-server vagrant

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

gunzip filename
cpio -idmv filename 

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

1 个答案:

答案 0 :(得分:2)

使用以下其中一项

 cpio -idmvI filename      # note the capital I

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

否则cpio会尝试从 stdin

中读取