从今天下午开始,我无法访问我的任何文件系统。每当我试图打开它们中的任何一个,我都会得到以下错误
因此,我想描述一个可能导致这种情况的问题。
我试着为我的笔记本安装指纹驱动程序(戴尔Inspiron 5501)。我被许多文章迷住了,最后下载了一个包,它可以检查是否有指纹驱动程序。为了做到这一点,必须运行带有.AppImage
的文件。为了运行这个引信是必要的。所以我安装了fuse
和libfuse2
。在此之后,每当我打开文件系统时,都会出现此消息。
我试着安装nfs-common
和cifs-utils
。但是,在安装nfs时,通常的输出是这样的。
$ sudo apt-get install nfs-common
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Suggested packages:
open-iscsi watchdog
The following NEW packages will be installed:
nfs-common
0 upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
Need to get 0 B/240 kB of archives.
After this operation, 901 kB of additional disk space will be used.
Selecting previously unselected package nfs-common.
(Reading database ... 222095 files and directories currently installed.)
Preparing to unpack .../nfs-common_1%3a2.6.1-2ubuntu4.1_amd64.deb ...
Unpacking nfs-common (1:2.6.1-2ubuntu4.1) ...
Setting up nfs-common (1:2.6.1-2ubuntu4.1) ...
auth-rpcgss-module.service is a disabled or a static unit not running, not starting it.
nfs-idmapd.service is a disabled or a static unit not running, not starting it.
nfs-utils.service is a disabled or a static unit not running, not starting it.
proc-fs-nfsd.mount is a disabled or a static unit not running, not starting it.
rpc-gssd.service is a disabled or a static unit not running, not starting it.
rpc-statd-notify.service is a disabled or a static unit not running, not starting it.
rpc-statd.service is a disabled or a static unit not running, not starting it.
rpc-svcgssd.service is a disabled or a static unit not running, not starting it.
Processing triggers for man-db (2.10.2-2) ...
请帮我找到解决办法!
是的,我拆了保险丝。
发布于 2022-11-22 17:04:49
因此,为了在没有安装介质的情况下解决这个问题,请检查mount.ntfs
、mount.ntfs-3g
和mount.lowntfs-3g
是否存在于/sbin
中,除了使用nfs-common
和cifs-utils
ls -l /sbin/mount.ntfs
ls -l /sbin/mount.ntfs-3g
ls -l /sbin/mount.lowntfs-3g
如果它们不存在,请使用
sudo apt-get install ntfs-3g
重新启动(有时没有必要)
如果它仍然不能工作,下载Ubuntu并创建一个可引导的USB (参见这里)
引导到USB之后,去尝试Ubuntu而不是安装Ubuntu,然后从那里挂载所有的文件系统。通常情况下,它们会自动安装。但是,如果分区不存在,将自动创建安装分区所需的文件。
就这样。希望能帮上忙!
https://askubuntu.com/questions/1441972
复制相似问题