我已经安装了 ubuntu 17.04 和 ubuntu 17.10,现在我无法检查 ubuntu 17.10 中存在的数据,我尚未格式化分区,但数据仍然不可用,有人可以帮我吗?
提前致谢。
答案1
据我所知,这是一个新手问题,因此您可以这样做:
打开终端 CTRL+ALT+T
> sudo su #elevate to root
> fdisk -l #list all disks and partitions, find the one your files are on.
> mkdir /mnt/my_files # make a new mount point
> mount /dev/sdb2 /mnt/my_files # mount your partition eg: sdb2
> cd /mnt/my_files # change location to mount point