[SuSE 9.2] /dev/hda5 mount niet automatisch

Pagina: 1
Acties:

Onderwerpen


Acties:
  • 0 Henk 'm!

  • Borromini
  • Registratie: Januari 2003
  • Niet online

Borromini

Mislukt misantroop

Topicstarter
Mijn SuSE draait vlotjes, upgraded naar KDE 3.4 enzo :9~ . Alleen fstab /dev/hda5 maar niet mounten. Het vreemde is, als ik hem na het opstarten manueel mount, dan gaat het wel - dan krijg ik alle subfolders te zien in mijn /home/stijn/muziek. Het is een ReiserFS-partitie, aangemaakt in een vorige SuSE-install (ik ben nog wat aan het prutsen :p). Op dat vlak zou er dus geen enkel probleem mogen zijn. Het partitioneringsprogramma tijdens de install gaf de schijf correct weer (al wou het die eerst formatteren, maar al mijn muziek staat dr op, 30 Gb zonder backups, dus dat zag ik niet zitten). Entries dus veranderd, gezegd dat hij de partitie moest mounten in een bepaalde map (want mijn gebruikersmap was nog niet aangemaakt toen), na de reboot enz en de rest van het installatieproces (update,...) zie ik dat ze niet gemount is, check mijn fstab en dat regeltje staat er gewoon niet meer :(. Handmatig ingevoerd, staat er nog altijd in, maar helpt niet echt...

Zo staat het erin:

/dev/hda5 /home/stijn/Muziek reiserfs defaults 0 2

daarvoor stond er:
/dev/hda5 /home/stijn/Muziek reiserfs defaults 0 0

dáárvoor stond er nog ipv 'defaults' iets anders, kan me dat niet meer herinneren, zit hier op me werk. Weet wel dat ook originele parameter niet hielp.

Anyone?

[ Voor 11% gewijzigd door Borromini op 20-04-2005 14:01 ]

Got Leenucks? | Debian Bookworm x86_64 / ARM | OpenWrt: Empower your router | Blogje


Acties:
  • 0 Henk 'm!

  • laurencevde
  • Registratie: November 2001
  • Laatst online: 29-09-2024
wat geeft dmesg?

Have a taste of freedom. It is sometimes a bitter pill. To me though, this is the sweetness of the GPL


Acties:
  • 0 Henk 'm!

  • Dutchess_Nicole
  • Registratie: Augustus 2001
  • Laatst online: 13:40
Borromini schreef op woensdag 20 april 2005 @ 13:57:
Zo staat het erin:

/dev/hda5 /home/stijn/Muziek reiserfs defaults 0 2

daarvoor stond er:
/dev/hda5 /home/stijn/Muziek reiserfs defaults 0 0

dáárvoor stond er nog ipv 'defaults' iets anders, kan me dat niet meer herinneren, zit hier op me werk. Weet wel dat ook originele parameter niet hielp.

Anyone?
Als je hem wel handmatig kan mounten dan zal de fstab entry waarschijnlijk wel kloppen. Het enig wat ik kan aanraden dat je even aanpast is: de default vervangen door noatime,auto, zodat die automatisch gemount wordt tijdens het booten. Eventueel kun je er user bij zetten als je hem als user wilt mounten/unmounten, of ro als hij read-only moet zijn (zal wel niet).

voorbeeldje uit mij eigen fstab:
code:
1
2
3
/dev/hdb1       /mnt/videos     reiserfs        noatime,auto    0 2
/dev/hdb2       /mnt/music      reiserfs        noatime,auto    0 2
/dev/hdb3       /mnt/downloads  reiserfs        noatime,auto,exec       0 2


Veel geluk ermee :)

Kia E-Niro 2019 Executiveline. OTGW/HA Enthousiasteling.


Acties:
  • 0 Henk 'm!

  • Borromini
  • Registratie: Januari 2003
  • Niet online

Borromini

Mislukt misantroop

Topicstarter
Ik heb de volgende opties geprobeerd:
noatime 0 1
noatime,auto 0 0
noatime,auto 0 1
noatime,auto 0 2

