- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: restore files
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2003 06:42 PM
07-02-2003 06:42 PM
a/file1
a/file2
a/file3
b/file1
b/file2
b/file3
c/file1
c/file2
c/file3
"
"
"
I want to restore the file for one time instead of restore it one by one , I tried " tar -xvf /dev/st0 * " , it seems no files is restored , can suggest how can I restore it ? thx
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2003 07:27 PM
07-02-2003 07:27 PM
Solutiona simple tar -xvf /dev/st0 will restore all files on the tape.
is that what you require.
if you want to do specific files then do,
tar -xvf /dev/st0 file1 file2 file3.
here the wild card * wont help because when the shell interprests it, it will be like
tar -xvf /dev/st0
which are likely not to be on the tape.
hth
-balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2003 07:46 PM
07-02-2003 07:46 PM
Re: restore files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2003 01:31 AM
07-03-2003 01:31 AM
Re: restore files
how abt spending some time now assigning points to those invaluable help u have received from all.
-balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2003 01:37 PM
07-03-2003 01:37 PM
Re: restore files
You don't need to use the * because the default is to restore all the files,
if you want to use the * as parameter and
not give to shell return a list of files
then use the "*" but no need in for you.
Caesar