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
  •  


1TB/2TB USB 3.0 Flash Drive Thumb U Disk Memory Stick Pen PC Laptop Storage lot picture

1TB/2TB USB 3.0 Flash Drive Thumb U Disk Memory Stick Pen PC Laptop Storage lot

$80.39



Type C USB 3.0 Flash Drive Thumb Drive Memory Stick for PC Laptop 1TB 2TB lot picture

Type C USB 3.0 Flash Drive Thumb Drive Memory Stick for PC Laptop 1TB 2TB lot

$73.29



Seagate ST1000VM002 1TB 64MB SATA6Gb/s 3.5

Seagate ST1000VM002 1TB 64MB SATA6Gb/s 3.5" (Low Power) Hard Drive -PC, CCTV DVR

$24.99



Fanxiang SSD 4TB 2TB 1TB PS5 SSD M.2 NVME SSD 7300MBS PCIe 4.0 Solid State Drive picture

Fanxiang SSD 4TB 2TB 1TB PS5 SSD M.2 NVME SSD 7300MBS PCIe 4.0 Solid State Drive

$269.99



CISCO A03-D1TBSATA 1TB 7.2K 6G 2.5INCH SATA HDD picture

CISCO A03-D1TBSATA 1TB 7.2K 6G 2.5INCH SATA HDD

$9.00



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



1TB Portable External 2.5 inch sata (Hard Drive)(random color delievery) picture

1TB Portable External 2.5 inch sata (Hard Drive)(random color delievery)

$9.99



Samsung - Geek Squad Certified Refurbished 870 EVO 1TB SATA Solid State Drive picture

Samsung - Geek Squad Certified Refurbished 870 EVO 1TB SATA Solid State Drive

$67.99



2TB USB 3.0 Flash Drive Thumb U Disk Memory Stick Pen PC Laptop Storage US picture

2TB USB 3.0 Flash Drive Thumb U Disk Memory Stick Pen PC Laptop Storage US

$41.69



512GB SSD 2.5

512GB SSD 2.5" SATA - Windows 10 or 11 Preinstalled - Laptop or Desktop Drive

$85.99