Misschien dat het feit dat mijn sdb6 ook niet gemount wordt, helpt (in a strange way 8)7)?
MIjn hd-config is als volgt:
hda (1e logische partitie mount niet)
/
sda
sdb (1e partitie [primair] mount evenmin)
Het commando dmesg gaf het volgende:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
linux:~ # dmesg
Linux version 2.6.8-24.14-default (geeko@buildhost) (gcc version 3.3.4 (pre 3.3.
5 20040809)) #1 Tue Mar 29 09:27:43 UTC 2005
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
 BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 000000003fff0000 (usable)
 BIOS-e820: 000000003fff0000 - 000000003fff3000 (ACPI NVS)
 BIOS-e820: 000000003fff3000 - 0000000040000000 (ACPI data)
 BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
 BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
 BIOS-e820: 00000000ffff0000 - 0000000100000000 (reserved)
128MB vmalloc/ioremap area available.
127MB HIGHMEM available.
896MB LOWMEM available.
On node 0 totalpages: 262128
  DMA zone: 4096 pages, LIFO batch:1
  Normal zone: 225280 pages, LIFO batch:16
  HighMem zone: 32752 pages, LIFO batch:7
DMI 2.2 present.
ACPI: RSDP (v000 Nvidia                                    ) @ 0x000f75e0
ACPI: RSDT (v001 Nvidia AWRDACPI 0x42302e31 AWRD 0x00000000) @ 0x3fff3000
ACPI: FADT (v001 Nvidia AWRDACPI 0x42302e31 AWRD 0x00000000) @ 0x3fff3040
ACPI: MADT (v001 Nvidia AWRDACPI 0x42302e31 AWRD 0x00000000) @ 0x3fff7640
ACPI: DSDT (v001 NVIDIA AWRDACPI 0x00001000 MSFT 0x0100000e) @ 0x00000000
ACPI: PM-Timer IO Port: 0x4008
ACPI: local apic disabled
Built 1 zonelists
Kernel command line: root=/dev/hda11 vga=0x317 selinux=0 resume=/dev/hda8 deskto
p elevator=as splash=silent
bootsplash: silent mode.
Initializing CPU#0
PID hash table entries: 4096 (order: 12, 65536 bytes)
Detected 2205.256 MHz processor.
Using pmtmr for high-res timesource
Console: colour dummy device 80x25
Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Memory: 1033960k/1048512k available (2076k kernel code, 13820k reserved, 780k da
ta, 212k init, 131008k highmem)
Checking if this processor honours the WP bit even in supervisor mode... Ok.
Calibrating delay loop... 4358.14 BogoMIPS (lpj=2179072)
Security Scaffold v1.0.0 initialized
SELinux:  Disabled at boot.
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
CPU: After generic identify, caps: 0383fbff c1c3fbff 00000000 00000000
CPU: After vendor identify, caps:  0383fbff c1c3fbff 00000000 00000000
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 512K (64 bytes/line)
CPU: After all inits, caps:        0383fbff c1c3fbff 00000000 00000020
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
CPU: AMD Athlon(tm) XP 3200+ stepping 00
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Checking 'hlt' instruction... OK.
ACPI: Looking for DSDT in initrd... not found!
ACPI: IRQ9 SCI: Level Trigger.
checking if image is initramfs...it isn't (no cpio magic); looks like an initrd
Freeing initrd memory: 1257k freed
NET: Registered protocol family 16
PCI: PCI BIOS revision 2.10 entry at 0xfb410, last bus=4
PCI: Using configuration type 1
mtrr: v2.0 (20020519)
ACPI: Subsystem revision 20040715
ACPI: Interpreter enabled
ACPI: Using PIC for interrupt routing
ACPI: PCI Root Bridge [PCI0] (00:00)
PCI: Probing PCI hardware (bus 00)
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGPB._PRT]
ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK2] (IRQs 3 4 *5 6 7 9 10 11 12 14 15)
ACPI: PCI Interrupt Link [LNK3] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LNK4] (IRQs *3 4 5 6 7 9 10 11 12 14 15)
ACPI: PCI Interrupt Link [LNK5] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LUBA] (IRQs 3 4 5 6 *7 9 10 11 12 14 15)
ACPI: PCI Interrupt Link [LUBB] (IRQs 3 4 *5 6 7 9 10 11 12 14 15)
ACPI: PCI Interrupt Link [LMAC] (IRQs 3 4 *5 6 7 9 10 11 12 14 15)
ACPI: PCI Interrupt Link [LAPU] (IRQs 3 *4 5 6 7 9 10 11 12 14 15)
ACPI: PCI Interrupt Link [LACI] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)
ACPI: PCI Interrupt Link [LMCI] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LSMB] (IRQs *3 4 5 6 7 9 10 11 12 14 15)
ACPI: PCI Interrupt Link [LUB2] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LFIR] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [L3CM] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LIDE] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [APC1] (IRQs *16), disabled.
ACPI: PCI Interrupt Link [APC2] (IRQs *17), disabled.
ACPI: PCI Interrupt Link [APC3] (IRQs *18), disabled.
ACPI: PCI Interrupt Link [APC4] (IRQs *19), disabled.
ACPI: PCI Interrupt Link [APC5] (IRQs *16), disabled.
ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22) *0, disabled.
ACPI: PCI Interrupt Link [APCG] (IRQs 20 21 22) *0, disabled.
ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22) *0, disabled.
ACPI: PCI Interrupt Link [APCI] (IRQs 20 21 22) *0, disabled.
ACPI: PCI Interrupt Link [APCJ] (IRQs 20 21 22) *0, disabled.
ACPI: PCI Interrupt Link [APCK] (IRQs 20 21 22) *0, disabled.
ACPI: PCI Interrupt Link [APCS] (IRQs *23), disabled.
ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22) *0, disabled.
ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22) *0, disabled.
ACPI: PCI Interrupt Link [AP3C] (IRQs 20 21 22) *0, disabled.
ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22) *0, disabled.
Linux Plug and Play Support v0.97 (c) Adam Belay
PCI: Using ACPI for IRQ routing
ACPI: PCI Interrupt Link [LSMB] enabled at IRQ 3
ACPI: PCI interrupt 0000:00:01.1[A] -> GSI 3 (level, low) -> IRQ 3
ACPI: PCI Interrupt Link [LUBA] enabled at IRQ 7
ACPI: PCI interrupt 0000:00:02.0[A] -> GSI 7 (level, low) -> IRQ 7
ACPI: PCI Interrupt Link [LUBB] enabled at IRQ 5
ACPI: PCI interrupt 0000:00:02.1[B] -> GSI 5 (level, low) -> IRQ 5
ACPI: PCI Interrupt Link [LUB2] enabled at IRQ 11
ACPI: PCI interrupt 0000:00:02.2[C] -> GSI 11 (level, low) -> IRQ 11
ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 5
ACPI: PCI interrupt 0000:00:04.0[A] -> GSI 5 (level, low) -> IRQ 5
ACPI: PCI Interrupt Link [LAPU] enabled at IRQ 4
ACPI: PCI interrupt 0000:00:05.0[A] -> GSI 4 (level, low) -> IRQ 4
ACPI: PCI Interrupt Link [LACI] enabled at IRQ 9
ACPI: PCI interrupt 0000:00:06.0[A] -> GSI 9 (level, low) -> IRQ 9
ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 5
ACPI: PCI interrupt 0000:01:04.0[A] -> GSI 5 (level, low) -> IRQ 5
ACPI: PCI Interrupt Link [LNK3] enabled at IRQ 11
ACPI: PCI interrupt 0000:01:0b.0[A] -> GSI 11 (level, low) -> IRQ 11
ACPI: PCI interrupt 0000:02:08.0[A] -> GSI 11 (level, low) -> IRQ 11
ACPI: PCI Interrupt Link [LNK4] enabled at IRQ 3
ACPI: PCI interrupt 0000:02:09.0[A] -> GSI 3 (level, low) -> IRQ 3
ACPI: PCI interrupt 0000:04:00.0[A] -> GSI 3 (level, low) -> IRQ 3
TC classifier action (bugs to netdev@oss.sgi.com cc hadi@cyberus.ca)
apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac)
apm: overridden by ACPI.
audit: initializing netlink socket (disabled)
audit(1114037813.148:0): initialized
highmem bounce pool size: 64 pages
Total HugeTLB memory allocated, 0
VFS: Disk quotas dquot_6.5.1
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
Initializing Cryptographic API
vesafb: framebuffer at 0xc0000000, mapped to 0xf8880000, using 6144k, total 1310
72k
vesafb: mode is 1024x768x16, linelength=2048, pages=84
vesafb: protected mode interface info at c000:573e
vesafb: scrolling: redraw
vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0
bootsplash 3.1.6-2004/03/31: looking for picture...<6> silentjpeg size 35007 byt
es,<6>...found (1024x768, 21643 bytes, v3).
Console: switching to colour frame buffer device 127x43
fb0: VESA VGA frame buffer device
isapnp: Scanning for PnP cards...
isapnp: No Plug & Play device found
Real Time Clock Driver v1.12
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX port at 0x60,0x64 irq 12
Serial: 8250/16550 driver $Revision: 1.90 $ 48 ports, IRQ sharing enabled
Using anticipatory io scheduler
Floppy drive(s): fd0 is 1.44M
FDC 0 is a post-1991 82077
RAMDISK driver initialized: 16 RAM disks of 64000K size 1024 blocksize
loop: loaded (max 8 devices)
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
NFORCE2: IDE controller at PCI slot 0000:00:09.0
NFORCE2: chipset revision 162
NFORCE2: not 100% native mode: will probe irqs later
NFORCE2: BIOS didn't set cable bits correctly. Enabling workaround.
NFORCE2: 0000:00:09.0 (rev a2) UDMA133 controller
    ide0: BM-DMA at 0xf000-0xf007, BIOS settings: hda:DMA, hdb:DMA
    ide1: BM-DMA at 0xf008-0xf00f, BIOS settings: hdc:DMA, hdd:DMA
