What filesystem allows transferring files between Linux and OS X?
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
add a comment |
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
1
See askubuntu.com/q/332315/473234
– roaima
10 hours ago
@MichaelHomer NTFS support is readonly on MacOS, although there are simple and cheap (or free) tools to provide read-write access.
– peterh
10 hours ago
add a comment |
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
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
filesystems usb large-files
asked 10 hours ago
Village
1,80873256
1,80873256
1
See askubuntu.com/q/332315/473234
– roaima
10 hours ago
@MichaelHomer NTFS support is readonly on MacOS, although there are simple and cheap (or free) tools to provide read-write access.
– peterh
10 hours ago
add a comment |
1
See askubuntu.com/q/332315/473234
– roaima
10 hours ago
@MichaelHomer NTFS support is readonly on MacOS, although there are simple and cheap (or free) tools to provide read-write access.
– peterh
10 hours ago
1
1
See askubuntu.com/q/332315/473234
– roaima
10 hours ago
See askubuntu.com/q/332315/473234
– roaima
10 hours ago
@MichaelHomer NTFS support is readonly on MacOS, although there are simple and cheap (or free) tools to provide read-write access.
– peterh
10 hours ago
@MichaelHomer NTFS support is readonly on MacOS, although there are simple and cheap (or free) tools to provide read-write access.
– peterh
10 hours ago
add a comment |
1 Answer
1
active
oldest
votes
- 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.
1
exfat-fuse should be viable in that direction too.
– Michael Homer
9 hours ago
+1 for split-cat combo
– Ritajit Kundu
3 hours ago
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
- 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.
1
exfat-fuse should be viable in that direction too.
– Michael Homer
9 hours ago
+1 for split-cat combo
– Ritajit Kundu
3 hours ago
add a comment |
- 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.
1
exfat-fuse should be viable in that direction too.
– Michael Homer
9 hours ago
+1 for split-cat combo
– Ritajit Kundu
3 hours ago
add a comment |
- 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.
- 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.
answered 10 hours ago
peterh
4,18092957
4,18092957
1
exfat-fuse should be viable in that direction too.
– Michael Homer
9 hours ago
+1 for split-cat combo
– Ritajit Kundu
3 hours ago
add a comment |
1
exfat-fuse should be viable in that direction too.
– Michael Homer
9 hours ago
+1 for split-cat combo
– Ritajit Kundu
3 hours ago
1
1
exfat-fuse should be viable in that direction too.
– Michael Homer
9 hours ago
exfat-fuse should be viable in that direction too.
– Michael Homer
9 hours ago
+1 for split-cat combo
– Ritajit Kundu
3 hours ago
+1 for split-cat combo
– Ritajit Kundu
3 hours ago
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
1
See askubuntu.com/q/332315/473234
– roaima
10 hours ago
@MichaelHomer NTFS support is readonly on MacOS, although there are simple and cheap (or free) tools to provide read-write access.
– peterh
10 hours ago