restore cpio file


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers restore cpio file
# 1  
Old 01-09-2011
Power restore cpio file

Hi,

under unix aix , i had to put a catostrophic patch from an editor ...
i had first made a cpio backup

connected root
Code:
cd /application
find . –print | cpio –ocvBm > /sauvegarde/sauvegarde.cpio

Does someone know the command to restore my cpio backup ?
thanks in advandce to everyone

PS : i'm french and excuse me for my poor english ... ;-)

Last edited by radoulov; 01-09-2011 at 02:49 PM.. Reason: Code tags!
# 2  
Old 01-09-2011
You may have a read of cpio.
# 3  
Old 01-09-2011
i've read it but dont understand everything ...
is the command :
cpio -idvu ??
thanks
# 4  
Old 01-09-2011
Why don't you test it out with some files/directories? Smilie
# 5  
Old 01-09-2011
ok i've understood the principle of this forum
"if you dont need anything , ask ..." Smilie
# 6  
Old 01-09-2011
Code:
cpio -idvm < backup_file

# 7  
Old 01-09-2011
thank you very much radoulov !
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Cpio - input files (from list) are stored in different order inside cpio archive - why?

Due to budget constraints I have to reinvent an Enterprise backup system in a SPARC (sun4v) Solaris estate (10 & 11). (yep - reinvent wheel, fun but time consuming. Is this wise?! :confused: ) For each filesystem of interest, to try to capture a 'catalog' at the front of each cpio archive (for... (1 Reply)
Discussion started by: am115998
1 Replies

2. UNIX for Beginners Questions & Answers

CPIO Restore

Please note that using the command cpio to back up to tape was successful. Used the below command: time find /accts -print | cpio -oa --block-size=512 --format=newc --verbose -O /dev/nst0 I'm trying to restore from tape of a particular file and having issues. Below is the command to restore... (7 Replies)
Discussion started by: isoabv
7 Replies

3. UNIX for Beginners Questions & Answers

Cpio Restore didnt go to plan

Hello folks, one of the RAID drives in our SCO system crashed recently and being hot swap it was replaced. Problem was that on boot it stops at: Checking protected password and protected subsystem databases.... First I did #authck -a and checked /etc/auth/system/ttys as per instructions in a... (7 Replies)
Discussion started by: Redstar
7 Replies

4. UNIX for Dummies Questions & Answers

Unable to restore cpio archive to a directory

Hello Every one, I want to back up all passwd files to /xyz/passfiles.cpio and Then restore them to /abc directory. Here is what I wrote: find / -name passwd | cpio -oc > /tmp/passwd.cpio and to restore cd abc cpio -ium < /tmp/passwd.cpio I can not find the files restored to /abc... (2 Replies)
Discussion started by: drdigital_m
2 Replies

5. SCO

cpio Backup and restore to spare server fails

Our company purchased a spare HP ML350 server - identical to current one in use to act as minimal downtime replacement should the inevitable happen. After install of OS 5.0.7 and restore of cpiobackup I get this message: -: Syntax error: Hostname= $inexpected The SCO licence policy... (4 Replies)
Discussion started by: moondogi
4 Replies

6. AIX

mksysb restore - Wrong OS level for restore

Hi all, I am still working on my mksysb restore. My latest issue is during an alt_disk_install from tape I got the following error after all the data had been restored. 0505-143 alt_disk_install: Unable to match mksysb level 5.2.0 with any available boot images. Please correct this... (0 Replies)
Discussion started by: pobman
0 Replies

7. SCO

cpio: Ulimit reached for file output

I am trying run cpio backing up to tape, but I get the above error. Can anyone assist please as I am sleeping at work today. I tried setting the ulimit to unlimited but when I rebooted the server it came back with another value and I cannot run my backup now.... (0 Replies)
Discussion started by: dustytina
0 Replies

8. UNIX for Dummies Questions & Answers

Selective restore from a cpio tape archive

Hi, I use following command to restore data from my cpio tape archive: $cpio -icvd < /dev/rct0 But this'll restore all tape contents to the current path, what if I want only selected files from the tape, suppose I want /home/compdir/home2/Rev83/data/PL/01/*.* files to be restored... (8 Replies)
Discussion started by: tayyabq8
8 Replies

9. UNIX for Dummies Questions & Answers

running a .cpio touchscreen file on a solaris system

All right Ladies& Gents, I am trying to figure out why the touchscreen.cpio patch that I loaded on my Panasonic cf-28 will not work. Besides the obvious of this is a patch for a Panasonic cf-29 that is. I know enough to load the .cpio patch and get it to work yet I cannot figure out how to... (0 Replies)
Discussion started by: cjparks
0 Replies

10. UNIX for Dummies Questions & Answers

cpio restore - relative pathname

SCO/Caldera Unixware 711 Hi Friends, I have a cpio file which was created using relative pathnames. the relative pathname is users/data/* I want to restore these files to a different directory with cpio. An example restore directory is /home/suresh Is this possible ? Can someone... (4 Replies)
Discussion started by: sureshy
4 Replies
Login or Register to Ask a Question