Probing IDE interface ide0...
hda: WDC WD2000JB-32EVA0, ATA DISK drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Probing IDE interface ide1...
hdc: _NEC DVD_RW ND-3520A, ATAPI CD/DVD-ROM drive
hdd: ASUS CRW-4816A, ATAPI CD/DVD-ROM drive
ide1 at 0x170-0x177,0x376 on irq 15
Probing IDE interface ide2...
ide2: Wait for ready failed before probe !
Probing IDE interface ide3...
ide3: Wait for ready failed before probe !
Probing IDE interface ide4...
ide4: Wait for ready failed before probe !
Probing IDE interface ide5...
ide5: Wait for ready failed before probe !
hda: max request size: 1024KiB
hda: 390721968 sectors (200049 MB) w/8192KiB Cache, CHS=24321/255/63, UDMA(100)
hda: cache flushes supported
 hda: hda1 hda2 < hda5 hda6 hda7 hda8 hda9 hda10 hda11 hda12 >
ide-floppy driver 0.99.newide
mice: PS/2 mouse device common for all mice
input: AT Translated Set 2 keyboard on isa0060/serio0
input: PC Speaker
md: md driver 0.90.0 MAX_MD_DEVS=256, MD_SB_DISKS=27
NET: Registered protocol family 2
IP: routing cache hash table of 8192 buckets, 64Kbytes
TCP: Hash tables configured (established 262144 bind 65536)
NET: Registered protocol family 1
NET: Registered protocol family 8
NET: Registered protocol family 20
PM: Reading pmdisk image.
swsusp: Resume From Partition: /dev/hda8
<3>swsusp: Invalid partition type.
pmdisk: Error -22 resuming
PM: Resume from disk failed.
ACPI: (supports S0 S1 S4 S4bios S5)
ACPI wakeup devices:
HUB0 HUB1 USB0 USB1 USB2 F139 MMAC MMCI
md: Autodetecting RAID arrays.
md: autorun ...
md: ... autorun DONE.
RAMDISK: Compressed image found at block 0
VFS: Mounted root (ext2 filesystem).
SCSI subsystem initialized
libata version 1.02 loaded.
sata_sil version 0.54
ACPI: PCI interrupt 0000:01:0b.0[A] -> GSI 11 (level, low) -> IRQ 11
ata1: SATA max UDMA/100 cmd 0xF8804080 ctl 0xF880408A bmdma 0xF8804000 irq 11
ata2: SATA max UDMA/100 cmd 0xF88040C0 ctl 0xF88040CA bmdma 0xF8804008 irq 11
ata1: dev 0 cfg 49:2f00 82:7c6b 83:7b09 84:4003 85:7c69 86:3a01 87:4003 88:207f
ata1: dev 0 ATA, max UDMA/133, 160086528 sectors:
ata1: dev 0 configured for UDMA/100
scsi0 : sata_sil
ata2: dev 0 cfg 49:2f00 82:7c6b 83:7b09 84:4003 85:7c69 86:3a01 87:4003 88:207f
ata2: dev 0 ATA, max UDMA/133, 160086528 sectors:
ata2: dev 0 configured for UDMA/100
scsi1 : sata_sil
  Vendor: ATA       Model: Maxtor 6Y080M0    Rev: YAR5
  Type:   Direct-Access                      ANSI SCSI revision: 05
