- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- extract files from a .depot
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
Discussions
Discussions
Discussions
Forums
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
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-01-2005 09:04 PM
тАО02-01-2005 09:04 PM
I have a depot file that normally is installed with swinstall. However, there is a bug in the installation script in the depot.
Is it possible to just extract all the files in a depot without installing them.
I could then take a look at the install script and try to debug the script.
Any help much appreciated.
With kind regards,
Kris
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2005 09:16 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2005 09:19 PM
тАО02-01-2005 09:19 PM
Re: extract files from a .depot
mkdir /tmp/patch
cd /tmp/patch
tar -xvf /tmp/
Revert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2005 09:34 PM
тАО02-01-2005 09:34 PM
Re: extract files from a .depot
the depot it's like to tar file.
so you can extract file :
mkdir /tmpdirectory
mv foo.depot to /tmpdirectory
tar xvf foo.depot
Bye
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-02-2005 05:55 AM
тАО02-02-2005 05:55 AM
Re: extract files from a .depot
(not always) a tar file and a file can be extracted by
"tar -xvf XXXX.depot" command.
If the depot is not a tar file (which, AFAIK, should be
rare), then it would be a directory with all bunch of
subdirectories inside it (each subdirectory
corresponding to a fileset that the depot contains).
So, to pullout a particular file, just use 'find' command
in the depot directory.
- Biswajit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-28-2010 05:48 AM
тАО04-28-2010 05:48 AM
Re: extract files from a .depot
the files in the depot file could be zipped also, so after extracting them with tar use gunzip to explode each one
bye
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-28-2010 08:43 AM
тАО04-28-2010 08:43 AM
Re: extract files from a .depot
# swcopy -s yourDepotHere -x enforce_dependencies=false -x uncompress_files=true \* @ newDepotHere