- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- dd problem !!!
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
02-07-2006 10:49 PM
02-07-2006 10:49 PM
dd problem !!!
i need of your help.
I backupped a file system of 3 Gb by ufsdump on a tape of 12 Gb.Then i want to copy by "dd" command, this tape backup on the file system but this command extract a backup of 12 Gb and not a real size of 3Gb. DD read the entire capacity of tape.
I need to solve this problem ....
Thanks a lot ....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2006 11:03 PM
02-07-2006 11:03 PM
Re: dd problem !!!
dd sounds like too simple a tool for thsi purpose.
There are specific tape management tools for this job. Just google around for some, or hope someone else offers a specific recommendation.
Having said that, why not simply restore the tape to an alternative mountput and take it from there?
Just a thought,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2006 11:58 PM
02-07-2006 11:58 PM
Re: dd problem !!!
if you are certain of how big your input file is, can you use the count=n option with dd ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2006 12:30 AM
02-08-2006 12:30 AM
Re: dd problem !!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2006 12:38 AM
02-08-2006 12:38 AM
Re: dd problem !!!
ll a
-rw-r--r-- 40960 Feb 8 13:34 a
# Full copy of file a
dd if=a of=b
ll b
-rw-r--r-- 40960 Feb 8 13:34 b
# Partial copy/restore
dd count=2 if=b of=c
ll c
-rw-r--r-- 1024 Feb 8 13:34 c
My blocksize was 512 bytes
So if you only want the first 3Gb of the tape declare your blocksize and ajust the count accordingly (with a bit extra)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2006 01:32 AM
02-08-2006 01:32 AM
Re: dd problem !!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2006 01:38 AM
02-08-2006 01:38 AM
Re: dd problem !!!
I assumed you had used a new tape.
The size of your required input is at least 3Gb which was the original data backed up.
So if your blocksize is 1Mb, the count may be somethinng like 3500.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2006 01:42 AM
02-08-2006 01:42 AM
Re: dd problem !!!
If you have used ufsdump to back-up this filesytem to tape, why not use ufsrestore to copy this back-up to an other filesystem?
Best regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2006 02:00 AM
02-08-2006 02:00 AM
Re: dd problem !!!
I need a command to know the exactly size of backup file on the tape !!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2006 02:23 AM
02-08-2006 02:23 AM
Re: dd problem !!!
If so, you could run ufsdump -vS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2006 03:40 AM
02-08-2006 03:40 AM