arch-wiki-md-repo
Version:
All arch-wiki articles in markdown format, updated every two days.
156 lines (110 loc) • 5.88 kB
Markdown
## Contents
* [1 About this laptop](#About_this_laptop)
* [2 Foreword](#Foreword)
* [3 Video](#Video)
* [4 Webcam](#Webcam)
* [5 Sound](#Sound)
* [6 Microphone](#Microphone)
* [7 Ports and drives](#Ports_and_drives)
* [8 Power management](#Power_management)
* [9 Input devices](#Input_devices)
* [10 Networking](#Networking)
## About this laptop
lspci:
```
00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub (rev 07)
00:01.0 PCI bridge: Intel Corporation Mobile 4 Series Chipset PCI Express Graphics Port (rev 07)
00:1a.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 (rev 03)
00:1a.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 (rev 03)
00:1a.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 (rev 03)
00:1a.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 (rev 03)
00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 03)
00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 (rev 03)
00:1c.1 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 2 (rev 03)
00:1c.3 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 4 (rev 03)
00:1c.5 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 6 (rev 03)
00:1d.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 (rev 03)
00:1d.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 (rev 03)
00:1d.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 (rev 03)
00:1d.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 (rev 03)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 93)
00:1f.0 ISA bridge: Intel Corporation ICH9M LPC Interface Controller (rev 03)
00:1f.2 SATA controller: Intel Corporation 82801IBM/IEM (ICH9M/ICH9M-E) 4 port SATA Controller [AHCI mode] (rev 03)
00:1f.3 SMBus: Intel Corporation 82801I (ICH9 Family) SMBus Controller (rev 03)
01:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI RV635 [Mobility Radeon HD 3650]
01:00.1 Audio device: Advanced Micro Devices [AMD] nee ATI RV635 HDMI Audio [Radeon HD 3600 Series]
04:00.0 Network controller: Broadcom Corporation BCM4312 802.11b/g LP-PHY (rev 01)
08:00.0 Ethernet controller: Broadcom Corporation NetLink BCM5784M Gigabit Ethernet PCIe (rev 10)
09:01.0 FireWire (IEEE 1394): Ricoh Co Ltd R5C832 IEEE 1394 Controller (rev 05)
09:01.1 SD Host controller: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter (rev 22)
09:01.2 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter (rev 12)
09:01.3 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev 12)
```
lsusb:
```
Bus 001 Device 003: ID 05ca:18a1 Ricoh Co., Ltd
Bus 003 Device 002: ID 0a5c:4500 Broadcom Corp. BCM2046B1 USB 2.0 Hub (part of BCM2046 Bluetooth)
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:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 003: ID 413c:8157 Dell Computer Corp. Integrated Keyboard
Bus 003 Device 004: ID 413c:8158 Dell Computer Corp. Integrated Touchpad / Trackstick
Bus 003 Device 005: ID 413c:8156 Dell Computer Corp. Wireless 370 Bluetooth Mini-card
```
Kernel used at the moment: Linux laptop 3.6.6-1-ARCH #1 SMP PREEMPT Mon Nov 5 13:14:42 CET 2012 i686 GNU/Linux
## Foreword
The laptop works mostly out of the box with a few configurations.
## Video
This laptop has a "ATI Mobility HD Radeon 3600" card as you could see on the lspci. Use xf86-video-ati or proprietary catalyst driver. Guides can be found in the [ATI](/index.php/ATI "ATI") article in this wiki.
## Webcam
It also has 2 MP webcam, it's listed on lsusb:
```
Bus 001 Device 003: ID 0c45:63eb Microdia
```
Works perfectly with the uvcvideo module. Works using cheese.
## Sound
Edit /etc/modprobe.d/modprobe.conf adding:
```
alias snd-card-0 snd_hda_intel
alias snd-slot-0 snd_hda_intel
options snd-pscp index=2
options snd_hda_intel model=dell-m6
```
And in /etc/modprobe.d/alsa-base.conf:
```
options snd-hda-intel model=dell-m6
```
Then run:
```
# modprobe snd-hda-intel
# modprobe snd-pcm-oss
```
## Microphone
To set up microphone:
```
# amixer sset 'Mic' 85% cap
# amixer sset 'Capture' 85% cap
# amixer sset 'Digital' 85%
# amixer sset 'Internal Mic' 85% cap
```
If you want to use the internal microphone (embedded next to the webcam) run:
```
# amixer sset 'Mic Jack Mode' 'Mic In'
```
If you want to use an external microphone using the jack run:
```
# amixer sset 'Mic Jack Mode' 'Line In'
```
## Ports and drives
CD/DVD drive worked out of the box.
## Power management
Works out of the box.
## Input devices
Keyboard works out of the box. For touchpad read the [Synaptics](/index.php/Synaptics "Synaptics") guide.
## Networking
Ethernet works out of the box. Wireless may work out of the box depending on your wifi card. If you have a Broadcom BCM43XX card, you will need to install the [broadcom-wl](https://www.archlinux.org/packages/?name=broadcom-wl) driver from the [AUR](/index.php/AUR "AUR"). Read [Broadcom wireless](/index.php/Broadcom_wireless "Broadcom wireless") guide for details. [b43](/index.php/Broadcom_wireless#b43.2Fb43legacy "Broadcom wireless") driver can work as well, if supplied with proper firmware.