SCSI device sda: 160086528 512-byte hdwr sectors (81964 MB)
SCSI device sda: drive cache: write back
SCSI device sda: 160086528 512-byte hdwr sectors (81964 MB)
SCSI device sda: drive cache: write back
 sda: sda1 sda2 sda3 < sda5 sda6 >
Attached scsi disk sda at scsi0, channel 0, id 0, lun 0
  Vendor: ATA       Model: Maxtor 6Y080M0    Rev: YAR5
  Type:   Direct-Access                      ANSI SCSI revision: 05
SCSI device sdb: 160086528 512-byte hdwr sectors (81964 MB)
SCSI device sdb: drive cache: write back
SCSI device sdb: 160086528 512-byte hdwr sectors (81964 MB)
SCSI device sdb: drive cache: write back
 sdb: sdb1 sdb2 < sdb5 sdb6 >
Attached scsi disk sdb at scsi1, channel 0, id 0, lun 0
ReiserFS: hda11: found reiserfs format "3.6" with standard journal
ReiserFS: hda11: using ordered data mode
reiserfs: using flush barriers
ReiserFS: hda11: journal params: device hda11, size 8192, journal first block 18
, max trans len 1024, max batch 900, max commit age 30, max trans age 30
ReiserFS: hda11: checking transaction log (hda11)
ReiserFS: hda11: Using r5 hash to sort names
VFS: Mounted root (reiserfs filesystem) readonly.
Trying to move old root to /initrd ... failed
Unmounting old root
Trying to free ramdisk memory ... failed
Freeing unused kernel memory: 212k freed
Adding 1044184k swap on /dev/hda8.  Priority:42 extents:1
reiserfs: enabling write barrier flush mode
usbcore: registered new driver usbfs
usbcore: registered new driver hub
md: Autodetecting RAID arrays.
md: autorun ...
md: ... autorun DONE.
device-mapper: 4.1.0-ioctl (2003-12-10) initialised: dm@uk.sistina.com
Linux agpgart interface v0.100 (c) Dave Jones
agpgart: Detected NVIDIA nForce2 chipset
agpgart: Maximum main memory to use for agp memory: 941M
agpgart: AGP aperture is 256M @ 0xb0000000
ohci_hcd: 2004 Feb 02 USB 1.1 'Open' Host Controller (OHCI) Driver (PCI)
ACPI: PCI interrupt 0000:00:02.0[A] -> GSI 7 (level, low) -> IRQ 7
ohci_hcd 0000:00:02.0: OHCI Host Controller
PCI: Setting latency timer of device 0000:00:02.0 to 64
ohci_hcd 0000:00:02.0: irq 7, pci mem f903e000
ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 1
usb usb1: Product: OHCI Host Controller
usb usb1: Manufacturer: Linux 2.6.8-24.14-default ohci_hcd
usb usb1: SerialNumber: 0000:00:02.0
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 3 ports detected
ACPI: PCI interrupt 0000:00:02.1[B] -> GSI 5 (level, low) -> IRQ 5
ohci_hcd 0000:00:02.1: OHCI Host Controller
PCI: Setting latency timer of device 0000:00:02.1 to 64
ohci_hcd 0000:00:02.1: irq 5, pci mem f9040000
ohci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 2
usb usb2: Product: OHCI Host Controller
usb usb2: Manufacturer: Linux 2.6.8-24.14-default ohci_hcd
usb usb2: SerialNumber: 0000:00:02.1
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 3 ports detected
usb 1-1: new full speed USB device using address 2
usb 1-1: Product: CanoScan
usb 1-1: Manufacturer: Canon
ACPI: PCI interrupt 0000:00:02.2[C] -> GSI 11 (level, low) -> IRQ 11
ehci_hcd 0000:00:02.2: EHCI Host Controller
PCI: Setting latency timer of device 0000:00:02.2 to 64
ehci_hcd 0000:00:02.2: irq 11, pci mem f919e000
ehci_hcd 0000:00:02.2: new USB bus registered, assigned bus number 3
PCI: cache line size of 64 is not supported by device 0000:00:02.2
ehci_hcd 0000:00:02.2: USB 2.0 enabled, EHCI 1.00, driver 2004-May-10
usb usb3: Product: EHCI Host Controller
usb usb3: Manufacturer: Linux 2.6.8-24.14-default ehci_hcd
usb usb3: SerialNumber: 0000:00:02.2
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 6 ports detected
usb 1-1: USB disconnect, address 2
ohci_hcd 0000:00:02.0: wakeup
ohci_hcd 0000:00:02.1: wakeup
usb 1-1: new full speed USB device using address 4
usb 1-1: Product: CanoScan
usb 1-1: Manufacturer: Canon
usb 1-2: new low speed USB device using address 5
usb 1-2: Product: USB Receiver
usb 1-2: Manufacturer: Logitech
usb 2-1: new full speed USB device using address 2
usb 2-1: Product: deskjet 5100
usb 2-1: Manufacturer: hp
usb 2-1: SerialNumber: MY3733R2XQ7A
usb 2-2: new full speed USB device using address 3
usb 2-2: device not accepting address 3, error -110
usb 2-2: new full speed USB device using address 4
usb 2-2: device not accepting address 4, error -110
usbcore: registered new driver hiddev
input: USB HID v1.10 Mouse [Logitech USB Receiver] on usb-0000:00:02.0-2
usbcore: registered new driver usbhid
drivers/usb/input/hid-core.c: v2.0:USB HID core driver
forcedeth.c: Reverse Engineered nForce ethernet driver. Version 0.29.
ACPI: PCI interrupt 0000:00:04.0[A] -> GSI 5 (level, low) -> IRQ 5
PCI: Setting latency timer of device 0000:00:04.0 to 64
eth0: forcedeth.c: subsystem: 01043:80a7 bound to 0000:00:04.0
drivers/usb/class/usblp.c: usblp0: USB Bidirectional printer dev 2 if 0 alt 0 pr
oto 2 vid 0x03F0 pid 0x6204
usbcore: registered new driver usblp
drivers/usb/class/usblp.c: v0.13: USB Printer Device Class driver
evdev_connect: evdev c199cc60 handle c199cc7c name event0
evdev_connect: evdev c199cb60 handle c199cb7c name event1
evdev_connect: evdev c199ca60 handle c199ca7c name event2
ACPI: PCI interrupt 0000:01:04.0[A] -> GSI 5 (level, low) -> IRQ 5
sk98lin: Network Device Driver v7.04
(C)Copyright 1999-2004 Marvell(R).
ACPI: PCI interrupt 0000:01:04.0[A] -> GSI 5 (level, low) -> IRQ 5
eth1: Yukon Gigabit Ethernet 10/100/1000Base-T Adapter
      PrefPort:A  RlmtMode:Check Link State
