I have migrated from Windows to Ubuntu very recently. In Windows I had 3 drives and I am using the same here. I have installed my OS in one. I can't read/write or remove files/directories from either of the other two drives.
root@vishnu-desktop:~# sudo fdisk -l
Disk /dev/sda: 1.8 TiB, 2000398934016 bytes, 3907029168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos
Disk identifier: 0xa3e0317f
Device Boot Start End Sectors Size Id Type
/dev/sda1 * 2048 206847 204800 100M 7 HPFS/NTFS/exFAT
/dev/sda2 206848 314572799 314365952 149.9G 83 Linux
/dev/sda3 314572800 1363148799 1048576000 500G 7 HPFS/NTFS/exFAT
/dev/sda4 1363148800 3907026943 2543878144 1.2T 7 HPFS/NTFS/exFAT
In the above /dev/sda2
is where I have installed Ubuntu.
In /dev/sda3
and /dev/sda4
I am unable to do anything.
ntfs-3g
installed, there might be problems due to permissions. You can fix the permissions problems, if you mount with a command line (run in a terminal window). See the following link, https://askubuntu.com/questions/895733/copying-files-to-a-usb-drive/895782#895782 – sudodus Jun 04 '17 at 10:16FYI... I have tried this as SUDO user.
vishnu@vishnu-desktop:~$ sudo -i root@vishnu-desktop:~# cp /media/vishnu/DATA/Turbo\ C++\ 3.2.2.0 Turbo C++ 3.2.2.0/ Turbo C++ 3.2.2.0.zip
– Vishnuvardhan Ch Jun 04 '17 at 14:17root@vishnu-desktop:~# cp "/media/vishnu/DATA/Turbo C++ 3.2.2.0.zip" "/media/vishnu/LAB" cp: cannot create regular file '/media/vishnu/LAB/Turbo C++ 3.2.2.0.zip': Read-only file system
{}
button in the editor toolbar) will be much more readable there; alternatively you can use a pastie service for longer listings and include the link of your pastie in your question. Overall it’s best to have everything relevant in one place. Additionally, comments may be deleted for various reasons. Thanks. – David Foerster Jun 04 '17 at 14:45root@vishnu-desktop:~# mount -o rw /dev/sda3 /dev/sda3 The disk contains an unclean file system (0, 0). Metadata kept in Windows cache, refused to mount. Falling back to read-only mount because the NTFS partition is in an unsafe state. Please resume and shutdown Windows fully (no hibernation or fast restarting.) root@vishnu-desktop:~#
This is not a dual boot system. I have completely formated the drive where Windows OS is installed. So, can any one suggested me on what to do now?
– Vishnuvardhan Ch Jun 04 '17 at 14:54gparted
), they should be clean. If you used Windows, and Windows was hibernated or 'shut down for fast restart', you might still have the same problem. So try again, and you will find if the linux mount command will let you mount the partitions with read and write access. The mount command may bark, but it does not bite ;-) – sudodus Jun 04 '17 at 16:53