- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Howto: split big file in multiple pieces and rebui...
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
04-09-2003 02:33 AM
04-09-2003 02:33 AM
Howto: split big file in multiple pieces and rebuild on Windows2000 system?
On a HP-UX 11.11 system, I have a compressed file of 3.5 Gb. This file needs to be splitted in pieces of 650 Mb so they can be copied to a workstation and being burned on cd. After that, the cd's will be copied to a Windows 2000 system and there the original file needs to be rebuild. How can I achieve this, I have already installed Gzip version 1.3.3 but with Gzip I cannot split in sizes. Other programs like bsplit can spilt files but the files cannot be rebuild on a Windows system...
Many thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2003 02:46 AM
04-09-2003 02:46 AM
Re: Howto: split big file in multiple pieces and rebuild on Windows2000 system?
use bsplit for windows to merge back the files on windows.
http://jean.brefort.free.fr/info/en/bs/
- ramd.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2003 02:51 AM
04-09-2003 02:51 AM
Re: Howto: split big file in multiple pieces and rebuild on Windows2000 system?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2003 03:00 AM
04-09-2003 03:00 AM
Re: Howto: split big file in multiple pieces and rebuild on Windows2000 system?
bsplit for unix and windows,
http://smokeping.planetmirror.com/pub/hpfreeware/Networking/Misc/bsplit-2.01/bsplit-2.01.README.html
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2003 03:05 AM
04-09-2003 03:05 AM
Re: Howto: split big file in multiple pieces and rebuild on Windows2000 system?
Then, after copying these files to windows system, you simply issue the following command (for example, n=number of chunks):
copy /b file1.spl+file2.slp+....+filen.spl fullimage.bin
Eugeny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2003 03:43 AM
04-09-2003 03:43 AM
Re: Howto: split big file in multiple pieces and rebuild on Windows2000 system?
Here are two examples of splitting the same file sized at 278761580 bytes.
split -b 56m source_file dest_file
split -b 55752k source_file dest_file
Here is the ftp example:
cd source directory
ftp
user
password
bin
mput *
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2003 05:08 AM
04-09-2003 05:08 AM
Re: Howto: split big file in multiple pieces and rebuild on Windows2000 system?
Thanks for all your replies. The tric with split and copy /B worked. Bsplit is not an option because it cannot handle those big files, but the split command can.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2003 11:50 PM
04-10-2003 11:50 PM
Re: Howto: split big file in multiple pieces and rebuild on Windows2000 system?
On windows2000 i've never tried, but on older versions the command
copy /b chunk1+chunk2+chunk3+.... destfile
used to work correctly.
A few things: notice the "+" signs between the chunk names, the /b switch (used to tell to copy to treat files as binary) and, last but not least, mind the order.
Bye,
Alberto