Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: Splitting large files into external FAT32 HD

  1. #1
    Junior Member
    Join Date
    Sep 2004
    Posts
    8

    Splitting large files into external FAT32 HD

    Hello people:
    I am new to Linux. I posted the message "Saving a large container from a crashed WinXP to external HD". My problem was that the external HD connected thru the USB port was NTFS and i could not make Captive NTFS accept the container. I changed the filesystem in the external HD using QTParted to FAT32. Then i susccessfully copied one 250 mb container simply using the right-click copy and paste. However, when i try the same strategy with the large 4 GB container the process starts fine but then at about 2 GB the writing onto the external HD is stopped and i receive a message like "Process died unexpectedly" (it happened twice) I thought i could split and rejoin the 4 GB container using the split and cat commands but i do not have enough disk space in the local partition (hda1). I do have space in the external HD (sda1 partition) so my question is if there is any simple modification of the split command

    split -b 1000m filename filename

    to put the split pieces into sda1 rather than hda1. I also want to join the pieces in the sda1 partition before connecting the external HD to another computer that will receive the container.

    cat filenamead >> filenameaa

    So how do i identify the sda1 partition in the cat command?
    Thanks for your help.
    Tito

  2. #2
    Senior Member registered user
    Join Date
    Feb 2004
    Posts
    949

    Re: Splitting large files into external FAT32 HD

    Quote Originally Posted by Tito
    Hello people:
    I am new to Linux. I posted the message "Saving a large container from a crashed WinXP to external HD". My problem was that the external HD connected thru the USB port was NTFS and i could not make Captive NTFS accept the container. I changed the filesystem in the external HD using QTParted to FAT32. Then i susccessfully copied one 250 mb container simply using the right-click copy and paste. However, when i try the same strategy with the large 4 GB container the process starts fine but then at about 2 GB the writing onto the external HD is stopped and i receive a message like "Process died unexpectedly" (it happened twice) I thought i could split and rejoin the 4 GB container using the split and cat commands but i do not have enough disk space in the local partition (hda1). I do have space in the external HD (sda1 partition) so my question is if there is any simple modification of the split command

    split -b 1000m filename filename

    to put the split pieces into sda1 rather than hda1. I also want to join the pieces in the sda1 partition before connecting the external HD to another computer that will receive the container.

    cat filenamead >> filenameaa

    So how do i identify the sda1 partition in the cat command?
    Thanks for your help.
    Tito
    With split, split -b 1000m filename /mnt/sda1/filename

    basicly the same for cat.

  3. #3
    Junior Member
    Join Date
    Sep 2004
    Posts
    8

    Re: Splitting large files into external FAT32 HD

    Quote Originally Posted by firebyrd10
    Quote Originally Posted by Tito
    Hello people:
    [snip] I do have space in the external HD (sda1 partition) so my question is if there is any simple modification of the split command

    split -b 1000m filename filename

    to put the split pieces into sda1 rather than hda1. I also want to join the pieces in the sda1 partition before connecting the external HD to another computer that will receive the container.

    cat filenamead >> filenameaa

    So how do i identify the sda1 partition in the cat command?
    Thanks for your help.
    Tito
    With split, split -b 1000m filename /mnt/sda1/filename

    basicly the same for cat.
    Thanks. In the external HD i have a little less than 8 GB so to rejoin
    the parts into the whole container, which is 4GB, i need to delete the parts as they are being assembled. How do i modify the cat command to do just that?
    Tito
    joined

  4. #4
    Senior Member registered user
    Join Date
    Jan 2003
    Location
    Southern Indiana
    Posts
    110
    I am not absolutely certain, but my recollection is there is a 2GB max on fat32 file sizes. You won't be able to cat the pieces together except on a ext2 or a NTFS drive. I went a few rounds with this issue a year or two ago and ended up with the large file on an ext2 file and a driver to mount the ext2 file in Win2K. I was trying to get a large drive image burned to a DVD.

  5. #5
    Junior Member
    Join Date
    Sep 2004
    Posts
    8
    Quote Originally Posted by rcook
    I am not absolutely certain, but my recollection is there is a 2GB max on fat32 file sizes. You won't be able to cat the pieces together except on a ext2 or a NTFS drive. I went a few rounds with this issue a year or two ago and ended up with the large file on an ext2 file and a driver to mount the ext2 file in Win2K. I was trying to get a large drive image burned to a DVD.
    You seem to be correct sir. I made a little research and also read messages in LinuxQuestions.org and apparently there is a 2GB limit in FAT32 (though there seems to be a patch).
    Apart from the road you took, maybe i can copy the parts into WinXP and then re-assemble them using some MS-DOS command?
    Tito

  6. #6
    Junior Member
    Join Date
    Sep 2004
    Posts
    8

    Re: Splitting large files into external FAT32 HD

    [snip]

    So how do i identify the sda1 partition in the cat command?
    Thanks for your help.
    Tito[/quote]

    With split, split -b 1000m filename /mnt/sda1/filename

    basicly the same for cat.[/quote]

    In the Root Shell i wrote:

    split -b 1000m mnt/hda1/filename.xxx /mnt/sda1/filename

    and the system responded

    split: mnt/hda1/filename.xxx: No such file or directory

    However, i know it is there, i can see it with Konqueror. What could
    be wrong with my command?
    Cheers
    Tito

  7. #7
    Senior Member registered user
    Join Date
    Jan 2003
    Location
    Southern Indiana
    Posts
    110
    use the command line copy command. I think

    c:\> copy /b part1+ /b part2 joinedFile

    Check with the help to see proper/correct syntax.

    copy /?

  8. #8
    Junior Member
    Join Date
    Sep 2004
    Posts
    8
    Quote Originally Posted by rcook
    use the command line copy command. I think

    c:\> copy /b part1+ /b part2 joinedFile

    Check with the help to see proper/correct syntax.

    copy /?
    Thanks. In fact the split command did work so please disregard my previous post. I moved the parts from the external FAT32 HD into a working WinXP machine and joined them with
    copy \b partaa+partab+...+partae joined.xxx
    Now i have to open the container to see that everything is fine inside.
    It looks like i have completed my rescue mission.
    Thanks to Koppix and to you guys!

    Next mission: To reinstall WinXP in the Compaq machine and also Knoppix-Debian to have a dual boot system!

    Tito

  9. #9
    Senior Member registered user
    Join Date
    Feb 2004
    Posts
    949
    There is a 2gb limit on Fat32 with knoppix, though my winxp can go up to 4gb.

  10. #10
    Senior Member registered user
    Join Date
    Jan 2003
    Location
    Southern Indiana
    Posts
    110
    Don't keep us in suspense. Did it work?

