Ubuntu

我安裝了 Ubuntu 而不是 Windows。我的 D 盤文件在哪裡?

  • March 22, 2019

我是 Linux 的新手。我有一個 Windows 和兩個驅動器:CD. Windows 已打開C。然後我安裝了 Ubuntu 而不是 Windows,我希望我的文件D會保留下來。但我找不到它。

據我了解,為此我應該安裝一些sda*,但sudo lsblk我沒有找到任何合適的設備。我試圖安裝所有這些都沒有結果。抱歉,我無法向您提供 的輸出sudo lsblk,因為這一切都發生在我朋友的筆記型電腦上,她現在很遠。

那麼,文件是否有可能仍然存在於某個地方?

正如@Celeo 所分享的,我認為你的機會很小。在安裝之前你應該做兩件事:-

一種。在此之前備份D驅動器上的內容。灣。使D分區更小,然後使其E空閒,空白且沒有任何內容。

然後當你安裝時選擇 E 來安裝 Ubuntu 或任何你想要做的 GNU/Linux 發行版然後你將能夠看到你的 MS-Windows 分區一旦你安裝了ntfs-3g driver

$ aptitude show ntfs-3g
Package: ntfs-3g                         
State: installed
Automatically installed: yes
Version: 1:2014.2.15AR.3-1
Priority: optional
Section: otherosfs
Maintainer: Laszlo Boszormenyi (GCS) <gcs@debian.org>
Architecture: amd64
Uncompressed Size: 1,542 k
Depends: libc6 (>= 2.17), libgcrypt20 (>= 1.6.1), libgnutls-deb0-28 (>= 3.3.0), libgpg-error0 (>= 1.14)
PreDepends: multiarch-support, fuse
Provides: libntfs-3g853
Description: read/write NTFS driver for FUSE
NTFS-3G uses FUSE (Filesystem in Userspace) to provide support for the NTFS filesystem used by Microsoft Windows.
Homepage: http://www.tuxera.com/community/ntfs-3g-advanced/

可能有一些取證工具可能會對您有所幫助,但正如@Celeo 所分享的,這一切都取決於您如何進行安裝。

在我的最後,一個 NTFS 分區:-

$ mount | grep Data
/dev/sda5 on /media/shirish/Data type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2)

實際上,即使 fdisk 也應該給你一些輸出,這是來自雙引導機器:-

$ sudo fdisk -l

Disk /dev/sda: 931.5 GiB, 1000204886016 bytes, 1953525168 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: xxxxxxxxx

Device     Boot      Start        End    Sectors   Size Id Type
/dev/sda1               63  102398309  102398247  48.8G  7 HPFS/NTFS/exFAT
/dev/sda2        102398371 1953523711 1851125341 882.7G  f W95 Ext'd (LBA)
/dev/sda5        102398373  204796619  102398247  48.8G  7 HPFS/NTFS/exFAT
/dev/sda6  *     204797952  595421183  390623232 186.3G 83 Linux
/dev/sda7        595423232  790732799  195309568  93.1G 83 Linux
/dev/sda8        790734848 1943076863 1152342016 549.5G 83 Linux
/dev/sda9       1943078912 1953523711   10444800     5G 82 Linux swap / Solaris

Partition 2 does not start on physical sector boundary.

Partition 3 does not start on physical sector boundary.

Partition 6 does not start on physical sector boundary.

Even this should give you some output, see that /dev/sda1 and /dev/sda5 are both NTFS partitions.

引用自:https://unix.stackexchange.com/questions/189309