SD 卡未安装在 Lubuntu

SD 卡未安装在 Lubuntu

我的相机有一张 2 GB 的 Transcend SD 卡,但当我将其插入笔记本电脑的 SD 插槽时,Lubuntu 并未自动安装它。我在 Ubuntu 上没有遇到同样的问题。我在图形存储设备管理器中也看不到它。

我尝试了以下方法来解决12,但问题仍然存在。

内核版本:3.5.0-25-generic

好的,我试过了dmesg,步骤如下:

dmesg输出

[ 9219.520160] mmc0: Timeout waiting for hardware interrupt.
[ 9229.536177] mmc0: Timeout waiting for hardware interrupt.
[ 9239.552162] mmc0: Timeout waiting for hardware interrupt.
[ 9243.048896] mmc0: Card removed during transfer!
[ 9243.048908] mmc0: Resetting controller

lspci输出

00:00.0 Host bridge: Intel Corporation Mobile 945GM/PM/GMS, 943/940GML and 945GT Express Memory Controller Hub (rev 03)
00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller (rev 03)
00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller (rev 03)
00:1b.0 Audio device: Intel Corporation NM10/ICH7 Family High Definition Audio Controller (rev 02)
00:1c.0 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 1 (rev 02)
00:1c.1 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 2 (rev 02)
00:1c.2 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 3 (rev 02)
00:1d.0 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #1 (rev 02)
00:1d.1 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #2 (rev 02)
00:1d.2 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #3 (rev 02)
00:1d.3 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #4 (rev 02)
00:1d.7 USB controller: Intel Corporation NM10/ICH7 Family USB2 EHCI Controller (rev 02)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e2)
00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge (rev 02)
00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller (rev 02)
00:1f.2 SATA controller: Intel Corporation 82801GBM/GHM (ICH7-M Family) SATA Controller [AHCI mode] (rev 02)
00:1f.3 SMBus: Intel Corporation NM10/ICH7 Family SMBus Controller (rev 02)
05:00.0 Network controller: Intel Corporation PRO/Wireless 3945ABG [Golan] Network Connection (rev 02)
06:04.0 FireWire (IEEE 1394): O2 Micro, Inc. Firewire (IEEE 1394) (rev 02)
06:04.2 SD Host controller: O2 Micro, Inc. Integrated MMC/SD Controller (rev 01)
06:04.3 Mass storage controller: O2 Micro, Inc. Integrated MS/xD Controller (rev 01)
06:05.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10)

我该如何解决这个问题?

我也在我的笔记本电脑上尝试使用 Linux Mint(Linux 版本 3.5.0-17-generic),但它仍然不起作用......

答案1

MountManager 被描述为“用于在 Linux 中安装存储设备、闪存卡、可移动磁盘的程序”。即使它不能完全解决您的问题,MountManager 也会让您更轻松地手动安装和卸载 SD 卡。对于比 Ubuntu 12.10 更新的 Ubuntu 版本,默认 Ubuntu 存储库中不再提供 MountManager,而是可以使用 Ubuntu 中默认安装的磁盘应用程序。

您可以在 Synaptic 包管理器中搜索 mountmanager 并点击“获取屏幕截图”来查看它的屏幕截图,也可以从 Synaptic 安装它。

答案2

我不确定您是否遇到了与我相同的问题,但这会使它在我的笔记本电脑上自动安装:

sudo -i
echo 1 > /sys/bus/pci/rescan
exit

答案3

首先检查是否确实没有安装:

mount  -l

如果没有,请尝试手动安装: http://manpages.ubuntu.com/manpages/hardy/man8/mount.8.html向您展示如何执行此操作。看起来很复杂,但一旦你做过一次之后就很简单了。

相关内容