IDE drives
/dev/hda - primary master
/dev/hdb - primary slave
/dev/hdc - secondary master
/dev/hdd - secondary slave
Partitioning
hda1, hda2, hda3, etc
1-4 = primary partitions
5-16 = logical partitions
SCSI drives (USB drives are detected like this as
well)
/dev/sda - 1st SCSI drive
/dev/sdb - 2nd SCSI drive
/dev/sdc - 3rd SCSI drive
Basic prepartion of a hard disk:
fdisk (create partitions)
mkfs -t ext3 /dev/sdb1 (format) (other fs types: reisferfs, xfs, vfat)
tune2fs -m 1 /dev/sdb1 (decrease % of disk reservation, useful if only
data will be housed)
create mount point
add entry to /etc/fstab
tools for adding labels to partitions: e2lbael, reiserfstune, xfs_admin
Drives displayed at boot:
dmesg | grep hd
ide0: BM-DMA at 0xffa0-0xffa7, BIOS settings: hda:DMA, hdb:DMA
ide1: BM-DMA at 0xffa8-0xffaf, BIOS settings: hdc:DMA, hdd:pio
hda: WDC WD800BB-75JHA0, ATA DISK drive
hdb: WDC WD200BB-75AUA1, ATA DISK drive
hda: max request size: 128KiB
hda: 156250000 sectors (80000 MB) w/2048KiB Cache, CHS=65535/16/63,
UDMA(100)
hda: cache flushes supported
hda:
hdb: max request size: 128KiB
hdb: 39102336 sectors (20020 MB) w/2048KiB Cache, CHS=38792/16/63,
UDMA(100)
hdb: cache flushes not supported
hdb: hdb1 hdb2 hdb3
hdc: SONY CD-RW/DVD-ROM CRX330E, ATAPI CD/DVD-ROM drive
EXT3 FS on hdb3, internal journal
dmesg | grep sd
SCSI device sda: 106633344 512-byte hdwr sectors (54596 MB)
sda: Write Protect is off
sda: Mode Sense: 03 00 00 00
SCSI device sda: drive cache: write through
SCSI device sda: 106633344 512-byte hdwr sectors (54596 MB)
sda: Write Protect is off
sda: Mode Sense: 03 00 00 00
SCSI device sda: drive cache: write through
Attached scsi removable disk sda at scsi0, channel 0, id 0, lun 0
EXT3 FS on sda10, internal journal
Adding 2040212k swap on /dev/sda5. Priority:-1 extents:1
EXT3 FS on sda6, internal journal
EXT3 FS on sda9, internal journal
EXT3 FS on sda7, internal journal
EXT3 FS on sda11, internal journal
EXT3 FS on sda8, internal journal
Floppy drives
/dev/fd0 - 1st floppy drive (IRQ = 6, I/O = 3f0-3f7, DMA = 2)
/dev/fd1
- 2nd floppy drive
Serial ports
/dev/ttyS0 - COM1 (IRQ = 4, I/O = 3f8)
/dev/ttyS1 - COM2 (IRQ = 3, I/O = 2f8)
/dev/ttyS2 - COM3 (IRQ = 4, I/O = 3e8)
/dev/ttyS3 - COM4 (IRQ = 3, I/O = 2e8)
Parallel ports
/dev/lp0 - LPT1 (IRQ = 7, I/O = 378-37f)
/dev/lp1 - LPT2
(IRQ = 5, I/O = 278-27f)
Terminals
/dev/pty0 - 1st pseudo-terminal
/dev/pty1 - 2nd pseudo-terminal
Virtual consoles (1-6)
/dev/vcs1 - 1st virtual console
/dev/vcs2 - 2nd virtual console
Tape Drives
/dev/st0 - 1st tape drive
/dev/st1 - 2nd tape drive
/dev/nst0 - 1st tape drive (non-rewinding mode)
Gamepads/Joysticks
/dev/input/js0 - 1st gamepad
CDROM Drives
/dev/cdrom or /dev/sr0
Mice
/dev/input/mice - USB mouse
/dev/psaux - PS/2 mouse
Null Device
/dev/null
Reports from /proc
[eric@abba ~]$ cat /proc/version
Linux version 2.4.22-10mdk (nplanel@no.mandrakesoft.com) (gcc version
3.3.1 (Mandrake Linux 9.2 3.3.1-2mdk)) #1 Thu Sep 18 12:30:58 CEST 2003
[eric@abba ~]$ cat /proc/cpuinfo
processor : 0
vendor_id : AuthenticAMD
cpu family : 5
model : 8
model name : AMD-K6(tm) 3D processor
stepping : 12
cpu MHz : 300.680
cache size : 64 KB
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 1
wp : yes
flags : fpu vme de pse tsc msr mce cx8 pge mmx syscall 3dnow k6_mtrr
bogomips : 599.65
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 8
model name : Pentium III (Coppermine)
stepping : 10
cpu MHz : 930.476
cache size : 256 KB
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu
: yes
fpu_exception : yes
cpuid level : 2
wp
: yes
flags : fpu
vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 mmx
fxsr sse
bogomips : 1862.37
resinblade@emobile:/$ cat /proc/partitions
major minor #blocks name
8 0 244198584 sda
8 1 40131 sda1
8 2 102400 sda2
8 3 117657600 sda3
8 4 1 sda4
8 5 2098176 sda5
8 6 3905536 sda6
8 7 194560 sda7
8 8 7811072 sda8
8 9 24413184 sda9
8 10 4881408 sda10
8 11 975872 sda11
8 12 82101248 sda12
[eric@abba ~]$ cat /proc/interrupts
CPU0
0: 22978432 XT-PIC timer
1: 2 XT-PIC keyboard
2: 0 XT-PIC cascade
8: 1 XT-PIC rtc
11: 241950 XT-PIC eth0
14: 272871 XT-PIC ide0
15: 205 XT-PIC ide1
NMI: 0
LOC: 0
ERR: 0
MIS: 0
CPU0 CPU1
0: 1225254914 1101266
IO-APIC-edge timer
2:
0
0
XT-PIC cascade
8:
1
0
IO-APIC-edge rtc
11:
0
0
IO-APIC-edge ohci_hcd:usb1
16: 16483651
12674819 IO-APIC-level eth0
24:
14
1
IO-APIC-level aic7xxx
25:
60657193 0
IO-APIC-level aic7xxx
31:
16954737 1
IO-APIC-level aacraid
NMI:
0
0
LOC: 1226420767 1226420902
ERR: 0
MIS: 0
[eric@abba ~]$ cat /proc/ioports
0000-001f : dma1
0020-003f : pic1
0040-005f : timer
0060-006f : keyboard
0070-007f : rtc
0080-008f : dma page reg
00a0-00bf : pic2
00c0-00df : dma2
00f0-00ff : fpu
0170-0177 : ide1
01f0-01f7 : ide0
0376-0376 : ide1
0378-037a : parport0
03c0-03df : vga+
03f6-03f6 : ide0
03f8-03ff : serial(auto)
0cf8-0cff : PCI conf1
4000-400f : Silicon Integrated Systems [SiS] 5513 [IDE]
4000-4007 : ide0
4008-400f : ide1
f080-f0bf : C-Media Electronics Inc CM8738
f400-f47f : 3Com Corporation 3c905B 100BaseTX [Cyclone]
f400-f47f : 00:09.0
f600-f6ff : C-Media Electronics Inc CM8738
[eric@abba ~]$ cat /proc/meminfo
total: used: free: shared: buffers: cached:
Mem: 62824448 60850176 1974272 0 1761280 14344192
Swap: 518152192 137842688 380309504
MemTotal: 61352 kB
MemFree: 1928 kB
MemShared: 0 kB
Buffers: 1720 kB
Cached: 10660 kB
SwapCached: 3348 kB
Active: 6148 kB
Inactive: 10768 kB
HighTotal: 0 kB
HighFree: 0 kB
LowTotal: 61352 kB
LowFree: 1928 kB
SwapTotal: 506008 kB
SwapFree: 371396 kB
[resinblade@abba resinblade]$ cat
/proc/pci
PCI devices found:
Bus 0, device 0, function 0:
Host bridge: Silicon Integrated Systems [SiS] 5597
[SiS5582] (rev 16).
Master Capable. Latency=64.
Bus 0, device 1, function 0:
ISA bridge: Silicon Integrated Systems [SiS]
85C503/5513 (rev 1).
Bus 0, device 1, function 1:
IDE interface: Silicon Integrated Systems [SiS] 5513
[IDE] (rev 208).
Master Capable. Latency=128.
I/O at 0x4000 [0x400f].
Bus 0, device 9, function 0:
Ethernet controller: 3Com Corporation 3c905B
100BaseTX [Cyclone] (rev 36).
IRQ 11.
Master Capable. Latency=32.
Min Gnt=10.Max Lat=10.
I/O at 0xf400 [0xf47f].
Non-prefetchable 32 bit memory at
0xffafbf80 [0xffafbfff].
Bus 0, device 11, function 0:
VGA compatible controller: Matrox Graphics, Inc. MGA
1064SG [Mystique] (rev 2).
Master Capable. Latency=64.
Non-prefetchable 32 bit memory at
0xffafc000 [0xffafffff].
Prefetchable 32 bit memory at 0xfe000000
[0xfe7fffff].
Non-prefetchable 32 bit memory at
0xff000000 [0xff7fffff].
Bus 0, device 13, function 0:
Class 0403: PCI device 1045:c061 (OPTi Inc.) (rev
16).
IRQ 10.
Master Capable. Latency=64.
Non-prefetchable 32 bit memory at
0xffafa000 [0xffafafff].
Bus 0, device 20, function 0:
VGA compatible controller: Silicon Integrated
Systems [SiS] 5597/5598/6326 VGA (rev 104).
Prefetchable 32 bit memory at 0x10000000
[0x103fffff].
Non-prefetchable 32 bit memory at
0x10400000 [0x1040ffff].
I/O at 0x0 [0x7f].
[root@emobile resinblade]# lspci
00:00.0 Host bridge: Intel Corporation 82855PM Processor to I/O
Controller (rev 03)
00:01.0 PCI bridge: Intel Corporation 82855PM Processor to AGP
Controller (rev 03)
00:1d.0 USB Controller: Intel Corporation 82801DB/DBL/DBM
(ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 (rev 01)
00:1d.1 USB Controller: Intel Corporation 82801DB/DBL/DBM
(ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2 (rev 01)
00:1d.2 USB Controller: Intel Corporation 82801DB/DBL/DBM
(ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3 (rev 01)
00:1d.7 USB Controller: Intel Corporation 82801DB/DBM (ICH4/ICH4-M)
USB2 EHCI Controller (rev 01)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 81)
00:1f.0 ISA bridge: Intel Corporation 82801DBM (ICH4-M) LPC Interface
Bridge (rev 01)
00:1f.1 IDE interface: Intel Corporation 82801DBM (ICH4-M) IDE
Controller (rev 01)
00:1f.5 Multimedia audio controller: Intel Corporation 82801DB/DBL/DBM
(ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller (rev 01)
00:1f.6 Modem: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M)
AC'97 Modem Controller (rev 01)
01:00.0 VGA compatible controller: ATI Technologies Inc Radeon R250
[Mobility FireGL 9000] (rev 02)
02:00.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5705M
Gigabit Ethernet (rev 01)
02:01.0 CardBus bridge: O2 Micro, Inc. OZ711EC1 SmartCardBus Controller
(rev 20)
02:01.1 CardBus bridge: O2 Micro, Inc. OZ711EC1 SmartCardBus Controller
(rev 20)
02:03.0 Network controller: Broadcom Corporation BCM4306 802.11b/g
Wireless LAN Controller (rev 03)
[resinblade@abba resinblade]$ cat
/proc/devices
Character devices:
1 mem
2 pty
3 ttyp
4 /dev/vc/0
4 tty
4 ttyS
5 /dev/tty
5 /dev/console
5 /dev/ptmx
7 vcs
10 misc
13 input
29 fb
37 ht
128 ptm
136 pts
180 usb
254 devfs
Block devices:
1 ramdisk
2 fd
3 ide0
9 md
22 ide1
[root@emobile resinblade]# lsdev
Device
DMA IRQ I/O Ports
------------------------------------------------
0000:00:1d.0
bf80-bf9f
0000:00:1d.1
bf40-bf5f
0000:00:1d.2
bf20-bf3f
0000:00:1f.0
0800-087f 0880-08bf
0000:00:1f.1
bfa0-bfaf
0000:00:1f.5
b800-b8ff bc40-bc7f
0000:00:1f.6
b080-b0ff b400-b4ff
0000:01:00.0
c000-c0ff
acpi
9
ACPI
08e0-08e5
cascade
4 2
dma
0080-008f
dma1
0000-001f
dma2
00c0-00df
fpu
00f0-00ff
GPE0_BLK
0828-082f
i8042
1 12
ide0
14 01f0-01f7 03f6-03f6 bfa0-bfa7
ide1
15 0170-0177 0376-0376 bfa8-bfaf
Intel
b800-b8ff bc40-bc7f
keyboard
0060-006f
motherboard
f400-f4fe
ndiswrapper
5
parport0
1 7 0378-037a 0778-077a
PCI
c000-cfff d000-efff d000-d0ff
d400-d4ff d800-d8ff dc00-dcff
pic1
0020-0021
pic2
00a0-00a1
PM1a_CNT_BLK
0804-0805
PM1a_EVT_BLK
0800-0803
PM2_CNT_BLK
0820-0820
PM_TMR
0808-080b
pnp
04d0-04d1 0806-0807 0860-087f
0880-08bf 08c0-08df 0900-097f f400-f4fe
radeon@pci:0000:01:00.0
11
rtc
8 0070-0077
serial
03f8-03ff
timer
0
timer0
0040-0043
timer1
0050-0053
uhci_hcd
bf20-bf3f bf40-bf5f bf80-bf9f
vesafb
03c0-03df
[eric@abba eric]$ cat /proc/dma
4: cascade
myth:/ # cat /proc/asound/version
Advanced Linux Sound Architecture Driver Version 1.0.11rc3 (Sun Jan 22
09:27:15 2006 UTC).
myth:/ # cat /proc/asound/cards
0 [I82801BAICH2 ]: ICH - Intel 82801BA-ICH2
Intel
82801BA-ICH2 with AD1885 at 0xc800, irq 10
also
[resinblade@emobile ~]$ cat /proc/modules | grep snd
snd_hda_codec_idt 60300 1 - Live 0xf884d000
snd_hda_intel 26760 4 - Live 0xf8660000
snd_hda_codec 77988 2 snd_hda_codec_idt,snd_hda_intel, Live 0xf863d000
snd_hwdep 7560 1 snd_hda_codec, Live 0xf861b000
snd_seq_dummy 2696 0 - Live 0xf860f000
snd_seq_oss 31712 0 - Live 0xf85fe000
snd_seq_midi_event 7236 1 snd_seq_oss, Live 0xf85e9000
snd_seq 54672 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event, Live 0xf85d1000
snd_seq_device 7248 3 snd_seq_dummy,snd_seq_oss,snd_seq, Live 0xf85b5000
snd_pcm_oss 44672 0 - Live 0xf859f000
snd_pcm 82664 4 snd_hda_intel,snd_hda_codec,snd_pcm_oss, Live 0xf8574000
snd_timer 22124 2 snd_seq,snd_pcm, Live 0xf854c000
snd_mixer_oss 16612 1 snd_pcm_oss, Live 0xf8537000
snd 62564 18
snd_hda_codec_idt,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_seq_oss,snd_seq,snd_seq_device,snd_pcm_oss,snd_pcm,snd_timer,snd_mixer_oss,
Live 0xf8519000
soundcore 8128 1 snd, Live 0xf84fb000
snd_page_alloc 9164 2 snd_hda_intel,snd_pcm, Live 0xf84ed000
[resinblade@mandriva ~]$ cat /proc/scsi/scsi
Attached devices:
Host: scsi0 Channel: 00 Id: 00 Lun: 00
Vendor: DELL Model: Virtual
Disk Rev: V1.0
Type:
Direct-Access
ANSI SCSI revision: 02
Host: scsi2 Channel: 00 Id: 05 Lun: 00
Vendor: NEC Model: CD-ROM
DRIVE:466 Rev: 1.06
Type:
CD-ROM
ANSI SCSI revision: 02
[eric@abba ~]$ cat /proc/modules
udf
88736 0 (autoclean)
binfmt_misc
7116 1
parport_pc
25544 1 (autoclean)
lp
8160 0 (autoclean)
parport
34472 1 (autoclean) [parport_pc lp]
ipt_TOS
1592 12 (autoclean)
ipt_REJECT
3960 4 (autoclean)
ipt_LOG
4184 6 (autoclean)
ipt_state
1080 14 (autoclean)
ipt_multiport
1176 2 (autoclean)
ipt_conntrack
1560 0 (autoclean)
iptable_filter
2316 1 (autoclean)
iptable_mangle
2712 1 (autoclean)
iptable_nat
20814 0 (autoclean) (unused)
ip_conntrack
26468 3 (autoclean) [ipt_state ipt_conntrack iptable_na
t]
ip_tables
15072 11 [ipt_TOS ipt_REJECT ipt_LOG ipt_state ipt_multi
port ipt_conntrack iptable_filter iptable_mangle iptable_nat]
nfsd
75280 0 (autoclean)
af_packet
14856 1 (autoclean)
ide-floppy
16128 0 (autoclean)
ide-tape
48816 0 (autoclean)
ide-cd
33956 0 (autoclean)
cdrom
32608 0 (autoclean) [ide-cd]
floppy
55932 0
3c59x
29680 1 (autoclean)
supermount
84032 2 (autoclean)
rtc
9004 0 (autoclean)
ext3
60048 7
jbd
39264 7 [ext3]
[root@emobile resinblade]# lsmod
Module
Size Used by
radeon
113472 2
drm
62420 3 radeon
vmnet
40796 3
parport_pc
32036 0
parport
33320 1 parport_pc
nfsd
216100 9
vmblock
13536 3
exportfs
5408 1 nfsd
lockd
56168 2 nfsd
vmmon
449612 0
nfs_acl
3680 1 nfsd
rpcsec_gss_krb5
8616 0
auth_rpcgss
36576 1 rpcsec_gss_krb5
des
17984 0
sunrpc
137308 6 nfsd,lockd,nfs_acl,rpcsec_gss_krb5,auth_rpcgss
snd_seq_dummy
3492 0
snd_seq_oss
31168 0
snd_seq_midi_event 6944 1
snd_seq_oss
snd_seq
49232 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
ndiswrapper
169648 0
snd_seq_device
7052 3 snd_seq_dummy,snd_seq_oss,snd_seq
snd_pcm_oss
40192 0
snd_mixer_oss
15904 1 snd_pcm_oss
tg3
102116 0
af_packet
17768 4
snd_intel8x0
29212 1
snd_ac97_codec
96708 1 snd_intel8x0
snd_ac97_bus
2720 1 snd_ac97_codec
snd_pcm
69892 3 snd_pcm_oss,snd_intel8x0,snd_ac97_codec
snd_timer
19396 2 snd_seq,snd_pcm
snd_page_alloc
8552 2 snd_intel8x0,snd_pcm
snd
46276 11
snd_seq_oss,snd_seq,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_intel8x0,snd_ac97_codec,snd_pcm,snd_timer
soundcore
7936 1 snd
ipv6
237088 12
kqemu
121924 0
video
13796 0
thermal
11080 0
fan
3908 0
container
3840 0
button
5648 0
battery
8132 0
ac
4164 0
ide_cd
35616 0
binfmt_misc
9704 1
loop
15208 0
dm_mod
49560 0
pcmcia
31756 0
yenta_socket
24076 4
rsrc_nonstatic
11616 1 yenta_socket
pcmcia_core
34388 3 pcmcia,yenta_socket,rsrc_nonstatic
cpufreq_ondemand 6956 0
cpufreq_conservative 6920 0
cpufreq_powersave 2272 0
speedstep_centrino 7984 1
freq_table
4704 1 speedstep_centrino
processor
21256 2 thermal,speedstep_centrino
intel_agp
22684 1
agpgart
27048 2 drm,intel_agp
nvram
7944 0
i8k
5976 1
ehci_hcd
28904 0
uhci_hcd
20912 0
usbcore
112960 4 ndiswrapper,ehci_hcd,uhci_hcd
joydev
8800 0
evdev
8672 2
tsdev
6880 0
ext3
125448 6
jbd
51060 1 ext3
resinblade@emobile:~$ cat /proc/swaps
Filename
Type
Size Used Priority
/dev/sda6
partition 3905532
1644 -1
resinblade@emobile:~$ cat /proc/mounts
rootfs / rootfs rw 0 0
none /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0
none /proc proc rw,nosuid,nodev,noexec,relatime 0 0
none /dev devtmpfs rw,relatime,size=1666844k,nr_inodes=211245,mode=755 0 0
none /dev/pts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000 0 0
fusectl /sys/fs/fuse/connections fusectl rw,relatime 0 0
/dev/disk/by-uuid/65951cec-1077-4fce-9107-b9194e0c4c20 / ext4 rw,relatime,errors=remount-ro,barrier=1,data=ordered 0 0
none /sys/kernel/debug debugfs rw,relatime 0 0
none /sys/kernel/security securityfs rw,relatime 0 0
none /dev/shm tmpfs rw,nosuid,nodev,relatime 0 0
none /var/run tmpfs rw,nosuid,relatime,mode=755 0 0
none /var/lock tmpfs rw,nosuid,nodev,noexec,relatime 0 0
/dev/sda11 /tmp ext4 rw,relatime,barrier=1,data=ordered 0 0
/dev/sda7 /boot ext4 rw,relatime,barrier=1,data=ordered 0 0
/dev/sda9 /usr ext4 rw,relatime,barrier=1,data=ordered 0 0
/dev/sda12 /home ext4 rw,relatime,barrier=1,data=ordered 0 0
/dev/sda10 /var ext4 rw,relatime,barrier=1,data=ordered 0 0
none /var/run tmpfs rw,nosuid,relatime,mode=755 0 0
none /var/lock tmpfs rw,nosuid,nodev,noexec,relatime 0 0
binfmt_misc /proc/sys/fs/binfmt_misc binfmt_misc rw,nosuid,nodev,noexec,relatime 0 0
gvfs-fuse-daemon /home/resinblade/.gvfs fuse.gvfs-fuse-daemon rw,nosuid,nodev,relatime,user_id=1000,group_id=1000 0 0
/dev/sdb1 /media/KINGSTON vfat
rw,nosuid,nodev,relatime,uid=1000,gid=1000,fmask=0022,dmask=0077,codepage=cp437,iocharset=iso8859-1,shortname=mixed,showexec,utf8,flush,errors=remount-ro
0 0
resinblade@emobile:/$ cat /proc/iomem
00000000-00000fff : reserved
00001000-00001fff : System RAM
00002000-0000ffff : reserved
00010000-00095bff : System RAM
00095c00-0009ffff : reserved
000a0000-000bffff : PCI Bus 0000:00
000a0000-000bffff : Video RAM area
000c0000-000c7fff : Video ROM
000ce800-000d4fff : Adapter ROM
000e0000-000fffff : reserved
000f0000-000fffff : System ROM
00100000-cf65efff : System RAM
00100000-005d20ad : Kernel code
005d20ae-0081a7a7 : Kernel data
008cd000-009a4adb : Kernel bss
cf65f000-cf67efff : ACPI Tables
cf67f000-cf76efff : ACPI Non-volatile Storage
cf76f000-cfffffff : reserved
d0000000-feafffff : PCI Bus 0000:00
d0000000-e30fffff : PCI Bus 0000:01
d0000000-dfffffff : 0000:01:00.0
e0000000-e1ffffff : 0000:01:00.0
e2000000-e2ffffff : 0000:01:00.0
e2000000-e2ffffff : nvidia
e3000000-e307ffff : 0000:01:00.0
e3080000-e3083fff : 0000:01:00.1
e3080000-e3083fff : ICH HD audio
e3100000-e59fffff : PCI Bus 0000:04
e3400000-e37fffff : PCI CardBus 0000:05
e5900000-e59007ff : 0000:04:00.4
e5900000-e59007ff : firewire_ohci
e5930000-e59300ff : 0000:04:00.1
e5930000-e59300ff : mmc0
e5940000-e5940fff : 0000:04:00.0
e5940000-e5940fff : yenta_socket
e5a00000-e6dfffff : PCI Bus 0000:03
e5a00000-e5a01fff : 0000:03:00.0
e5a00000-e5a01fff : iwlagn
e6e00000-e81fffff : PCI Bus 0000:02
e8200000-e821ffff : 0000:00:19.0
e8200000-e821ffff : e1000e
e8220000-e8220fff : 0000:00:1f.6
e8220000-e8220fff : ips thermal sensor
e8230000-e82300ff : 0000:00:1f.3
e8240000-e82407ff : 0000:00:1f.2
e8240000-e82407ff : ahci
e8250000-e82503ff : 0000:00:1d.0
e8250000-e82503ff : ehci_hcd
e8260000-e8263fff : 0000:00:1b.0
e8260000-e8263fff : ICH HD audio
e8270000-e82703ff : 0000:00:1a.0
e8270000-e82703ff : ehci_hcd
e8280000-e8280fff : 0000:00:19.0
e8280000-e8280fff : e1000e
e82c0000-e82c0fff : pnp 00:0a
e8300000-e84fffff : PCI Bus 0000:02
e8500000-e86fffff : PCI Bus 0000:03
ec000000-efffffff : PCI Bus 0000:04
ec000000-efffffff : PCI CardBus 0000:05
f8000000-fbffffff : PCI MMCONFIG 0000 [bus 00-3f]
f8000000-fbffffff : reserved
f8000000-fbffffff : pnp 00:0a
fec00000-fec00fff : reserved
fec00000-fec003ff : IOAPIC 0
fed00000-fed003ff : HPET 0
fed10000-fed13fff : reserved
fed10000-fed13fff : pnp 00:0a
fed18000-fed19fff : reserved
fed18000-fed18fff : pnp 00:0a
fed19000-fed19fff : pnp 00:0a
fed1c000-fed1ffff : reserved
fed1c000-fed1ffff : pnp 00:0a
fed20000-fed3ffff : pnp 00:0a
fed45000-fed8ffff : pnp 00:0a
fed90000-fed93fff : pnp 00:0a
fee00000-fee00fff : Local APIC
fee00000-fee00fff : reserved
ff800000-ffffffff : reserved
resinblade@emobile:/proc$ lsusb
Bus 002 Device 004: ID 0a5c:5801 Broadcom Corp. BCM5880 Secure Applications Processor with fingerprint swipe sensor
Bus 002 Device 003: ID 8086:0188 Intel Corp. WiMAX Connection 2400m
Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 008: ID 413c:2005 Dell Computer Corp. RT7D50 Keyboard
Bus 001 Device 007: ID 046d:c016 Logitech, Inc. Optical Wheel Mouse
Bus 001 Device 006: ID 0424:2504 Standard Microsystems Corp. USB 2.0 Hub
Bus 001 Device 005: ID 05ca:1814 Ricoh Co., Ltd HD Webcam
Bus 001 Device 004: ID 413c:2513 Dell Computer Corp.
Bus 001 Device 003: ID 413c:2513 Dell Computer Corp.
Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
resinblade@emobile:/proc$ lsscsi
[0:0:0:0] disk
ATA
ST9250410AS D005 /dev/sda
[1:0:0:0] cd/dvd HL-DT-ST DVD+-RW GU40N A101 /dev/sr0