1837008 Members
1907 Online
110111 Solutions
New Discussion

command CPIO not working

 
SOLVED
Go to solution
Mohd Syafid Abdullah
Regular Advisor

command CPIO not working

Hi Guru,

Please help me. Im trying run cpio -idcmv file.cpio and the command hanging.
Im run fresh HPUX 11.
Please help
6 REPLIES 6
Naveej.K.A
Honored Contributor

Re: command CPIO not working

Hi,

What is it that you are trying to do with the cpio command?? What is that you desire to get as an output??

Regards,
Naveej
practice makes a man perfect!!!
Naveej.K.A
Honored Contributor

Re: command CPIO not working

cpio -idcmv < file.cpio ??

Regards,
Naveej
practice makes a man perfect!!!
Mohd Syafid Abdullah
Regular Advisor

Re: command CPIO not working

I trying to extract oracle9i disk 1 cpio file.
Why its hanging?
H.Merijn Brand (procura
Honored Contributor

Re: command CPIO not working

Because you forgot the redirecting '<', and your command is now reading STANDARD INPUT

cppio is a filter, and does not take the in or outputstream as a commandline argument

# cpio -idcmv < file.cpio

Enjoy, Have FUN! H.Merijn
Enjoy, Have FUN! H.Merijn
Naveej.K.A
Honored Contributor
Solution

Re: command CPIO not working

u missed < :)

cpio -idcmv < file.cpio should be the right command.

Regards,
Naveej
practice makes a man perfect!!!
Mohd Syafid Abdullah
Regular Advisor

Re: command CPIO not working

Thanks naveej
yr salution really help