How to create a persistent mounting point in Ubuntu app on Windows-10
On my Windows-10 machine, I have a Ubuntu app, which I use for handling files on my local PC. In order to do this, I have two mounting points (one for every harddisk, as you can see):
Ubuntu Prompt>mount
...
C: on /mnt/c type drvfs (rw,noatime,uid=1000,gid=1000)
E: on /mnt/e type drvfs (rw,noatime,uid=1000,gid=1000)
On my Windows-10 PC, I also have a network drive, as you can see in following WMIC
result:
Windows Prompt>>wmic logicaldisk get Caption, Description
Caption Description
C: Local Fixed Disk
...
E: Local Fixed Disk
H: Network Connection
...
I am capable of mounting the H:-drive as a mounting point (which makes it easily accessible from my Ubuntu app), as you can see:
Ubuntu Prompt> sudo mount H: /mnt/h -t drvfs
Ubuntu Prompt> mount
...
C: on /mnt/c type drvfs (rw,noatime,uid=1000,gid=1000)
E: on /mnt/e type drvfs (rw,noatime,uid=1000,gid=1000)
H: on /mnt/h type drvfs (rw,relatime)
However, when I close the Ubuntu app and re-open it, the H:-drive related mounting point has disappeared:
Ubuntu Prompt> mount
...
C: on /mnt/c type drvfs (rw,noatime,uid=1000,gid=1000)
E: on /mnt/e type drvfs (rw,noatime,uid=1000,gid=1000)
// No H:-drive mounting point anymore!
Is there a way I can make this mounting point persistent?
Thanks in advance
Edit after first reply
The Ubuntu app I'm using has following specifications (Windows start button, Apps and Features (System settings)):
Publisher : Canonical Group Limited
Version : 1804.2018.817.0
App : 0 bytes
Data : 0 bytes
Total usage : 0 bytes
As far as fstab
is concerned, this is the result of the find / -name "fstab" 2>/dev/null
command:
/etc/fstab
/mnt/c/cygwin/etc/fstab
/mnt/c/cygwin64/etc/fstab
/mnt/c/MinGW/msys/1.0/etc/fstab
/mnt/c/Program Files/Git/etc/fstab
/mnt/c/Program Files (x86)/Microsoft Visual Studio/2017/Professional/Common7/IDE/CommonExtensions/Microsoft/TeamFoundation/Team Explorer/Git/etc/fstab
/mnt/c/Users/DominiqueDS/AppData/Local/GitHubDesktop/app-1.1.1/resources/app/git/etc/fstab
/usr/share/doc/mount/examples/fstab
/usr/share/doc/util-linux/examples/fstab
I believe the one I need is the first one, but this one currently has following content:
Ubuntu prompt> cat fstab
LABEL=cloudimg-rootfs / ext4 defaults 0 0
This format is so different of the format within the first reply that I'm reluctant to use it (imagine I can't start up my Ubuntu app anymore, due to corrupted mounting points).
Can you confirm me that this is the right fstab
indeed and that the mentioned format is correct?
mount windows-10 network-drive
add a comment |
On my Windows-10 machine, I have a Ubuntu app, which I use for handling files on my local PC. In order to do this, I have two mounting points (one for every harddisk, as you can see):
Ubuntu Prompt>mount
...
C: on /mnt/c type drvfs (rw,noatime,uid=1000,gid=1000)
E: on /mnt/e type drvfs (rw,noatime,uid=1000,gid=1000)
On my Windows-10 PC, I also have a network drive, as you can see in following WMIC
result:
Windows Prompt>>wmic logicaldisk get Caption, Description
Caption Description
C: Local Fixed Disk
...
E: Local Fixed Disk
H: Network Connection
...
I am capable of mounting the H:-drive as a mounting point (which makes it easily accessible from my Ubuntu app), as you can see:
Ubuntu Prompt> sudo mount H: /mnt/h -t drvfs
Ubuntu Prompt> mount
...
C: on /mnt/c type drvfs (rw,noatime,uid=1000,gid=1000)
E: on /mnt/e type drvfs (rw,noatime,uid=1000,gid=1000)
H: on /mnt/h type drvfs (rw,relatime)
However, when I close the Ubuntu app and re-open it, the H:-drive related mounting point has disappeared:
Ubuntu Prompt> mount
...
C: on /mnt/c type drvfs (rw,noatime,uid=1000,gid=1000)
E: on /mnt/e type drvfs (rw,noatime,uid=1000,gid=1000)
// No H:-drive mounting point anymore!
Is there a way I can make this mounting point persistent?
Thanks in advance
Edit after first reply
The Ubuntu app I'm using has following specifications (Windows start button, Apps and Features (System settings)):
Publisher : Canonical Group Limited
Version : 1804.2018.817.0
App : 0 bytes
Data : 0 bytes
Total usage : 0 bytes
As far as fstab
is concerned, this is the result of the find / -name "fstab" 2>/dev/null
command:
/etc/fstab
/mnt/c/cygwin/etc/fstab
/mnt/c/cygwin64/etc/fstab
/mnt/c/MinGW/msys/1.0/etc/fstab
/mnt/c/Program Files/Git/etc/fstab
/mnt/c/Program Files (x86)/Microsoft Visual Studio/2017/Professional/Common7/IDE/CommonExtensions/Microsoft/TeamFoundation/Team Explorer/Git/etc/fstab
/mnt/c/Users/DominiqueDS/AppData/Local/GitHubDesktop/app-1.1.1/resources/app/git/etc/fstab
/usr/share/doc/mount/examples/fstab
/usr/share/doc/util-linux/examples/fstab
I believe the one I need is the first one, but this one currently has following content:
Ubuntu prompt> cat fstab
LABEL=cloudimg-rootfs / ext4 defaults 0 0
This format is so different of the format within the first reply that I'm reluctant to use it (imagine I can't start up my Ubuntu app anymore, due to corrupted mounting points).
Can you confirm me that this is the right fstab
indeed and that the mentioned format is correct?
mount windows-10 network-drive
add a comment |
On my Windows-10 machine, I have a Ubuntu app, which I use for handling files on my local PC. In order to do this, I have two mounting points (one for every harddisk, as you can see):
Ubuntu Prompt>mount
...
C: on /mnt/c type drvfs (rw,noatime,uid=1000,gid=1000)
E: on /mnt/e type drvfs (rw,noatime,uid=1000,gid=1000)
On my Windows-10 PC, I also have a network drive, as you can see in following WMIC
result:
Windows Prompt>>wmic logicaldisk get Caption, Description
Caption Description
C: Local Fixed Disk
...
E: Local Fixed Disk
H: Network Connection
...
I am capable of mounting the H:-drive as a mounting point (which makes it easily accessible from my Ubuntu app), as you can see:
Ubuntu Prompt> sudo mount H: /mnt/h -t drvfs
Ubuntu Prompt> mount
...
C: on /mnt/c type drvfs (rw,noatime,uid=1000,gid=1000)
E: on /mnt/e type drvfs (rw,noatime,uid=1000,gid=1000)
H: on /mnt/h type drvfs (rw,relatime)
However, when I close the Ubuntu app and re-open it, the H:-drive related mounting point has disappeared:
Ubuntu Prompt> mount
...
C: on /mnt/c type drvfs (rw,noatime,uid=1000,gid=1000)
E: on /mnt/e type drvfs (rw,noatime,uid=1000,gid=1000)
// No H:-drive mounting point anymore!
Is there a way I can make this mounting point persistent?
Thanks in advance
Edit after first reply
The Ubuntu app I'm using has following specifications (Windows start button, Apps and Features (System settings)):
Publisher : Canonical Group Limited
Version : 1804.2018.817.0
App : 0 bytes
Data : 0 bytes
Total usage : 0 bytes
As far as fstab
is concerned, this is the result of the find / -name "fstab" 2>/dev/null
command:
/etc/fstab
/mnt/c/cygwin/etc/fstab
/mnt/c/cygwin64/etc/fstab
/mnt/c/MinGW/msys/1.0/etc/fstab
/mnt/c/Program Files/Git/etc/fstab
/mnt/c/Program Files (x86)/Microsoft Visual Studio/2017/Professional/Common7/IDE/CommonExtensions/Microsoft/TeamFoundation/Team Explorer/Git/etc/fstab
/mnt/c/Users/DominiqueDS/AppData/Local/GitHubDesktop/app-1.1.1/resources/app/git/etc/fstab
/usr/share/doc/mount/examples/fstab
/usr/share/doc/util-linux/examples/fstab
I believe the one I need is the first one, but this one currently has following content:
Ubuntu prompt> cat fstab
LABEL=cloudimg-rootfs / ext4 defaults 0 0
This format is so different of the format within the first reply that I'm reluctant to use it (imagine I can't start up my Ubuntu app anymore, due to corrupted mounting points).
Can you confirm me that this is the right fstab
indeed and that the mentioned format is correct?
mount windows-10 network-drive
On my Windows-10 machine, I have a Ubuntu app, which I use for handling files on my local PC. In order to do this, I have two mounting points (one for every harddisk, as you can see):
Ubuntu Prompt>mount
...
C: on /mnt/c type drvfs (rw,noatime,uid=1000,gid=1000)
E: on /mnt/e type drvfs (rw,noatime,uid=1000,gid=1000)
On my Windows-10 PC, I also have a network drive, as you can see in following WMIC
result:
Windows Prompt>>wmic logicaldisk get Caption, Description
Caption Description
C: Local Fixed Disk
...
E: Local Fixed Disk
H: Network Connection
...
I am capable of mounting the H:-drive as a mounting point (which makes it easily accessible from my Ubuntu app), as you can see:
Ubuntu Prompt> sudo mount H: /mnt/h -t drvfs
Ubuntu Prompt> mount
...
C: on /mnt/c type drvfs (rw,noatime,uid=1000,gid=1000)
E: on /mnt/e type drvfs (rw,noatime,uid=1000,gid=1000)
H: on /mnt/h type drvfs (rw,relatime)
However, when I close the Ubuntu app and re-open it, the H:-drive related mounting point has disappeared:
Ubuntu Prompt> mount
...
C: on /mnt/c type drvfs (rw,noatime,uid=1000,gid=1000)
E: on /mnt/e type drvfs (rw,noatime,uid=1000,gid=1000)
// No H:-drive mounting point anymore!
Is there a way I can make this mounting point persistent?
Thanks in advance
Edit after first reply
The Ubuntu app I'm using has following specifications (Windows start button, Apps and Features (System settings)):
Publisher : Canonical Group Limited
Version : 1804.2018.817.0
App : 0 bytes
Data : 0 bytes
Total usage : 0 bytes
As far as fstab
is concerned, this is the result of the find / -name "fstab" 2>/dev/null
command:
/etc/fstab
/mnt/c/cygwin/etc/fstab
/mnt/c/cygwin64/etc/fstab
/mnt/c/MinGW/msys/1.0/etc/fstab
/mnt/c/Program Files/Git/etc/fstab
/mnt/c/Program Files (x86)/Microsoft Visual Studio/2017/Professional/Common7/IDE/CommonExtensions/Microsoft/TeamFoundation/Team Explorer/Git/etc/fstab
/mnt/c/Users/DominiqueDS/AppData/Local/GitHubDesktop/app-1.1.1/resources/app/git/etc/fstab
/usr/share/doc/mount/examples/fstab
/usr/share/doc/util-linux/examples/fstab
I believe the one I need is the first one, but this one currently has following content:
Ubuntu prompt> cat fstab
LABEL=cloudimg-rootfs / ext4 defaults 0 0
This format is so different of the format within the first reply that I'm reluctant to use it (imagine I can't start up my Ubuntu app anymore, due to corrupted mounting points).
Can you confirm me that this is the right fstab
indeed and that the mentioned format is correct?
mount windows-10 network-drive
mount windows-10 network-drive
edited Feb 19 at 10:43
Dominique
asked Feb 19 at 9:12
DominiqueDominique
1107
1107
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I'm assuming you're using WSL (Windows Subsystem for Linux) Ubuntu. Then to preserve your mounting points between sessions you need to edit fstab file which is located in /etc directory
In your case you should add to your fstab something similar to:
H: /mnt/h drvfs defaults 0 0
instead of H:
(your disk name) you can also use your network location \servershare
Please note, you should be using at least 17093 build of WSL in order to fstab to be processed.
Thanks for your quick reply, but I'm having some doubts, as mentioned in the edit of my question. Can you confirm that I'm working correctly?
– Dominique
Feb 19 at 10:44
@Dominique You should indeed use/etc/fstab
file, and I believe the lineH: /mnt/h drvfs ro defaults 0 0
is correct. In case something goes wrong (but it shouldn't) you can edit fstab file from windows to revert the changes:%LOCALAPPDATA%PackagesCanonicalGroupLimited.UbuntuonWindows_79rhkp1fndgscLocalStaterootfs
– Ludwik
Feb 19 at 12:02
I've done the changes, but it seems not to be working: after having restarted the app, the mounting point did not get recreated. By the way, when runninguname -a
I get following result, I believe this means I'm working with build 17134? (Linux DOMINIQUEDS 4.4.0-17134-Microsoft #523-Microsoft Mon Dec 31 17:49:00 PST 2018 x86_64 x86_64 x86_64 GNU/Linux
)
– Dominique
Feb 19 at 12:29
@Dominique - there was a mistake in the line I suggested, but I edited my answer, and it should be ok now. Can you please try it? You can mount all entries from fstab withsudo mount -a
and then check if they're mounted withmount
– Ludwik
Feb 19 at 15:54
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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%2faskubuntu.com%2fquestions%2f1119456%2fhow-to-create-a-persistent-mounting-point-in-ubuntu-app-on-windows-10%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
I'm assuming you're using WSL (Windows Subsystem for Linux) Ubuntu. Then to preserve your mounting points between sessions you need to edit fstab file which is located in /etc directory
In your case you should add to your fstab something similar to:
H: /mnt/h drvfs defaults 0 0
instead of H:
(your disk name) you can also use your network location \servershare
Please note, you should be using at least 17093 build of WSL in order to fstab to be processed.
Thanks for your quick reply, but I'm having some doubts, as mentioned in the edit of my question. Can you confirm that I'm working correctly?
– Dominique
Feb 19 at 10:44
@Dominique You should indeed use/etc/fstab
file, and I believe the lineH: /mnt/h drvfs ro defaults 0 0
is correct. In case something goes wrong (but it shouldn't) you can edit fstab file from windows to revert the changes:%LOCALAPPDATA%PackagesCanonicalGroupLimited.UbuntuonWindows_79rhkp1fndgscLocalStaterootfs
– Ludwik
Feb 19 at 12:02
I've done the changes, but it seems not to be working: after having restarted the app, the mounting point did not get recreated. By the way, when runninguname -a
I get following result, I believe this means I'm working with build 17134? (Linux DOMINIQUEDS 4.4.0-17134-Microsoft #523-Microsoft Mon Dec 31 17:49:00 PST 2018 x86_64 x86_64 x86_64 GNU/Linux
)
– Dominique
Feb 19 at 12:29
@Dominique - there was a mistake in the line I suggested, but I edited my answer, and it should be ok now. Can you please try it? You can mount all entries from fstab withsudo mount -a
and then check if they're mounted withmount
– Ludwik
Feb 19 at 15:54
add a comment |
I'm assuming you're using WSL (Windows Subsystem for Linux) Ubuntu. Then to preserve your mounting points between sessions you need to edit fstab file which is located in /etc directory
In your case you should add to your fstab something similar to:
H: /mnt/h drvfs defaults 0 0
instead of H:
(your disk name) you can also use your network location \servershare
Please note, you should be using at least 17093 build of WSL in order to fstab to be processed.
Thanks for your quick reply, but I'm having some doubts, as mentioned in the edit of my question. Can you confirm that I'm working correctly?
– Dominique
Feb 19 at 10:44
@Dominique You should indeed use/etc/fstab
file, and I believe the lineH: /mnt/h drvfs ro defaults 0 0
is correct. In case something goes wrong (but it shouldn't) you can edit fstab file from windows to revert the changes:%LOCALAPPDATA%PackagesCanonicalGroupLimited.UbuntuonWindows_79rhkp1fndgscLocalStaterootfs
– Ludwik
Feb 19 at 12:02
I've done the changes, but it seems not to be working: after having restarted the app, the mounting point did not get recreated. By the way, when runninguname -a
I get following result, I believe this means I'm working with build 17134? (Linux DOMINIQUEDS 4.4.0-17134-Microsoft #523-Microsoft Mon Dec 31 17:49:00 PST 2018 x86_64 x86_64 x86_64 GNU/Linux
)
– Dominique
Feb 19 at 12:29
@Dominique - there was a mistake in the line I suggested, but I edited my answer, and it should be ok now. Can you please try it? You can mount all entries from fstab withsudo mount -a
and then check if they're mounted withmount
– Ludwik
Feb 19 at 15:54
add a comment |
I'm assuming you're using WSL (Windows Subsystem for Linux) Ubuntu. Then to preserve your mounting points between sessions you need to edit fstab file which is located in /etc directory
In your case you should add to your fstab something similar to:
H: /mnt/h drvfs defaults 0 0
instead of H:
(your disk name) you can also use your network location \servershare
Please note, you should be using at least 17093 build of WSL in order to fstab to be processed.
I'm assuming you're using WSL (Windows Subsystem for Linux) Ubuntu. Then to preserve your mounting points between sessions you need to edit fstab file which is located in /etc directory
In your case you should add to your fstab something similar to:
H: /mnt/h drvfs defaults 0 0
instead of H:
(your disk name) you can also use your network location \servershare
Please note, you should be using at least 17093 build of WSL in order to fstab to be processed.
edited Feb 19 at 15:28
answered Feb 19 at 10:18
LudwikLudwik
213
213
Thanks for your quick reply, but I'm having some doubts, as mentioned in the edit of my question. Can you confirm that I'm working correctly?
– Dominique
Feb 19 at 10:44
@Dominique You should indeed use/etc/fstab
file, and I believe the lineH: /mnt/h drvfs ro defaults 0 0
is correct. In case something goes wrong (but it shouldn't) you can edit fstab file from windows to revert the changes:%LOCALAPPDATA%PackagesCanonicalGroupLimited.UbuntuonWindows_79rhkp1fndgscLocalStaterootfs
– Ludwik
Feb 19 at 12:02
I've done the changes, but it seems not to be working: after having restarted the app, the mounting point did not get recreated. By the way, when runninguname -a
I get following result, I believe this means I'm working with build 17134? (Linux DOMINIQUEDS 4.4.0-17134-Microsoft #523-Microsoft Mon Dec 31 17:49:00 PST 2018 x86_64 x86_64 x86_64 GNU/Linux
)
– Dominique
Feb 19 at 12:29
@Dominique - there was a mistake in the line I suggested, but I edited my answer, and it should be ok now. Can you please try it? You can mount all entries from fstab withsudo mount -a
and then check if they're mounted withmount
– Ludwik
Feb 19 at 15:54
add a comment |
Thanks for your quick reply, but I'm having some doubts, as mentioned in the edit of my question. Can you confirm that I'm working correctly?
– Dominique
Feb 19 at 10:44
@Dominique You should indeed use/etc/fstab
file, and I believe the lineH: /mnt/h drvfs ro defaults 0 0
is correct. In case something goes wrong (but it shouldn't) you can edit fstab file from windows to revert the changes:%LOCALAPPDATA%PackagesCanonicalGroupLimited.UbuntuonWindows_79rhkp1fndgscLocalStaterootfs
– Ludwik
Feb 19 at 12:02
I've done the changes, but it seems not to be working: after having restarted the app, the mounting point did not get recreated. By the way, when runninguname -a
I get following result, I believe this means I'm working with build 17134? (Linux DOMINIQUEDS 4.4.0-17134-Microsoft #523-Microsoft Mon Dec 31 17:49:00 PST 2018 x86_64 x86_64 x86_64 GNU/Linux
)
– Dominique
Feb 19 at 12:29
@Dominique - there was a mistake in the line I suggested, but I edited my answer, and it should be ok now. Can you please try it? You can mount all entries from fstab withsudo mount -a
and then check if they're mounted withmount
– Ludwik
Feb 19 at 15:54
Thanks for your quick reply, but I'm having some doubts, as mentioned in the edit of my question. Can you confirm that I'm working correctly?
– Dominique
Feb 19 at 10:44
Thanks for your quick reply, but I'm having some doubts, as mentioned in the edit of my question. Can you confirm that I'm working correctly?
– Dominique
Feb 19 at 10:44
@Dominique You should indeed use
/etc/fstab
file, and I believe the line H: /mnt/h drvfs ro defaults 0 0
is correct. In case something goes wrong (but it shouldn't) you can edit fstab file from windows to revert the changes: %LOCALAPPDATA%PackagesCanonicalGroupLimited.UbuntuonWindows_79rhkp1fndgscLocalStaterootfs
– Ludwik
Feb 19 at 12:02
@Dominique You should indeed use
/etc/fstab
file, and I believe the line H: /mnt/h drvfs ro defaults 0 0
is correct. In case something goes wrong (but it shouldn't) you can edit fstab file from windows to revert the changes: %LOCALAPPDATA%PackagesCanonicalGroupLimited.UbuntuonWindows_79rhkp1fndgscLocalStaterootfs
– Ludwik
Feb 19 at 12:02
I've done the changes, but it seems not to be working: after having restarted the app, the mounting point did not get recreated. By the way, when running
uname -a
I get following result, I believe this means I'm working with build 17134? (Linux DOMINIQUEDS 4.4.0-17134-Microsoft #523-Microsoft Mon Dec 31 17:49:00 PST 2018 x86_64 x86_64 x86_64 GNU/Linux
)– Dominique
Feb 19 at 12:29
I've done the changes, but it seems not to be working: after having restarted the app, the mounting point did not get recreated. By the way, when running
uname -a
I get following result, I believe this means I'm working with build 17134? (Linux DOMINIQUEDS 4.4.0-17134-Microsoft #523-Microsoft Mon Dec 31 17:49:00 PST 2018 x86_64 x86_64 x86_64 GNU/Linux
)– Dominique
Feb 19 at 12:29
@Dominique - there was a mistake in the line I suggested, but I edited my answer, and it should be ok now. Can you please try it? You can mount all entries from fstab with
sudo mount -a
and then check if they're mounted with mount
– Ludwik
Feb 19 at 15:54
@Dominique - there was a mistake in the line I suggested, but I edited my answer, and it should be ok now. Can you please try it? You can mount all entries from fstab with
sudo mount -a
and then check if they're mounted with mount
– Ludwik
Feb 19 at 15:54
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f1119456%2fhow-to-create-a-persistent-mounting-point-in-ubuntu-app-on-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