![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Error while UNZIPPING | srujana | HP-UX | 1 | 05-27-2008 03:08 AM |
| URGENT --problem in unzipping | suman_jakkula | AIX | 2 | 09-24-2006 04:23 AM |
| problem in unzipping---URGENT | suman_jakkula | Shell Programming and Scripting | 1 | 08-30-2006 11:54 AM |
| Unzipping problems in Unix | narayanan0 | UNIX for Dummies Questions & Answers | 1 | 02-22-2005 02:43 PM |
| Unzipping | FalconX2 | UNIX for Dummies Questions & Answers | 3 | 07-30-2001 12:05 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
unzipping problem
Hi,
I have downloaded the oracle 9i software from oracle website. The file is in the following format. "lnx_920_disk1.cpio.gz" I need to unzip this file for installing oracle9i in my system. I tried with the following command to unzip the file "$gunzip lnx_920_disk1.cpio.gz" but i am getting the error "gunzip:lnx_920_disk1.cpio:Read only file system". How to unzip the above file? Your help in this regard is highly appreciated. cheers RRK |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
Look at the message, it says "read only file system".
You could do Code:
gunzip <lnx_920_disk1.cpio.gz >/some/writeable/partition switch to where you want to extract it to and do Code:
gunzip </path/to/lnx_920_disk1.cpio.gz | cpio -ivdu |
|
#3
|
|||
|
|||
|
Hi porter,
Thank u for the reply. I will check that now and let u know . cheers RRK |
|||
| Google The UNIX and Linux Forums |
| Tags |
| cpio |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|