- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我今天早些时候使用 apt-get upgrade 之后,我的 Raspberry Pi(Raspbian Jessie)不再能够自动挂载我的外部硬盘。在 apt-get upgrade 之前,自动挂载工作得非常好,但现在我什至无法再手动挂载我的外部硬盘了。
这是我收到的错误消息:
pi@raspberrypi:~ $ sudo mount /dev/sda1 /mnt
modprobe: ERROR: ../libkmod/libkmod.c:557 kmod_search_moddep() could not open moddep file '/lib/modules/4.4.26-v7+/modules.dep.bin'
ntfs-3g-mount: fuse device is missing, try 'modprobe fuse' as root
modprobe: ERROR: ../libkmod/libkmod.c:557 kmod_search_moddep() could not open moddep file '/lib/modules/4.4.26-v7+/modules.dep.bin'
sudo apt-get install --reinstall raspberrypi-bootloader raspberrypi-kernel
I suspect that what is happening is that updates to the kernel and grub config are being written to the /boot folder, but not onto the boot device. This has caused the modules and the kernel to go out of sync. [...]
I fixed it by adding /boot back to /etc/fstab, rebooting to another kernel where the modules were still working, thus mounting /boot, and finally reinstalling apt-get install --reinstall linux-image-3.16.0-4-amd64.
uname -a
Linux raspberrypi 4.4.26-v7+ #915 SMP Thu Oct 20 17:08:44 BST 2016 armv7l GNU/Linux
dpkg -s fuse
Status: install ok installed
Priority: optional
Section: utils
Installed-Size: 103
Maintainer: Laszlo Boszormenyi (GCS)
Architecture: armhf
Version: 2.9.3-15+deb8u2
Depends: libc6 (>= 2.4), libfuse2 (= 2.9.3-15+deb8u2), adduser, mount (>= 2.19.1), sed (>= 4), udev | makedev
Conffiles:
/etc/fuse.conf 298587592c8444196833f317def414f2
Description: Filesystem in Userspace
Filesystem in Userspace (FUSE) is a simple interface for userspace programs to export a virtual filesystem to the Linux kernel. It also aims to provide a secure method for non privileged users to create and mount their own filesystem implementations.
Homepage: http://fuse.sourceforge.net/
最佳答案
我找到了解决方案(有关详细信息,请参见下文)! 结果是引导分区没有挂载,操作系统恢复到apt-get升级前的旧内核。所以我只需要确保/boot 在启动时自动挂载,以便使用正确的内核。
我的错误分析的进一步步骤():
好的,所以我设法自己解决了这个问题。事实证明/boot 分区没有挂载,因此我的 Raspberry Pi 恢复到旧内核,而不是 apt-get upgrade 附带的花哨的新内核。
我通过使用 uname -r
发现了问题, 这给了我 ' 4.9.35-v7+ '作为回答。这很奇怪,因为原始错误消息具有不同的版本号:
modprobe: ERROR: ../libkmod/libkmod.c:557 kmod_search_moddep() could not open moddep file '/lib/modules/4.4.26-v7+/modules.dep.bin'
cd /lib/modules
导航到/lib/modules 时我也看到了这个:
pi@raspberrypi:/lib/modules $ ls
4.9.35+ 4.9.35-v7+
sudo nano /etc/fstab/
# automount /boot partition at startup
/dev/mmcblk0p6 /boot vfat defaults 0 2
sudo raspi-config
检查启动分区是否正确挂载(raspi-config 只会让您在挂载分区时进入其菜单,否则它会告诉您需要先挂载启动分区)。
sudo apt-get install --reinstall raspberrypi-bootloader raspberrypi-kernel
再次加倍确保最新的内核也安装在引导分区上 - 但我不知道这是否是关键步骤。
关于raspberry-pi - 树莓派杰西 : Cannot mount NTFS external harddrive anymore after 'apt-get upgrade' (fuse device is missing),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47002854/
我使用的是 debian 8 Jessie,它的存储库中只有 gcc-4.9。我尝试了两种方式安装 gcc-4.7 都没有成功。 先试试 我尝试通过下载文件 gcc-4.7.0.tar.gz 手动安装
我是一名优秀的程序员,十分优秀!