kjournald starting.  Commit interval 5 seconds
EXT3 FS on hda9, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
ReiserFS: hda12: found reiserfs format "3.6" with standard journal
ReiserFS: hda12: using ordered data mode
reiserfs: using flush barriers
ReiserFS: hda12: journal params: device hda12, size 8192, journal first block 18
, max trans len 1024, max batch 900, max commit age 30, max trans age 30
ReiserFS: hda12: checking transaction log (hda12)
ReiserFS: hda12: Using r5 hash to sort names
FAT: utf8 is not a recommended IO charset for FAT filesystems, filesystem will b
e case sensitive!
FAT: utf8 is not a recommended IO charset for FAT filesystems, filesystem will b
e case sensitive!
ReiserFS: sdb5: found reiserfs format "3.6" with standard journal
ReiserFS: sdb5: using ordered data mode
reiserfs: using flush barriers
ReiserFS: sdb5: journal params: device sdb5, size 8192, journal first block 18,
max trans len 1024, max batch 900, max commit age 30, max trans age 30
ReiserFS: sdb5: checking transaction log (sdb5)
reiserfs: disabling flush barriers on sdb5
ReiserFS: sdb5: Using r5 hash to sort names
FAT: utf8 is not a recommended IO charset for FAT filesystems, filesystem will b
e case sensitive!
FAT: utf8 is not a recommended IO charset for FAT filesystems, filesystem will b
e case sensitive!
ReiserFS: hda10: found reiserfs format "3.6" with standard journal
ReiserFS: hda10: using ordered data mode
reiserfs: using flush barriers
ReiserFS: hda10: journal params: device hda10, size 8192, journal first block 18
, max trans len 1024, max batch 900, max commit age 30, max trans age 30
ReiserFS: hda10: checking transaction log (hda10)
ReiserFS: hda10: Using r5 hash to sort names
NTFS driver 2.1.17 [Flags: R/O MODULE].
NTFS volume version 3.1.
NTFS volume version 3.1.
NTFS volume version 3.1.
subfs 0.9
hdc: ATAPI 48X DVD-ROM DVD-R CD-R/RW drive, 2048kB Cache
Uniform CD-ROM driver Revision: 3.20
hdd: ATAPI 48X CD-ROM CD-R/RW drive, 2048kB Cache
st: Version 20040403, fixed bufsize 32768, s/g segs 256
Attached scsi generic sg0 at scsi0, channel 0, id 0, lun 0,  type 0
Attached scsi generic sg1 at scsi1, channel 0, id 0, lun 0,  type 0
NET: Registered protocol family 10
Disabled Privacy Extensions on device c037f760(lo)
IPv6 over IPv4 tunneling driver
ip6_tables: (C) 2000-2002 Netfilter core team
ip_tables: (C) 2000-2002 Netfilter core team
ip_conntrack version 2.1 (8191 buckets, 65528 max) - 336 bytes per conntrack
ip6_conntrack version 0.1 (8191 buckets, 65528 max) - 208 bytes per conntrack
NET: Registered protocol family 17
BIOS EDD facility v0.16 2004-Jun-25, 3 devices found
ACPI: PCI interrupt 0000:00:06.0[A] -> GSI 9 (level, low) -> IRQ 9
PCI: Setting latency timer of device 0000:00:06.0 to 64
intel8x0_measure_ac97_clock: measured 49669 usecs
intel8x0: clocking to 47366
ACPI: Power Button (FF) [PWRF]
ACPI: Processor [CPU0] (supports C1)
powernow-k8: Processor cpuid 6a0 not supported
lp: driver loaded but no devices found
drivers/usb/serial/usb-serial.c: USB Serial support registered for Generic
usbcore: registered new driver usbserial_generic
usbcore: registered new driver usbserial
drivers/usb/serial/usb-serial.c: USB Serial Driver core v2.0
Disabled Privacy Extensions on device f76e2400(sit0)
eth0: no IPv6 routers present
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC=00:11:2f:b6:b8:12:00:30:b8:c2:e8:00:08:00
 SRC=80.63.248.122 DST=81.83.87.94 LEN=48 TOS=0x00 PREC=0x00 TTL=111 ID=2639 DF
