Can i copy data from other system partition?
up vote
1
down vote
favorite
Since i have dual boot and i lost my access to windows, i need to make backup for some files i was working on. I remember on windows(to ubuntu) it didnt allow me to do it , only formatting partition.
Short story
My windows system is dying, i lost my system key(its on disc but not on bios , and i cannot activate it). Ive tried to restore system , even deleting most of my data in process.But now all i see is purple screen when i try to choose windows.
windows-10 ubuntu windows-backup
add a comment |
up vote
1
down vote
favorite
Since i have dual boot and i lost my access to windows, i need to make backup for some files i was working on. I remember on windows(to ubuntu) it didnt allow me to do it , only formatting partition.
Short story
My windows system is dying, i lost my system key(its on disc but not on bios , and i cannot activate it). Ive tried to restore system , even deleting most of my data in process.But now all i see is purple screen when i try to choose windows.
windows-10 ubuntu windows-backup
Okay... looks like i can get to sys by bios, but boot options doesnt work. I think disc might be dying (4-5yo laptop)
– Aguli
Nov 25 at 16:37
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
Since i have dual boot and i lost my access to windows, i need to make backup for some files i was working on. I remember on windows(to ubuntu) it didnt allow me to do it , only formatting partition.
Short story
My windows system is dying, i lost my system key(its on disc but not on bios , and i cannot activate it). Ive tried to restore system , even deleting most of my data in process.But now all i see is purple screen when i try to choose windows.
windows-10 ubuntu windows-backup
Since i have dual boot and i lost my access to windows, i need to make backup for some files i was working on. I remember on windows(to ubuntu) it didnt allow me to do it , only formatting partition.
Short story
My windows system is dying, i lost my system key(its on disc but not on bios , and i cannot activate it). Ive tried to restore system , even deleting most of my data in process.But now all i see is purple screen when i try to choose windows.
windows-10 ubuntu windows-backup
windows-10 ubuntu windows-backup
edited Nov 25 at 17:04
asked Nov 25 at 16:25
Aguli
235
235
Okay... looks like i can get to sys by bios, but boot options doesnt work. I think disc might be dying (4-5yo laptop)
– Aguli
Nov 25 at 16:37
add a comment |
Okay... looks like i can get to sys by bios, but boot options doesnt work. I think disc might be dying (4-5yo laptop)
– Aguli
Nov 25 at 16:37
Okay... looks like i can get to sys by bios, but boot options doesnt work. I think disc might be dying (4-5yo laptop)
– Aguli
Nov 25 at 16:37
Okay... looks like i can get to sys by bios, but boot options doesnt work. I think disc might be dying (4-5yo laptop)
– Aguli
Nov 25 at 16:37
add a comment |
2 Answers
2
active
oldest
votes
up vote
1
down vote
Your Ubuntu operating system can read the Windows file system, assuming you didn't encrypt it with Bitlocker. You should open your file manager and see the Windows partition. When you double click the drive it will mount the partition is a drive and you can then copy the data.
add a comment |
up vote
0
down vote
Stock Windows doesn't support the Unix file systems, but most Linux distros have the NTFS filesystem already installed.
Use:
fdisk -l
to identify the disk(s) with an NTFS partition. The disk name is in the form /dev/sdXn
, where X
is a,b,c...
(sda
is your first hard drive, sdb
the second... and so on) and n
is a partition number.
Then for each disk, create an empty directory in /mnt
:
mkdir /mnt/windisk1
Attach that file system to your file hierarchy:
mount -t ntfs --read-only /dev/sda1 /mnt/windisk1
If everything went well, your Windows disk appears as /mnt/windisk1
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
Your Ubuntu operating system can read the Windows file system, assuming you didn't encrypt it with Bitlocker. You should open your file manager and see the Windows partition. When you double click the drive it will mount the partition is a drive and you can then copy the data.
add a comment |
up vote
1
down vote
Your Ubuntu operating system can read the Windows file system, assuming you didn't encrypt it with Bitlocker. You should open your file manager and see the Windows partition. When you double click the drive it will mount the partition is a drive and you can then copy the data.
add a comment |
up vote
1
down vote
up vote
1
down vote
Your Ubuntu operating system can read the Windows file system, assuming you didn't encrypt it with Bitlocker. You should open your file manager and see the Windows partition. When you double click the drive it will mount the partition is a drive and you can then copy the data.
Your Ubuntu operating system can read the Windows file system, assuming you didn't encrypt it with Bitlocker. You should open your file manager and see the Windows partition. When you double click the drive it will mount the partition is a drive and you can then copy the data.
edited Nov 25 at 17:46
answered Nov 25 at 16:50
Keltari
49.4k17113165
49.4k17113165
add a comment |
add a comment |
up vote
0
down vote
Stock Windows doesn't support the Unix file systems, but most Linux distros have the NTFS filesystem already installed.
Use:
fdisk -l
to identify the disk(s) with an NTFS partition. The disk name is in the form /dev/sdXn
, where X
is a,b,c...
(sda
is your first hard drive, sdb
the second... and so on) and n
is a partition number.
Then for each disk, create an empty directory in /mnt
:
mkdir /mnt/windisk1
Attach that file system to your file hierarchy:
mount -t ntfs --read-only /dev/sda1 /mnt/windisk1
If everything went well, your Windows disk appears as /mnt/windisk1
add a comment |
up vote
0
down vote
Stock Windows doesn't support the Unix file systems, but most Linux distros have the NTFS filesystem already installed.
Use:
fdisk -l
to identify the disk(s) with an NTFS partition. The disk name is in the form /dev/sdXn
, where X
is a,b,c...
(sda
is your first hard drive, sdb
the second... and so on) and n
is a partition number.
Then for each disk, create an empty directory in /mnt
:
mkdir /mnt/windisk1
Attach that file system to your file hierarchy:
mount -t ntfs --read-only /dev/sda1 /mnt/windisk1
If everything went well, your Windows disk appears as /mnt/windisk1
add a comment |
up vote
0
down vote
up vote
0
down vote
Stock Windows doesn't support the Unix file systems, but most Linux distros have the NTFS filesystem already installed.
Use:
fdisk -l
to identify the disk(s) with an NTFS partition. The disk name is in the form /dev/sdXn
, where X
is a,b,c...
(sda
is your first hard drive, sdb
the second... and so on) and n
is a partition number.
Then for each disk, create an empty directory in /mnt
:
mkdir /mnt/windisk1
Attach that file system to your file hierarchy:
mount -t ntfs --read-only /dev/sda1 /mnt/windisk1
If everything went well, your Windows disk appears as /mnt/windisk1
Stock Windows doesn't support the Unix file systems, but most Linux distros have the NTFS filesystem already installed.
Use:
fdisk -l
to identify the disk(s) with an NTFS partition. The disk name is in the form /dev/sdXn
, where X
is a,b,c...
(sda
is your first hard drive, sdb
the second... and so on) and n
is a partition number.
Then for each disk, create an empty directory in /mnt
:
mkdir /mnt/windisk1
Attach that file system to your file hierarchy:
mount -t ntfs --read-only /dev/sda1 /mnt/windisk1
If everything went well, your Windows disk appears as /mnt/windisk1
answered Nov 25 at 16:58
xenoid
3,5333718
3,5333718
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.
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%2fsuperuser.com%2fquestions%2f1378257%2fcan-i-copy-data-from-other-system-partition%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
Okay... looks like i can get to sys by bios, but boot options doesnt work. I think disc might be dying (4-5yo laptop)
– Aguli
Nov 25 at 16:37