我正在尝试在Ubuntu Server 11.04 VM上安装Oracle数据库10g。我正在使用Vagrant来运行它并访问它。我下载了安装包,其中包含.cpio.gz文件扩展名。 Oracle指定这些命令来解压缩它:
gunzip filename
cpio -idmv filename
gunzip操作工作正常,但是当我运行cpio命令时,它似乎花了太长时间。我让它运行了3个多小时,但还没有完成。现在,.cpio文件是764MB。它应该运行这么久吗?
答案 0 :(得分:2)
使用以下其中一项
cpio -idmvI filename # note the capital I
或
cpio -idmv < filename # note the 'lower than'
否则cpio会尝试从 stdin
中读取