Page 1 of 2 12 LastLast

Similar Threads

  1. Stalling when transferring large files to usb 2.0 drive
    By kjjaeger in forum Hardware & Booting
    Replies: 1
    Last Post: 09-01-2005, 07:37 PM
  2. Large extremely important NTFS files...
    By gurdian in forum MS Windows & New to Linux
    Replies: 15
    Last Post: 11-26-2004, 06:39 AM
  3. Saving a large container from crashed WinXP to external HD
    By Tito in forum MS Windows & New to Linux
    Replies: 3
    Last Post: 11-06-2004, 06:13 PM
  4. Splitting large files?
    By ph28205 in forum MS Windows & New to Linux
    Replies: 9
    Last Post: 08-13-2004, 02:37 PM
  5. How to write files onto FAT32 partition?
    By margaritaville in forum General Support
    Replies: 10
    Last Post: 01-29-2004, 04:09 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


CORSAIR Vengeance LPX 32GB 2x16GB DDR4-2666 PC4-21300 288Pin 2666Mhz Memory Ram picture

CORSAIR Vengeance LPX 32GB 2x16GB DDR4-2666 PC4-21300 288Pin 2666Mhz Memory Ram

$99.99



A-Tech 8GB DDR3 1600 PC3-12800 Laptop SODIMM 204-Pin Memory RAM PC3L DDR3L 1x 8G picture

A-Tech 8GB DDR3 1600 PC3-12800 Laptop SODIMM 204-Pin Memory RAM PC3L DDR3L 1x 8G

$13.99



HyperX FURY DDR3 8GB 16GB 32GB 1600 MHz PC3-12800 Desktop RAM Memory DIMM 240pin picture

HyperX FURY DDR3 8GB 16GB 32GB 1600 MHz PC3-12800 Desktop RAM Memory DIMM 240pin

$12.90



Crucial DDR3L 16GB 1600 2x 8GB PC3-12800 Laptop SODIMM Memory RAM PC3 16G DDR3 picture

Crucial DDR3L 16GB 1600 2x 8GB PC3-12800 Laptop SODIMM Memory RAM PC3 16G DDR3

$21.50



Crucial 16GB (2x 8GB) Kit DDR3L 1600MHz PC3-12800 UDIMM Desktop 240-Pin CL11 RAM picture

Crucial 16GB (2x 8GB) Kit DDR3L 1600MHz PC3-12800 UDIMM Desktop 240-Pin CL11 RAM

$23.33



Lot of 2 32GB DDR4 2666 PC4-21300 SODIMM RAM Modules Mixed Brand picture

Lot of 2 32GB DDR4 2666 PC4-21300 SODIMM RAM Modules Mixed Brand

$60.00



8GB PC3L-12800S 1600MHz SODIMM DDR3 RAM | Grade A picture

8GB PC3L-12800S 1600MHz SODIMM DDR3 RAM | Grade A

$12.00



Team T-FORCE VULCAN Z 16GB (2 x 8GB) 288-Pin PC RAM DDR4 3200 (PC4 25600) Intel picture

Team T-FORCE VULCAN Z 16GB (2 x 8GB) 288-Pin PC RAM DDR4 3200 (PC4 25600) Intel

$33.99



HyperX FURY DDR4 8GB 16GB 32GB 3200MHz PC4-25600 Desktop RAM Memory DIMM 288pins picture

HyperX FURY DDR4 8GB 16GB 32GB 3200MHz PC4-25600 Desktop RAM Memory DIMM 288pins

$72.93



A-Tech 256GB 4x 64GB 4Rx4 PC4-19200 ECC Load Reduced LRDIMM Server Memory RAM picture

A-Tech 256GB 4x 64GB 4Rx4 PC4-19200 ECC Load Reduced LRDIMM Server Memory RAM

$287.96