We have a Windows Dell Server with a corrupt RAID array. We ran Ubuntu from a USB stick and managed to copy some files from the C drive, but the D drive (DATA) we cant mount or access, I guess its to corrupt to do that, but are there any way to come around this problem , we are not precisely Ubuntu experts, we just are trying to save a couple of files that where locked in the previous back up. Any help is very appreciated!
Asked
Active
Viewed 2.6k times
2
-
5Possible duplicate of [How do I access my Windows partition?](https://askubuntu.com/questions/148474/how-do-i-access-my-windows-partition) – Panther Sep 03 '18 at 19:44
2 Answers
4
Check the name of the partition:
sudo fdisk -l
If the name of the windows ntfs partition is for example sda3:
sudo mkdir /media/OS
sudo mount -t ntfs -o nls=utf8,umask=0222 /dev/sda3 /media/OS
An0n
- 2,049
- 1
- 11
- 27
-
1
-
-
Thank you, but I cant access Windows on it, all I need to do is copy files but I cant access the drive at all, I cant mount it either. I can see the drive , its in NTFS, maybe that got something to do with it? – Jeppe Johansson Sep 03 '18 at 21:19
-
1
1
For Ubuntu 18.10:
First install
cifs-utilsusing:sudo apt-get install cifs-utilsNow run following command:
sudo mount -t cifs //xxx.xxx.xxx.xxx/network-drive-folder /mnt -o username=testuser,vers=1.0Here, my source (to be mounted) is -
//xxx.xxx.xxx.xxx/network-drive-folderand destination (where it is to be mounted) is/mnt(system provided mounting point).
testuseris a username which has access to windows network drive. And last but very crucialvers=1.0. For someonevers=2.0orvers=3.0also work as per system stack.
BeastOfCaerbannog
- 12,964
- 10
- 49
- 77
Sohel Pathan
- 111
- 2