How to access the Ubuntu filesystem in Windows 10?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I am running Ubuntu 18.04 as a Windows app in Windows 10. As far as I understand, this uses Windows Subsystem for Linux
to run linux processes.
From the Ubuntu terminal I am able to access the Windows C:
drive:
$ ls /mnt/c
How can I access the Ubuntu drive from windows applications, from example from the Explorer?
linux windows-10 ubuntu windows-subsystem-for-linux
add a comment |
I am running Ubuntu 18.04 as a Windows app in Windows 10. As far as I understand, this uses Windows Subsystem for Linux
to run linux processes.
From the Ubuntu terminal I am able to access the Windows C:
drive:
$ ls /mnt/c
How can I access the Ubuntu drive from windows applications, from example from the Explorer?
linux windows-10 ubuntu windows-subsystem-for-linux
add a comment |
I am running Ubuntu 18.04 as a Windows app in Windows 10. As far as I understand, this uses Windows Subsystem for Linux
to run linux processes.
From the Ubuntu terminal I am able to access the Windows C:
drive:
$ ls /mnt/c
How can I access the Ubuntu drive from windows applications, from example from the Explorer?
linux windows-10 ubuntu windows-subsystem-for-linux
I am running Ubuntu 18.04 as a Windows app in Windows 10. As far as I understand, this uses Windows Subsystem for Linux
to run linux processes.
From the Ubuntu terminal I am able to access the Windows C:
drive:
$ ls /mnt/c
How can I access the Ubuntu drive from windows applications, from example from the Explorer?
linux windows-10 ubuntu windows-subsystem-for-linux
linux windows-10 ubuntu windows-subsystem-for-linux
asked Jan 30 at 13:57
dangonfastdangonfast
1,11031429
1,11031429
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
Although it is indeed possible to access the files as Muhammed mentioned via C:UsersNAMEAppDataLocalPackagesCanonicalGroupLimited.UbuntuonWindows_*LocalStaterootfs
, Microsoft strongly recommends against it in https://blogs.msdn.microsoft.com/commandline/2016/11/17/do-not-change-linux-files-using-windows-apps-and-tools/:
DO NOT, under ANY circumstances, access, create, and/or modify files in your distro's filesystem using Windows apps, tools, scripts, consoles, etc.
Opening files using some Windows tools may read-lock the opened files and/or folders, preventing updates to file contents and/or metadata, essentially resulting in corrupted files/folders.
Presumably Windows does something hokey to fake proper file permissions within its linux filesystem, which will break if edited directly with Windows apps.
– Dan
Feb 22 at 11:02
add a comment |
I have not used the Ubuntu installer for Windows 10 yet but there is a great article on how you can access the Ubuntu subsystem via Windows Explorer: https://www.howtogeek.com/261383/how-to-access-your-ubuntu-bash-files-in-windows-and-your-windows-system-drive-in-bash/
Hope this helps.
Kind Regards,
Mo
Welcome to Super User! Please quote the essential parts of the answer from the reference link(s), as the answer can become invalid if the linked page(s) change.
– DavidPostill♦
Jan 30 at 14:17
add a comment |
There are driver apps available, but I would advise much testing before you use them in a production environment. I say this because I have had three ext4 filesystems corrupted severely by the ext2fsd driver in Windows 10 in a dual boot system when I used it to write into ext4 partitions, and their website cautions against ext4 use now.
Linux Reader from Diskinternals is a read-only driver, which reduces risk.
Ext2read also works with ext3 and ext4 as do the others. All the above are Open Source and free-as-in-beer.
Ext2 IFS is freeware, not Open Source, and described as working with ext2 and ext3 with some ext4 features.
A commercial product which says it supports most ext4 features ( excluding bigalloc, journal_dev, meta_bg, and inline_data ) is Paragon Software's Linux File Systems for Windows.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2fsuperuser.com%2fquestions%2f1400092%2fhow-to-access-the-ubuntu-filesystem-in-windows-10%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Although it is indeed possible to access the files as Muhammed mentioned via C:UsersNAMEAppDataLocalPackagesCanonicalGroupLimited.UbuntuonWindows_*LocalStaterootfs
, Microsoft strongly recommends against it in https://blogs.msdn.microsoft.com/commandline/2016/11/17/do-not-change-linux-files-using-windows-apps-and-tools/:
DO NOT, under ANY circumstances, access, create, and/or modify files in your distro's filesystem using Windows apps, tools, scripts, consoles, etc.
Opening files using some Windows tools may read-lock the opened files and/or folders, preventing updates to file contents and/or metadata, essentially resulting in corrupted files/folders.
Presumably Windows does something hokey to fake proper file permissions within its linux filesystem, which will break if edited directly with Windows apps.
– Dan
Feb 22 at 11:02
add a comment |
Although it is indeed possible to access the files as Muhammed mentioned via C:UsersNAMEAppDataLocalPackagesCanonicalGroupLimited.UbuntuonWindows_*LocalStaterootfs
, Microsoft strongly recommends against it in https://blogs.msdn.microsoft.com/commandline/2016/11/17/do-not-change-linux-files-using-windows-apps-and-tools/:
DO NOT, under ANY circumstances, access, create, and/or modify files in your distro's filesystem using Windows apps, tools, scripts, consoles, etc.
Opening files using some Windows tools may read-lock the opened files and/or folders, preventing updates to file contents and/or metadata, essentially resulting in corrupted files/folders.
Presumably Windows does something hokey to fake proper file permissions within its linux filesystem, which will break if edited directly with Windows apps.
– Dan
Feb 22 at 11:02
add a comment |
Although it is indeed possible to access the files as Muhammed mentioned via C:UsersNAMEAppDataLocalPackagesCanonicalGroupLimited.UbuntuonWindows_*LocalStaterootfs
, Microsoft strongly recommends against it in https://blogs.msdn.microsoft.com/commandline/2016/11/17/do-not-change-linux-files-using-windows-apps-and-tools/:
DO NOT, under ANY circumstances, access, create, and/or modify files in your distro's filesystem using Windows apps, tools, scripts, consoles, etc.
Opening files using some Windows tools may read-lock the opened files and/or folders, preventing updates to file contents and/or metadata, essentially resulting in corrupted files/folders.
Although it is indeed possible to access the files as Muhammed mentioned via C:UsersNAMEAppDataLocalPackagesCanonicalGroupLimited.UbuntuonWindows_*LocalStaterootfs
, Microsoft strongly recommends against it in https://blogs.msdn.microsoft.com/commandline/2016/11/17/do-not-change-linux-files-using-windows-apps-and-tools/:
DO NOT, under ANY circumstances, access, create, and/or modify files in your distro's filesystem using Windows apps, tools, scripts, consoles, etc.
Opening files using some Windows tools may read-lock the opened files and/or folders, preventing updates to file contents and/or metadata, essentially resulting in corrupted files/folders.
edited Jan 30 at 22:47
fixer1234
19.6k145083
19.6k145083
answered Jan 30 at 14:39
YHoffmanYHoffman
1314
1314
Presumably Windows does something hokey to fake proper file permissions within its linux filesystem, which will break if edited directly with Windows apps.
– Dan
Feb 22 at 11:02
add a comment |
Presumably Windows does something hokey to fake proper file permissions within its linux filesystem, which will break if edited directly with Windows apps.
– Dan
Feb 22 at 11:02
Presumably Windows does something hokey to fake proper file permissions within its linux filesystem, which will break if edited directly with Windows apps.
– Dan
Feb 22 at 11:02
Presumably Windows does something hokey to fake proper file permissions within its linux filesystem, which will break if edited directly with Windows apps.
– Dan
Feb 22 at 11:02
add a comment |
I have not used the Ubuntu installer for Windows 10 yet but there is a great article on how you can access the Ubuntu subsystem via Windows Explorer: https://www.howtogeek.com/261383/how-to-access-your-ubuntu-bash-files-in-windows-and-your-windows-system-drive-in-bash/
Hope this helps.
Kind Regards,
Mo
Welcome to Super User! Please quote the essential parts of the answer from the reference link(s), as the answer can become invalid if the linked page(s) change.
– DavidPostill♦
Jan 30 at 14:17
add a comment |
I have not used the Ubuntu installer for Windows 10 yet but there is a great article on how you can access the Ubuntu subsystem via Windows Explorer: https://www.howtogeek.com/261383/how-to-access-your-ubuntu-bash-files-in-windows-and-your-windows-system-drive-in-bash/
Hope this helps.
Kind Regards,
Mo
Welcome to Super User! Please quote the essential parts of the answer from the reference link(s), as the answer can become invalid if the linked page(s) change.
– DavidPostill♦
Jan 30 at 14:17
add a comment |
I have not used the Ubuntu installer for Windows 10 yet but there is a great article on how you can access the Ubuntu subsystem via Windows Explorer: https://www.howtogeek.com/261383/how-to-access-your-ubuntu-bash-files-in-windows-and-your-windows-system-drive-in-bash/
Hope this helps.
Kind Regards,
Mo
I have not used the Ubuntu installer for Windows 10 yet but there is a great article on how you can access the Ubuntu subsystem via Windows Explorer: https://www.howtogeek.com/261383/how-to-access-your-ubuntu-bash-files-in-windows-and-your-windows-system-drive-in-bash/
Hope this helps.
Kind Regards,
Mo
answered Jan 30 at 14:05
Muhammed_KhanMuhammed_Khan
161
161
Welcome to Super User! Please quote the essential parts of the answer from the reference link(s), as the answer can become invalid if the linked page(s) change.
– DavidPostill♦
Jan 30 at 14:17
add a comment |
Welcome to Super User! Please quote the essential parts of the answer from the reference link(s), as the answer can become invalid if the linked page(s) change.
– DavidPostill♦
Jan 30 at 14:17
Welcome to Super User! Please quote the essential parts of the answer from the reference link(s), as the answer can become invalid if the linked page(s) change.
– DavidPostill♦
Jan 30 at 14:17
Welcome to Super User! Please quote the essential parts of the answer from the reference link(s), as the answer can become invalid if the linked page(s) change.
– DavidPostill♦
Jan 30 at 14:17
add a comment |
There are driver apps available, but I would advise much testing before you use them in a production environment. I say this because I have had three ext4 filesystems corrupted severely by the ext2fsd driver in Windows 10 in a dual boot system when I used it to write into ext4 partitions, and their website cautions against ext4 use now.
Linux Reader from Diskinternals is a read-only driver, which reduces risk.
Ext2read also works with ext3 and ext4 as do the others. All the above are Open Source and free-as-in-beer.
Ext2 IFS is freeware, not Open Source, and described as working with ext2 and ext3 with some ext4 features.
A commercial product which says it supports most ext4 features ( excluding bigalloc, journal_dev, meta_bg, and inline_data ) is Paragon Software's Linux File Systems for Windows.
add a comment |
There are driver apps available, but I would advise much testing before you use them in a production environment. I say this because I have had three ext4 filesystems corrupted severely by the ext2fsd driver in Windows 10 in a dual boot system when I used it to write into ext4 partitions, and their website cautions against ext4 use now.
Linux Reader from Diskinternals is a read-only driver, which reduces risk.
Ext2read also works with ext3 and ext4 as do the others. All the above are Open Source and free-as-in-beer.
Ext2 IFS is freeware, not Open Source, and described as working with ext2 and ext3 with some ext4 features.
A commercial product which says it supports most ext4 features ( excluding bigalloc, journal_dev, meta_bg, and inline_data ) is Paragon Software's Linux File Systems for Windows.
add a comment |
There are driver apps available, but I would advise much testing before you use them in a production environment. I say this because I have had three ext4 filesystems corrupted severely by the ext2fsd driver in Windows 10 in a dual boot system when I used it to write into ext4 partitions, and their website cautions against ext4 use now.
Linux Reader from Diskinternals is a read-only driver, which reduces risk.
Ext2read also works with ext3 and ext4 as do the others. All the above are Open Source and free-as-in-beer.
Ext2 IFS is freeware, not Open Source, and described as working with ext2 and ext3 with some ext4 features.
A commercial product which says it supports most ext4 features ( excluding bigalloc, journal_dev, meta_bg, and inline_data ) is Paragon Software's Linux File Systems for Windows.
There are driver apps available, but I would advise much testing before you use them in a production environment. I say this because I have had three ext4 filesystems corrupted severely by the ext2fsd driver in Windows 10 in a dual boot system when I used it to write into ext4 partitions, and their website cautions against ext4 use now.
Linux Reader from Diskinternals is a read-only driver, which reduces risk.
Ext2read also works with ext3 and ext4 as do the others. All the above are Open Source and free-as-in-beer.
Ext2 IFS is freeware, not Open Source, and described as working with ext2 and ext3 with some ext4 features.
A commercial product which says it supports most ext4 features ( excluding bigalloc, journal_dev, meta_bg, and inline_data ) is Paragon Software's Linux File Systems for Windows.
answered Jan 30 at 17:46
K7AAYK7AAY
3,91921638
3,91921638
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1400092%2fhow-to-access-the-ubuntu-filesystem-in-windows-10%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