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
  •  


ASUS H110M-R Motherboard Intel 6th/7th Gen LGA1151 DDR4 Micro-ATX i/o shield picture

ASUS H110M-R Motherboard Intel 6th/7th Gen LGA1151 DDR4 Micro-ATX i/o shield

$42.00



***NEW*** BCM RX67Q Gaming Motherboard | Intel Q67 2nd/3rd Gen. | LGA1155 | DDR3 picture

***NEW*** BCM RX67Q Gaming Motherboard | Intel Q67 2nd/3rd Gen. | LGA1155 | DDR3

$29.77



MSI B450M-A PRO MAX II AM4 AMD B450 SATA 6Gb/s Micro ATX Motherboard picture

MSI B450M-A PRO MAX II AM4 AMD B450 SATA 6Gb/s Micro ATX Motherboard

$68.99



MSI H81I LGA1150 MINI-ITX DDR3 Desktop Motherboard With I/O Shield  picture

MSI H81I LGA1150 MINI-ITX DDR3 Desktop Motherboard With I/O Shield

$34.99



GIGABYTE B560M DS3H AC LGA1200 Intel B560 SATA 6Gb/s Micro ATX Intel Motherboard picture

GIGABYTE B560M DS3H AC LGA1200 Intel B560 SATA 6Gb/s Micro ATX Intel Motherboard

$64.99



Gigabyte AMD B550 UD AC Gaming Motherboard - AMD B550 Chipset - AM4 Socket - AMD picture

Gigabyte AMD B550 UD AC Gaming Motherboard - AMD B550 Chipset - AM4 Socket - AMD

$89.99



Micro ATX Desktop Motherboard ASUS H110M-C LGA 1151 picture

Micro ATX Desktop Motherboard ASUS H110M-C LGA 1151

$31.95



Asus TUF B365M-PLUS GAMING Motherboard LGA 1151 Intel B365 DDR4 M.2 Micro ATX picture

Asus TUF B365M-PLUS GAMING Motherboard LGA 1151 Intel B365 DDR4 M.2 Micro ATX

$65.00



GIGABYTE MB10-Datto Motherboard Xeon D-1521- SR2DF 2.40 GHz- Open Box picture

GIGABYTE MB10-Datto Motherboard Xeon D-1521- SR2DF 2.40 GHz- Open Box

$112.00



BTC-S37 Mining Motherboard Kit /w SSD & Ram Preinstalled picture

BTC-S37 Mining Motherboard Kit /w SSD & Ram Preinstalled

$59.99