What filesystem allows transferring files between Linux and OS X?












3














I have a file that is 12 GB that I am trying to copy from a MacBook Air to a Debian computer, using a USB. I tried formatting the USB in many different ways, such as NTFS, FAT32, OS X Journalizing but either the MacBook Air complained it couldn't copy such a large file, it only had read-only access, or when I formatted it from the MacBook, the Linux computer couldn't recognize the file system.



Is there a file system type recognized by both systems that can be used to transfer large files?










share|improve this question


















  • 1




    See askubuntu.com/q/332315/473234
    – roaima
    2 days ago










  • @MichaelHomer NTFS support is readonly on MacOS, although there are simple and cheap (or free) tools to provide read-write access.
    – peterh
    2 days ago


















3














I have a file that is 12 GB that I am trying to copy from a MacBook Air to a Debian computer, using a USB. I tried formatting the USB in many different ways, such as NTFS, FAT32, OS X Journalizing but either the MacBook Air complained it couldn't copy such a large file, it only had read-only access, or when I formatted it from the MacBook, the Linux computer couldn't recognize the file system.



Is there a file system type recognized by both systems that can be used to transfer large files?










share|improve this question


















  • 1




    See askubuntu.com/q/332315/473234
    – roaima
    2 days ago










  • @MichaelHomer NTFS support is readonly on MacOS, although there are simple and cheap (or free) tools to provide read-write access.
    – peterh
    2 days ago
















3












3








3


1





I have a file that is 12 GB that I am trying to copy from a MacBook Air to a Debian computer, using a USB. I tried formatting the USB in many different ways, such as NTFS, FAT32, OS X Journalizing but either the MacBook Air complained it couldn't copy such a large file, it only had read-only access, or when I formatted it from the MacBook, the Linux computer couldn't recognize the file system.



Is there a file system type recognized by both systems that can be used to transfer large files?










share|improve this question













I have a file that is 12 GB that I am trying to copy from a MacBook Air to a Debian computer, using a USB. I tried formatting the USB in many different ways, such as NTFS, FAT32, OS X Journalizing but either the MacBook Air complained it couldn't copy such a large file, it only had read-only access, or when I formatted it from the MacBook, the Linux computer couldn't recognize the file system.



Is there a file system type recognized by both systems that can be used to transfer large files?







filesystems usb large-files






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 2 days ago









Village

1,82073256




1,82073256








  • 1




    See askubuntu.com/q/332315/473234
    – roaima
    2 days ago










  • @MichaelHomer NTFS support is readonly on MacOS, although there are simple and cheap (or free) tools to provide read-write access.
    – peterh
    2 days ago
















  • 1




    See askubuntu.com/q/332315/473234
    – roaima
    2 days ago










  • @MichaelHomer NTFS support is readonly on MacOS, although there are simple and cheap (or free) tools to provide read-write access.
    – peterh
    2 days ago










1




1




See askubuntu.com/q/332315/473234
– roaima
2 days ago




See askubuntu.com/q/332315/473234
– roaima
2 days ago












@MichaelHomer NTFS support is readonly on MacOS, although there are simple and cheap (or free) tools to provide read-write access.
– peterh
2 days ago






@MichaelHomer NTFS support is readonly on MacOS, although there are simple and cheap (or free) tools to provide read-write access.
– peterh
2 days ago












1 Answer
1






active

oldest

votes


















6















  • hfs+ can handle large files, and it has write support by Linux.

  • Although MacOS has only readonly NTFS support, there are third-party tool for read-write operations with it.

  • You can use split to split a large file into smaller ones. You can later unsplit them with cat. To have a better command line than the MacOS gives you, you can use brew.

  • There is nothing what would avoid you to partition an usb drive, except that Windows won't see the extra partitions on hilarious reasons. However, fortunately your current setup ignores the windows trouble.






share|improve this answer

















  • 1




    exfat-fuse should be viable in that direction too.
    – Michael Homer
    2 days ago










  • +1 for split-cat combo
    – Ritajit Kundu
    2 days ago











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f491036%2fwhat-filesystem-allows-transferring-files-between-linux-and-os-x%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









6















  • hfs+ can handle large files, and it has write support by Linux.

  • Although MacOS has only readonly NTFS support, there are third-party tool for read-write operations with it.

  • You can use split to split a large file into smaller ones. You can later unsplit them with cat. To have a better command line than the MacOS gives you, you can use brew.

  • There is nothing what would avoid you to partition an usb drive, except that Windows won't see the extra partitions on hilarious reasons. However, fortunately your current setup ignores the windows trouble.






share|improve this answer

















  • 1




    exfat-fuse should be viable in that direction too.
    – Michael Homer
    2 days ago










  • +1 for split-cat combo
    – Ritajit Kundu
    2 days ago
















6















  • hfs+ can handle large files, and it has write support by Linux.

  • Although MacOS has only readonly NTFS support, there are third-party tool for read-write operations with it.

  • You can use split to split a large file into smaller ones. You can later unsplit them with cat. To have a better command line than the MacOS gives you, you can use brew.

  • There is nothing what would avoid you to partition an usb drive, except that Windows won't see the extra partitions on hilarious reasons. However, fortunately your current setup ignores the windows trouble.






share|improve this answer

















  • 1




    exfat-fuse should be viable in that direction too.
    – Michael Homer
    2 days ago










  • +1 for split-cat combo
    – Ritajit Kundu
    2 days ago














6












6








6







  • hfs+ can handle large files, and it has write support by Linux.

  • Although MacOS has only readonly NTFS support, there are third-party tool for read-write operations with it.

  • You can use split to split a large file into smaller ones. You can later unsplit them with cat. To have a better command line than the MacOS gives you, you can use brew.

  • There is nothing what would avoid you to partition an usb drive, except that Windows won't see the extra partitions on hilarious reasons. However, fortunately your current setup ignores the windows trouble.






share|improve this answer













  • hfs+ can handle large files, and it has write support by Linux.

  • Although MacOS has only readonly NTFS support, there are third-party tool for read-write operations with it.

  • You can use split to split a large file into smaller ones. You can later unsplit them with cat. To have a better command line than the MacOS gives you, you can use brew.

  • There is nothing what would avoid you to partition an usb drive, except that Windows won't see the extra partitions on hilarious reasons. However, fortunately your current setup ignores the windows trouble.







share|improve this answer












share|improve this answer



share|improve this answer










answered 2 days ago









peterh

4,24592957




4,24592957








  • 1




    exfat-fuse should be viable in that direction too.
    – Michael Homer
    2 days ago










  • +1 for split-cat combo
    – Ritajit Kundu
    2 days ago














  • 1




    exfat-fuse should be viable in that direction too.
    – Michael Homer
    2 days ago










  • +1 for split-cat combo
    – Ritajit Kundu
    2 days ago








1




1




exfat-fuse should be viable in that direction too.
– Michael Homer
2 days ago




exfat-fuse should be viable in that direction too.
– Michael Homer
2 days ago












+1 for split-cat combo
– Ritajit Kundu
2 days ago




+1 for split-cat combo
– Ritajit Kundu
2 days ago


















draft saved

draft discarded




















































Thanks for contributing an answer to Unix & Linux Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f491036%2fwhat-filesystem-allows-transferring-files-between-linux-and-os-x%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

If I really need a card on my start hand, how many mulligans make sense? [duplicate]

Alcedinidae

Can an atomic nucleus contain both particles and antiparticles? [duplicate]