I was using Windows 8.1 for Android Development from 2 HDDs, one for OS and other for SDK and code. But last week I migrated to Ubuntu 16.04 LTS.
I formatted the main HDD (having Windows) and installed Ubuntu in it. Now, after attaching the other drive, it is displayed in Dashboard
, but not showing any data or partition in either terminal
or in Files
.
Since, I have no backup, I don't want to lose data. Is there any solution to get it back without inserting it to Windows and backing up data and re-insert to Ubuntu?
What I tried
- Unable to mount Windows (NTFS) filesystem due to hibernation
- Unable to mount Windows 10 partition; it "is in an unsafe state"
- Internal HDD not showing when boot Ubuntu from Flash drive for data recovery
- Hard drive not showing data after moving it to new computer, went from USB ext to internal
- Failed to access Windows 8.1 NTFS partition from Ubuntu 13.10, even after disable fast startup
- How to make a partition windows can read?
But every effort was in vein.
Any help would be appriciated.
EDIT
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda2 during installation
UUID=7b1cdbf2-641e-4ac1-9ec2-7e58992047d4 / ext4 errors=remount-ro 0 1
# /home was on /dev/sda5 during installation
UUID=df60b278-bf9b-4ae7-8140-93e2abb2b3dc /home ext4 defaults 0 2
# swap was on /dev/sda1 during installation
UUID=c17ef1f0-39b7-44fe-8e05-63673868deb9 none swap sw 0 0
$ lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sdb 8:16 0 149.1G 0 disk
├─sdb2 8:18 0 148.9G 0 part /media/acme1/ACME
└─sdb1 8:17 0 200M 0 part
sda 8:0 0 232.9G 0 disk
├─sda2 8:2 0 57.2G 0 part /
├─sda5 8:5 0 171.9G 0 part /home
├─sda3 8:3 0 1K 0 part
└─sda1 8:1 0 3.8G 0 part [SWAP]
$ df
Filesystem 1K-blocks Used Available Use% Mounted on
udev 2512520 0 2512520 0% /dev
tmpfs 506744 7668 499076 2% /run
/dev/sda2 58927276 5919860 49991020 11% /
tmpfs 2533720 75668 2458052 3% /dev/shm
tmpfs 5120 4 5116 1% /run/lock
tmpfs 2533720 0 2533720 0% /sys/fs/cgroup
/dev/sda5 177238584 7771484 160440848 5% /home
tmpfs 506744 84 506660 1% /run/user/1000
/dev/sdb2 61710332 89688 61620644 1% /media/acme1/ACME
$ ls /media/acme1/ACME
System Volume Information
properties
it shows 63GB or so Free Space, which it was before inserting it in Ubuntu. While other 85GB's details are not displayed, since HDD's capacity is 160GB. – Mohammedsalim Shivani Apr 04 '17 at 10:16mount | grep sdb
to see how the HDD is mounted – Mostafa Ahangarha Apr 05 '17 at 06:18/dev/sdb2 on / type ext4 (rw,relatime,errors=remount-ro,data=ordered) /dev/sdb5 on /home type ext4 (rw,relatime,data=ordered)
– Mohammedsalim Shivani Apr 05 '17 at 10:56cat /etc/fstab
– Mostafa Ahangarha Apr 05 '17 at 16:58