How can I access Windows files from Ubuntu
Is it possible to get the files I had on Windows onto my Ubuntu desktop?
How can I connect to my Windows partition from Ubuntu?
dual-boot filesystem
add a comment |
Is it possible to get the files I had on Windows onto my Ubuntu desktop?
How can I connect to my Windows partition from Ubuntu?
dual-boot filesystem
1
what kind of files?
– nux
Mar 13 '14 at 9:24
1
It should be easy, is there any problem?
– Braiam
Mar 13 '14 at 14:15
add a comment |
Is it possible to get the files I had on Windows onto my Ubuntu desktop?
How can I connect to my Windows partition from Ubuntu?
dual-boot filesystem
Is it possible to get the files I had on Windows onto my Ubuntu desktop?
How can I connect to my Windows partition from Ubuntu?
dual-boot filesystem
dual-boot filesystem
edited Apr 10 '18 at 10:55
Zanna
50.9k13136241
50.9k13136241
asked Mar 13 '14 at 9:21
Sidney1827Sidney1827
19112
19112
1
what kind of files?
– nux
Mar 13 '14 at 9:24
1
It should be easy, is there any problem?
– Braiam
Mar 13 '14 at 14:15
add a comment |
1
what kind of files?
– nux
Mar 13 '14 at 9:24
1
It should be easy, is there any problem?
– Braiam
Mar 13 '14 at 14:15
1
1
what kind of files?
– nux
Mar 13 '14 at 9:24
what kind of files?
– nux
Mar 13 '14 at 9:24
1
1
It should be easy, is there any problem?
– Braiam
Mar 13 '14 at 14:15
It should be easy, is there any problem?
– Braiam
Mar 13 '14 at 14:15
add a comment |
3 Answers
3
active
oldest
votes
yes of course you can acccess windows NTFS/FAT32 partitions from Ubuntu
From help.ubuntu.com:
Using the File Manager For those using a desktop version of Ubuntu, or
one of its offical derivatives, the easiest and quickest way of
mounting NTFS or FAT32 partitions is from the file manager: Nautilus
in Ubuntu, Thunar in Xubuntu, Dolphin in Kubuntu and PCManFM in
Lubuntu. Simply look in the left pane of the file manager for the
partition you wish to mount and click on it - it will be mounted and
its contents will show up in the main pane. Partitions show with their
labels if labelled, or their size if not.
Unless you require your Windows partition - or a NTFS/FAT32 partition
for data shared with Windows - mounted every time you boot up for one
of the reasons given below, mounting from the file manager in this way
should suffice.
If you are using a Wubi version of Ubuntu and you wish to browse the
host partition, you do not need to mount it - it is mounted already in
the "host" folder. Click on "File System" in the left pane of the
Nautilus file browser and then open the host folder which you will see
in the main pane.
Just Open Home folder from your Dash menu and you can see all partitions mounted under Devices:
Click on the needed drive and copy files/folders thw way you want to your Ubuntu drive
add a comment |
Yes, just mount the windows partition from which you want to copy files. Drag and drop the files on to your Ubuntu desktop. That's all.
Mounting a partition can be done manually or automatically,
sudo mkdir /media/windows
sudo mount dev/sdaX /media/windows # X partition number.
Now your windows partition should be mounted inside /media/windows
directory.
After you clicked on the corresponding partition icon(which was on the unity), it get automatically mounted inside /media/$USER
directory. To copy files from windows partition to Ubuntu desktop, you have to run these command,
cp /media/$USER/xxxxxxx/folder ~/Desktop #To copy a folder to your Ubuntu desktop
cp /media/$USER/xxxxxxx/folder/* ~/Desktop #To copy all the files inside that folder to Ubuntu desktop
cp /media/$USER/xxxxxxx/folder/filename ~/Desktop #To copy specific file to your Ubuntu desktop
xxxxxxx
- label name of the Windows partition.
4
Please add example commands else your answer would be considered as comment.
– Danatela
Mar 13 '14 at 9:33
Good. Now let the downvoters redecide.
– Danatela
Mar 13 '14 at 10:05
add a comment |
If running an emulation of Ubuntu,
Be sure to check for a mnt folder located in root. There you may find your drives.
mnt folder
New contributor
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%2f433591%2fhow-can-i-access-windows-files-from-ubuntu%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
yes of course you can acccess windows NTFS/FAT32 partitions from Ubuntu
From help.ubuntu.com:
Using the File Manager For those using a desktop version of Ubuntu, or
one of its offical derivatives, the easiest and quickest way of
mounting NTFS or FAT32 partitions is from the file manager: Nautilus
in Ubuntu, Thunar in Xubuntu, Dolphin in Kubuntu and PCManFM in
Lubuntu. Simply look in the left pane of the file manager for the
partition you wish to mount and click on it - it will be mounted and
its contents will show up in the main pane. Partitions show with their
labels if labelled, or their size if not.
Unless you require your Windows partition - or a NTFS/FAT32 partition
for data shared with Windows - mounted every time you boot up for one
of the reasons given below, mounting from the file manager in this way
should suffice.
If you are using a Wubi version of Ubuntu and you wish to browse the
host partition, you do not need to mount it - it is mounted already in
the "host" folder. Click on "File System" in the left pane of the
Nautilus file browser and then open the host folder which you will see
in the main pane.
Just Open Home folder from your Dash menu and you can see all partitions mounted under Devices:
Click on the needed drive and copy files/folders thw way you want to your Ubuntu drive
add a comment |
yes of course you can acccess windows NTFS/FAT32 partitions from Ubuntu
From help.ubuntu.com:
Using the File Manager For those using a desktop version of Ubuntu, or
one of its offical derivatives, the easiest and quickest way of
mounting NTFS or FAT32 partitions is from the file manager: Nautilus
in Ubuntu, Thunar in Xubuntu, Dolphin in Kubuntu and PCManFM in
Lubuntu. Simply look in the left pane of the file manager for the
partition you wish to mount and click on it - it will be mounted and
its contents will show up in the main pane. Partitions show with their
labels if labelled, or their size if not.
Unless you require your Windows partition - or a NTFS/FAT32 partition
for data shared with Windows - mounted every time you boot up for one
of the reasons given below, mounting from the file manager in this way
should suffice.
If you are using a Wubi version of Ubuntu and you wish to browse the
host partition, you do not need to mount it - it is mounted already in
the "host" folder. Click on "File System" in the left pane of the
Nautilus file browser and then open the host folder which you will see
in the main pane.
Just Open Home folder from your Dash menu and you can see all partitions mounted under Devices:
Click on the needed drive and copy files/folders thw way you want to your Ubuntu drive
add a comment |
yes of course you can acccess windows NTFS/FAT32 partitions from Ubuntu
From help.ubuntu.com:
Using the File Manager For those using a desktop version of Ubuntu, or
one of its offical derivatives, the easiest and quickest way of
mounting NTFS or FAT32 partitions is from the file manager: Nautilus
in Ubuntu, Thunar in Xubuntu, Dolphin in Kubuntu and PCManFM in
Lubuntu. Simply look in the left pane of the file manager for the
partition you wish to mount and click on it - it will be mounted and
its contents will show up in the main pane. Partitions show with their
labels if labelled, or their size if not.
Unless you require your Windows partition - or a NTFS/FAT32 partition
for data shared with Windows - mounted every time you boot up for one
of the reasons given below, mounting from the file manager in this way
should suffice.
If you are using a Wubi version of Ubuntu and you wish to browse the
host partition, you do not need to mount it - it is mounted already in
the "host" folder. Click on "File System" in the left pane of the
Nautilus file browser and then open the host folder which you will see
in the main pane.
Just Open Home folder from your Dash menu and you can see all partitions mounted under Devices:
Click on the needed drive and copy files/folders thw way you want to your Ubuntu drive
yes of course you can acccess windows NTFS/FAT32 partitions from Ubuntu
From help.ubuntu.com:
Using the File Manager For those using a desktop version of Ubuntu, or
one of its offical derivatives, the easiest and quickest way of
mounting NTFS or FAT32 partitions is from the file manager: Nautilus
in Ubuntu, Thunar in Xubuntu, Dolphin in Kubuntu and PCManFM in
Lubuntu. Simply look in the left pane of the file manager for the
partition you wish to mount and click on it - it will be mounted and
its contents will show up in the main pane. Partitions show with their
labels if labelled, or their size if not.
Unless you require your Windows partition - or a NTFS/FAT32 partition
for data shared with Windows - mounted every time you boot up for one
of the reasons given below, mounting from the file manager in this way
should suffice.
If you are using a Wubi version of Ubuntu and you wish to browse the
host partition, you do not need to mount it - it is mounted already in
the "host" folder. Click on "File System" in the left pane of the
Nautilus file browser and then open the host folder which you will see
in the main pane.
Just Open Home folder from your Dash menu and you can see all partitions mounted under Devices:
Click on the needed drive and copy files/folders thw way you want to your Ubuntu drive
answered Mar 13 '14 at 9:41
kamilkamil
5,26062954
5,26062954
add a comment |
add a comment |
Yes, just mount the windows partition from which you want to copy files. Drag and drop the files on to your Ubuntu desktop. That's all.
Mounting a partition can be done manually or automatically,
sudo mkdir /media/windows
sudo mount dev/sdaX /media/windows # X partition number.
Now your windows partition should be mounted inside /media/windows
directory.
After you clicked on the corresponding partition icon(which was on the unity), it get automatically mounted inside /media/$USER
directory. To copy files from windows partition to Ubuntu desktop, you have to run these command,
cp /media/$USER/xxxxxxx/folder ~/Desktop #To copy a folder to your Ubuntu desktop
cp /media/$USER/xxxxxxx/folder/* ~/Desktop #To copy all the files inside that folder to Ubuntu desktop
cp /media/$USER/xxxxxxx/folder/filename ~/Desktop #To copy specific file to your Ubuntu desktop
xxxxxxx
- label name of the Windows partition.
4
Please add example commands else your answer would be considered as comment.
– Danatela
Mar 13 '14 at 9:33
Good. Now let the downvoters redecide.
– Danatela
Mar 13 '14 at 10:05
add a comment |
Yes, just mount the windows partition from which you want to copy files. Drag and drop the files on to your Ubuntu desktop. That's all.
Mounting a partition can be done manually or automatically,
sudo mkdir /media/windows
sudo mount dev/sdaX /media/windows # X partition number.
Now your windows partition should be mounted inside /media/windows
directory.
After you clicked on the corresponding partition icon(which was on the unity), it get automatically mounted inside /media/$USER
directory. To copy files from windows partition to Ubuntu desktop, you have to run these command,
cp /media/$USER/xxxxxxx/folder ~/Desktop #To copy a folder to your Ubuntu desktop
cp /media/$USER/xxxxxxx/folder/* ~/Desktop #To copy all the files inside that folder to Ubuntu desktop
cp /media/$USER/xxxxxxx/folder/filename ~/Desktop #To copy specific file to your Ubuntu desktop
xxxxxxx
- label name of the Windows partition.
4
Please add example commands else your answer would be considered as comment.
– Danatela
Mar 13 '14 at 9:33
Good. Now let the downvoters redecide.
– Danatela
Mar 13 '14 at 10:05
add a comment |
Yes, just mount the windows partition from which you want to copy files. Drag and drop the files on to your Ubuntu desktop. That's all.
Mounting a partition can be done manually or automatically,
sudo mkdir /media/windows
sudo mount dev/sdaX /media/windows # X partition number.
Now your windows partition should be mounted inside /media/windows
directory.
After you clicked on the corresponding partition icon(which was on the unity), it get automatically mounted inside /media/$USER
directory. To copy files from windows partition to Ubuntu desktop, you have to run these command,
cp /media/$USER/xxxxxxx/folder ~/Desktop #To copy a folder to your Ubuntu desktop
cp /media/$USER/xxxxxxx/folder/* ~/Desktop #To copy all the files inside that folder to Ubuntu desktop
cp /media/$USER/xxxxxxx/folder/filename ~/Desktop #To copy specific file to your Ubuntu desktop
xxxxxxx
- label name of the Windows partition.
Yes, just mount the windows partition from which you want to copy files. Drag and drop the files on to your Ubuntu desktop. That's all.
Mounting a partition can be done manually or automatically,
sudo mkdir /media/windows
sudo mount dev/sdaX /media/windows # X partition number.
Now your windows partition should be mounted inside /media/windows
directory.
After you clicked on the corresponding partition icon(which was on the unity), it get automatically mounted inside /media/$USER
directory. To copy files from windows partition to Ubuntu desktop, you have to run these command,
cp /media/$USER/xxxxxxx/folder ~/Desktop #To copy a folder to your Ubuntu desktop
cp /media/$USER/xxxxxxx/folder/* ~/Desktop #To copy all the files inside that folder to Ubuntu desktop
cp /media/$USER/xxxxxxx/folder/filename ~/Desktop #To copy specific file to your Ubuntu desktop
xxxxxxx
- label name of the Windows partition.
edited Mar 13 '14 at 10:04
Danatela
9,30493264
9,30493264
answered Mar 13 '14 at 9:26
Avinash RajAvinash Raj
52.2k41168219
52.2k41168219
4
Please add example commands else your answer would be considered as comment.
– Danatela
Mar 13 '14 at 9:33
Good. Now let the downvoters redecide.
– Danatela
Mar 13 '14 at 10:05
add a comment |
4
Please add example commands else your answer would be considered as comment.
– Danatela
Mar 13 '14 at 9:33
Good. Now let the downvoters redecide.
– Danatela
Mar 13 '14 at 10:05
4
4
Please add example commands else your answer would be considered as comment.
– Danatela
Mar 13 '14 at 9:33
Please add example commands else your answer would be considered as comment.
– Danatela
Mar 13 '14 at 9:33
Good. Now let the downvoters redecide.
– Danatela
Mar 13 '14 at 10:05
Good. Now let the downvoters redecide.
– Danatela
Mar 13 '14 at 10:05
add a comment |
If running an emulation of Ubuntu,
Be sure to check for a mnt folder located in root. There you may find your drives.
mnt folder
New contributor
add a comment |
If running an emulation of Ubuntu,
Be sure to check for a mnt folder located in root. There you may find your drives.
mnt folder
New contributor
add a comment |
If running an emulation of Ubuntu,
Be sure to check for a mnt folder located in root. There you may find your drives.
mnt folder
New contributor
If running an emulation of Ubuntu,
Be sure to check for a mnt folder located in root. There you may find your drives.
mnt folder
New contributor
New contributor
answered 10 hours ago
Patrick WashingtonPatrick Washington
1
1
New contributor
New contributor
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%2f433591%2fhow-can-i-access-windows-files-from-ubuntu%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
what kind of files?
– nux
Mar 13 '14 at 9:24
1
It should be easy, is there any problem?
– Braiam
Mar 13 '14 at 14:15