PROTO=TCP SPT=39509 DPT=6346 WINDOW=16384 RES=0x00 SYN URGP=0 OPT (020404EC01010
402)
Non-volatile memory driver v1.2
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC=00:11:2f:b6:b8:12:00:30:b8:c2:e8:00:08:00
 SRC=80.63.248.122 DST=81.83.87.94 LEN=48 TOS=0x00 PREC=0x00 TTL=111 ID=2802 DF
PROTO=TCP SPT=39509 DPT=6346 WINDOW=16384 RES=0x00 SYN URGP=0 OPT (020404EC01010                                            402)
bootsplash: status on console 0 changed to on
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC=00:11:2f:b6:b8:12:00:30:b8:c2:e8:00:08:00                                             SRC=80.63.248.122 DST=81.83.87.94 LEN=48 TOS=0x00 PREC=0x00 TTL=111 ID=3093 DF                                             PROTO=TCP SPT=39509 DPT=6346 WINDOW=16384 RES=0x00 SYN URGP=0 OPT (020404EC01010                                            402)
SFW2-INext-DROP-DEFLT-INV IN=eth0 OUT= MAC=00:11:2f:b6:b8:12:00:30:b8:c2:e8:00:0                                            8:00 SRC=81.83.84.1 DST=81.83.87.94 LEN=40 TOS=0x00 PREC=0x00 TTL=64 ID=60495 PR                                            OTO=TCP SPT=3185 DPT=1027 WINDOW=0 RES=0x00 ACK RST URGP=0
SFW2-INext-DROP-DEFLT IN=eth0 OUT= MAC=00:11:2f:b6:b8:12:00:30:b8:c2:e8:00:08:00                                             SRC=80.63.248.122 DST=81.83.87.94 LEN=48 TOS=0x00 PREC=0x00 TTL=111 ID=4275 DF                                             PROTO=TCP SPT=39544 DPT=6346 WINDOW=16384 RES=0x00 SYN URGP=0 OPT (020404EC01010                                            402)
SFW2-INext-DROP-DEFLT-INV IN=eth0 OUT= MAC=00:11:2f:b6:b8:12:00:30:b8:c2:e8:00:0                                            8:00 SRC=81.83.84.1 DST=81.83.87.94 LEN=40 TOS=0x00 PREC=0x00 TTL=64 ID=61152 PR                                            OTO=TCP SPT=3185 DPT=1027 WINDOW=0 RES=0x00 ACK RST URGP=0
SFW2-INext-DROP-DEFLT-INV IN=eth0 OUT= MAC=00:11:2f:b6:b8:12:00:30:b8:c2:e8:00:0                                            8:00 SRC=81.83.84.1 DST=81.83.87.94 LEN=40 TOS=0x00 PREC=0x00 TTL=64 ID=62056 PR                                            OTO=TCP SPT=3185 DPT=1027 WINDOW=0 RES=0x00 ACK RST URGP=0
SFW2-INext-DROP-DEFLT-INV IN=eth0 OUT= MAC=00:11:2f:b6:b8:12:00:30:b8:c2:e8:00:0                                            8:00 SRC=81.83.84.1 DST=81.83.87.94 LEN=40 TOS=0x00 PREC=0x00 TTL=64 ID=63801 PR                                            OTO=TCP SPT=3185 DPT=1027 WINDOW=0 RES=0x00 ACK RST URGP=0


Met ctrl + F heb ik hda5 maar een keer in de output kunnen vinden, bij de partitietabel: hda2 <hda5 hda6 ...>. Nergens staat hij dus gemount, ook geen foutmeldingen?

Got Leenucks? | Debian Bookworm x86_64 / ARM | OpenWrt: Empower your router | Blogje