首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Realtek读卡器不工作

Realtek读卡器不工作
EN

Ask Ubuntu用户
提问于 2013-02-20 01:31:02
回答 3查看 15.2K关注 0票数 4

我有一个内部读卡器在我的惠普展馆DV6-6155 be和读卡器是一个“多媒体读卡器”(我知道这只意味着尝试成为)和设备是RTS5209 PCI读卡器。我正在运行ubuntu 12.10。

当我插入sd卡时,什么都不会发生。这张卡可以从其他设备中读取,我曾经在另一个版本的Ubuntu中使用过。

代码语言:javascript
复制
uname -a
Linux Ketterer-Ubuntubook 3.5.0-24-generic #37-Ubuntu SMP Thu Feb 7 01:50:30 UTC 2013        x86_64 x86_64 x86_64 GNU/Linux

lspci的输出:

代码语言:javascript
复制
00:00.0 Host bridge: Intel Corporation 2nd Generation Core Processor Family DRAM         Controller (rev 09)
00:01.0 PCI bridge: Intel Corporation Xeon E3-1200/2nd Generation Core Processor   Family PCI Express Root Port (rev 09)
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
00:16.0 Communication controller: Intel Corporation 6 Series/C200 Series Chipset Family MEI Controller #1 (rev 04)
00:1a.0 USB controller: Intel Corporation 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #2 (rev 05)
00:1b.0 Audio device: Intel Corporation 6 Series/C200 Series Chipset Family High Definition Audio Controller (rev 05)
00:1c.0 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 1 (rev b5)
00:1c.1 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 2 (rev b5)
00:1c.2 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 3 (rev b5)
00:1c.3 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 4 (rev b5)
00:1d.0 USB controller: Intel Corporation 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #1 (rev 05)
00:1f.0 ISA bridge: Intel Corporation HM65 Express Chipset Family LPC Controller (rev 05)
00:1f.2 SATA controller: Intel Corporation 6 Series/C200 Series Chipset Family 6 port SATA AHCI Controller (rev 05)
00:1f.3 SMBus: Intel Corporation 6 Series/C200 Series Chipset Family SMBus Controller (rev 05)
01:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI Caicos [Radeon HD 6400M/7400M Series]
07:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 06)
0d:00.0 Network controller: Intel Corporation Centrino Wireless-N 1030 (rev 34)
13:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5209 PCI Express Card Reader (rev 01)
19:00.0 USB controller: NEC Corporation uPD720200 USB 3.0 Host Controller (rev 04)

lspci -vmmnn | grep -A4 -B2 Realtek的输出:

代码语言:javascript
复制
Slot:   13:00.0
Class:  Unassigned class [ff00]
Vendor: Realtek Semiconductor Co., Ltd. [10ec]
Device: RTS5209 PCI Express Card Reader [5209]
SVendor:    Hewlett-Packard Company [103c]
SDevice:    Device [1656]
Rev:    01

lsusb的输出:

代码语言:javascript
复制
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 003: ID 138a:0018 Validity Sensors, Inc. 
Bus 001 Device 004: ID 5986:02ac Acer, Inc 
Bus 002 Device 004: ID 1058:0748 Western Digital Technologies, Inc. 
Bus 002 Device 003: ID 8086:0189 Intel Corp.
EN

回答 3

Ask Ubuntu用户

发布于 2016-12-16 11:48:58

我建议使用在和遵循找到的步骤这里找到的驱动程序。

克隆/usr/src下的github存储库,并使用dkms安装驱动程序。

作为超级用户执行的步骤。如果需要的话,用sudo准备每一行。

安装git,如果您还没有它

sudo apt-get -y install git

转入/usr/src

cd /usr/src

克隆存储库

git clone https://github.com/chrisnew/rts_pstor.git rts_pstor-1.11

通过dkms编译和安装

dkms install rts_pstor/1.11

加载模块

sudo modprobe rts_pstor

已完成(不需要重新启动)

这在运行Ubuntu16.04的宏碁Aspire One D257上起了作用。

lspci输出:

代码语言:javascript
复制
Realtek Semiconductor Co., Ltd. RTS5209 PCI Express Card Reader (rev 01)

驱动程序安装后插入卡后的dmesg输出:

代码语言:javascript
复制
[  744.395191] Initializing Realtek PCIE storage driver...
[  903.017115] mmc0: new high speed SDHC card at address 1234
[  903.052409] mmcblk0: mmc0:1234 SA16G 14.6 GiB 
[  903.054433] mmcblk0: p1
票数 2
EN

Ask Ubuntu用户

发布于 2013-02-26 13:20:29

我也有同样的问题。我通过编辑/etc/modules来修正它,如下所示:

代码语言:javascript
复制
sudo -H gedit /etc/modules

然后,我在/etc/modules的末尾添加了以下一行:

代码语言:javascript
复制
tifm_sd

保存文件并重新启动。SD读卡器现在应该正常工作。

票数 0
EN

Ask Ubuntu用户

发布于 2016-03-07 01:00:40

这方面有一个模块:

看这里:http://www.omgubuntu.co.uk/2011/02/card-reader-not-working-hp-mini-ubuntu

在HP Mini 110和其他上网本上安装SD读卡器本指南将通过下载和安装所需驱动程序,向用户介绍HP Mini 110系列和Compaq Mini on 10-500系列上网本所有者--以及任何其他拥有使用Realtek rts5159读卡器的设备的人。若要识别您的读卡器模型,请在终端中运行lsusb。从rts5159下载Realtek 此链接的‘Unix(Linux)’驱动程序。下载后,解压缩,将文件夹移动到您的主目录。现在我们需要安装驱动程序。打开一个新的终端会话。运行以下命令中的每一个: cd rts_pstor make完成后,重新启动计算机,读卡器就可以工作了。

票数 0
EN
页面原文内容由Ask Ubuntu提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://askubuntu.com/questions/258533

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档