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
  •  


Fanxiang 4TB 2TB 1TB SSD 550MB/s 2.5'' SATA III Internal Solid State Drive lot picture

Fanxiang 4TB 2TB 1TB SSD 550MB/s 2.5'' SATA III Internal Solid State Drive lot

$219.99



4TB Ssd 870 Internal Solid State Drive Hard Disk 2.5 Inch Sata Iii 2TB Ssd picture

4TB Ssd 870 Internal Solid State Drive Hard Disk 2.5 Inch Sata Iii 2TB Ssd

$34.99



Fanxiang M.2 SATA SSD 2TB 1TB 512GB 256GB SSD Internal M2 Solid State Drive Lot picture

Fanxiang M.2 SATA SSD 2TB 1TB 512GB 256GB SSD Internal M2 Solid State Drive Lot

$109.99



4TB Ssd 870evo Internal Solid State Drive Hard Disk 2.5 Inch For Laptop SSD picture

4TB Ssd 870evo Internal Solid State Drive Hard Disk 2.5 Inch For Laptop SSD

$45.17



Patriot P210 256GB SSD 2.5

Patriot P210 256GB SSD 2.5" SATA III 6GB/s Internal Solid State Drive For PC/MAC

$17.99



Patriot P210 128GB 256GB 512GB 1TB 2TB 2.5

Patriot P210 128GB 256GB 512GB 1TB 2TB 2.5" SATA 3 6GB/s Internal SSD PC/MAC Lot

$19.99



2 Pack SanDisk Z400s 2.5

2 Pack SanDisk Z400s 2.5" 128GB SSD SATA III Internal Solid State Drive Memory

$18.79



128/256/512GB 1TB NVMe M.2 SSD, Misc Brands and Models, Tested and Cleaned picture

128/256/512GB 1TB NVMe M.2 SSD, Misc Brands and Models, Tested and Cleaned

$13.99



Netac 1TB 2TB 512GB Internal SSD 2.5'' SATA III 6Gb/s Solid State Drive lot picture

Netac 1TB 2TB 512GB Internal SSD 2.5'' SATA III 6Gb/s Solid State Drive lot

$107.99



4TB SSD 870EVO Internal Solid State Drive Hard Disk 2.5 Inch Sata SSD For Laptop picture

4TB SSD 870EVO Internal Solid State Drive Hard Disk 2.5 Inch Sata SSD For Laptop

$59.99