When I use Bash on Ubuntu on Windows (Ubuntu built into Windows 10), where is my Windows root filesystem (e.g. C drive)?Is there a Windows Briefcase equivalent on Ubuntu?Changing behavior of bash prompt when functioning as rootUbuntu files are not accessible through Windows 8Windows can't view secondary Ubuntu hard drive filesIs it safe to access files from Windows 7 partition on Ubuntu partition (all on same HDD)Where to put downloaded files on filesystem (14.04)Can I change directory to a Windows drive in Ubuntu Bash on WSL?Sharing files with Win10/bash shellUbuntu / Linux Search - How to list all files on all Drives?Stuck in terminal as root user
Does a large simulator bay have standard public address announcements?
Older movie/show about humans on derelict alien warship which refuels by passing through a star
Find a stone which is not the lightest one
How much cash can I safely carry into the USA and avoid civil forfeiture?
Can a stored procedure reference the database in which it is stored?
Work requires me to come in early to start computer but wont let me clock in to get paid for it
Is it acceptable to use working hours to read general interest books?
How can I practically buy stocks?
How do I produce this Greek letter koppa: Ϟ in pdfLaTeX?
How to not starve gigantic beasts
Is there any pythonic way to find average of specific tuple elements in array?
"Whatever a Russian does, they end up making the Kalashnikov gun"? Are there any similar proverbs in English?
Magical attacks and overcoming damage resistance
A Paper Record is What I Hamper
Injection into a proper class and choice without regularity
Cayley's Matrix Notation
How do I deal with a coworker that keeps asking to make small superficial changes to a report, and it is seriously triggering my anxiety?
What does a straight horizontal line above a few notes, after a changed tempo mean?
How long after the last departure shall the airport stay open for an emergency return?
Retract an already submitted recommendation letter (written for an undergrad student)
"The cow" OR "a cow" OR "cows" in this context
A faster way to compute the largest prime factor
How to have a sharp product image?
Is there really no use for MD5 anymore?
When I use Bash on Ubuntu on Windows (Ubuntu built into Windows 10), where is my Windows root filesystem (e.g. C drive)?
Is there a Windows Briefcase equivalent on Ubuntu?Changing behavior of bash prompt when functioning as rootUbuntu files are not accessible through Windows 8Windows can't view secondary Ubuntu hard drive filesIs it safe to access files from Windows 7 partition on Ubuntu partition (all on same HDD)Where to put downloaded files on filesystem (14.04)Can I change directory to a Windows drive in Ubuntu Bash on WSL?Sharing files with Win10/bash shellUbuntu / Linux Search - How to list all files on all Drives?Stuck in terminal as root user
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
When I use "Bash on Ubuntu on Windows" (the Ubuntu built into Windows 10), what directory accesses my Windows filesystem (e.g. C drive, My Documents, etc.)?
For example, my username is "ed" so when I start bash I'm in: /home/ed
I want to be able to access something like:
- C:Windows
- C:UsersEdDocuments
Where do I find the root Windows filesystem in the bash shell?
command-line windows filesystem
add a comment |
When I use "Bash on Ubuntu on Windows" (the Ubuntu built into Windows 10), what directory accesses my Windows filesystem (e.g. C drive, My Documents, etc.)?
For example, my username is "ed" so when I start bash I'm in: /home/ed
I want to be able to access something like:
- C:Windows
- C:UsersEdDocuments
Where do I find the root Windows filesystem in the bash shell?
command-line windows filesystem
add a comment |
When I use "Bash on Ubuntu on Windows" (the Ubuntu built into Windows 10), what directory accesses my Windows filesystem (e.g. C drive, My Documents, etc.)?
For example, my username is "ed" so when I start bash I'm in: /home/ed
I want to be able to access something like:
- C:Windows
- C:UsersEdDocuments
Where do I find the root Windows filesystem in the bash shell?
command-line windows filesystem
When I use "Bash on Ubuntu on Windows" (the Ubuntu built into Windows 10), what directory accesses my Windows filesystem (e.g. C drive, My Documents, etc.)?
For example, my username is "ed" so when I start bash I'm in: /home/ed
I want to be able to access something like:
- C:Windows
- C:UsersEdDocuments
Where do I find the root Windows filesystem in the bash shell?
command-line windows filesystem
command-line windows filesystem
asked Sep 13 '16 at 14:07
11101101b11101101b
1113
1113
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
I was able to figure it out by searching for files that existed in my documents on the Ubuntu bash command line using "locate." Yay!
- /mnt/c/Windows
- /mnt/c/Users/Ed/Documents
- /mnt/d/...
add a comment |
use df at the Ubuntu bash prompt to read the mount point (below "/") of your file systems ("C:", etc).
For those (like me) wondering where the "/home" is in Windows, it's here :
%LOCALAPPDATA%PackagesCanonicalGroupLimited*LocalStaterootfshome
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%2f824410%2fwhen-i-use-bash-on-ubuntu-on-windows-ubuntu-built-into-windows-10-where-is-my%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I was able to figure it out by searching for files that existed in my documents on the Ubuntu bash command line using "locate." Yay!
- /mnt/c/Windows
- /mnt/c/Users/Ed/Documents
- /mnt/d/...
add a comment |
I was able to figure it out by searching for files that existed in my documents on the Ubuntu bash command line using "locate." Yay!
- /mnt/c/Windows
- /mnt/c/Users/Ed/Documents
- /mnt/d/...
add a comment |
I was able to figure it out by searching for files that existed in my documents on the Ubuntu bash command line using "locate." Yay!
- /mnt/c/Windows
- /mnt/c/Users/Ed/Documents
- /mnt/d/...
I was able to figure it out by searching for files that existed in my documents on the Ubuntu bash command line using "locate." Yay!
- /mnt/c/Windows
- /mnt/c/Users/Ed/Documents
- /mnt/d/...
answered Sep 13 '16 at 14:07
11101101b11101101b
1113
1113
add a comment |
add a comment |
use df at the Ubuntu bash prompt to read the mount point (below "/") of your file systems ("C:", etc).
For those (like me) wondering where the "/home" is in Windows, it's here :
%LOCALAPPDATA%PackagesCanonicalGroupLimited*LocalStaterootfshome
add a comment |
use df at the Ubuntu bash prompt to read the mount point (below "/") of your file systems ("C:", etc).
For those (like me) wondering where the "/home" is in Windows, it's here :
%LOCALAPPDATA%PackagesCanonicalGroupLimited*LocalStaterootfshome
add a comment |
use df at the Ubuntu bash prompt to read the mount point (below "/") of your file systems ("C:", etc).
For those (like me) wondering where the "/home" is in Windows, it's here :
%LOCALAPPDATA%PackagesCanonicalGroupLimited*LocalStaterootfshome
use df at the Ubuntu bash prompt to read the mount point (below "/") of your file systems ("C:", etc).
For those (like me) wondering where the "/home" is in Windows, it's here :
%LOCALAPPDATA%PackagesCanonicalGroupLimited*LocalStaterootfshome
edited Apr 13 at 13:58
answered Apr 13 at 13:50
Adhémar PatamobAdhémar Patamob
113
113
add a comment |
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%2f824410%2fwhen-i-use-bash-on-ubuntu-on-windows-ubuntu-built-into-windows-10-where-is-my%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