|
Lines 434-437
Link Here
|
| 434 |
tips on upgrading for early adopters.</para> |
434 |
tips on upgrading for early adopters.</para> |
| 435 |
|
435 |
|
| 436 |
</sect1> |
436 |
</sect1> |
|
|
437 |
|
| 438 |
</sect1 id "Tips-and-Tricks"> |
| 439 |
|
| 440 |
<title>Tips and tricks</title> |
| 441 |
<para>Here is a list of specific questions and answers about |
| 442 |
what to do.</para> |
| 443 |
|
| 444 |
<question id="5.0-CD-Boot-Problem"> |
| 445 |
<para>I have a problem with boot from FreeBSD 5.0 CD. Help!</para> |
| 446 |
</question> |
| 447 |
|
| 448 |
<answer> |
| 449 |
<para>When FreeBSD boot, press the space key, it says |
| 450 |
|
| 451 |
<screen> |
| 452 |
OK |
| 453 |
</screen> |
| 454 |
|
| 455 |
then type |
| 456 |
|
| 457 |
<screen> |
| 458 |
OK <userinput>unset acpi_load</userinput> |
| 459 |
</screen> |
| 460 |
|
| 461 |
then |
| 462 |
|
| 463 |
<screen> |
| 464 |
OK <userinput>boot</userinput> |
| 465 |
</screen> |
| 466 |
|
| 467 |
for continue boot process. |
| 468 |
</para> |
| 469 |
</answer> |
| 470 |
|
| 471 |
<question id="disable-ACPI"> |
| 472 |
<para>How to disable ACPI?</para> |
| 473 |
</question> |
| 474 |
|
| 475 |
<answer> |
| 476 |
<para>Add following line |
| 477 |
|
| 478 |
<screen> |
| 479 |
hint.acpi.0.disabled="1" |
| 480 |
</screen> |
| 481 |
|
| 482 |
into your <filename>/boot/device.hints</filename> file</para>. |
| 483 |
</answer> |
| 484 |
|
| 485 |
<question id="where-is-MAKEDEV"> |
| 486 |
<para> |
| 487 |
Where is <filename>MAKEDEV?</filename> |
| 488 |
</para> |
| 489 |
</question> |
| 490 |
|
| 491 |
<answer> |
| 492 |
<para> |
| 493 |
<filename>MAKEDEV</filename> is dead, baby, <filename>MAKEDEV</filename> |
| 494 |
is dead. FreeBSD 5.0 and future releases use &man.devfs.8;. |
| 495 |
</para> |
| 496 |
</answer> |
| 497 |
|
| 498 |
<question id="NEWCARD-do-not-work"> |
| 499 |
<para>I think NEWCARD implementation for PC-card do not work for me, and I |
| 500 |
have a message: |
| 501 |
<screen> |
| 502 |
cbb0: unsupported card type detected. |
| 503 |
</screen> |
| 504 |
What can i do?</para> |
| 505 |
</question> |
| 506 |
|
| 507 |
<answer> |
| 508 |
<para> |
| 509 |
Try to use OLDCARD implementation. Remove from kernel config file strings: |
| 510 |
|
| 511 |
<programlisting> |
| 512 |
device cbb |
| 513 |
device pccard |
| 514 |
device cardbus |
| 515 |
</programlisting> |
| 516 |
|
| 517 |
and just add: |
| 518 |
|
| 519 |
<programlisting> |
| 520 |
device pcic |
| 521 |
device card 1 |
| 522 |
</programlisting> |
| 523 |
|
| 524 |
Recompile and install new kernel. |
| 525 |
</para> |
| 526 |
</answer> |
| 527 |
|
| 528 |
<question id="no-pccard-device"> |
| 529 |
<para>When &man.pccardd.8; started, it says: |
| 530 |
<screen> |
| 531 |
No /dev/pccard[0|1] devices, exit. |
| 532 |
</screen> |
| 533 |
But kernel already detects all PC-cards devices. Whats wrong? |
| 534 |
</para> |
| 535 |
</question> |
| 536 |
|
| 537 |
<answer> |
| 538 |
<para> |
| 539 |
You must run &man.devd.8;. Run it manually and add following |
| 540 |
line into your <filename>/etc/rc.conf</filename> |
| 541 |
<screen> |
| 542 |
devd_enable="YES" |
| 543 |
</screen> |
| 544 |
</para> |
| 545 |
</answer> |
| 546 |
|
| 547 |
<question> |
| 548 |
<para>Looks like my cards (network or sound) have conflicts with PC-cards |
| 549 |
(or other devices). What can I do? As far I see, I haven't any |
| 550 |
problems with FreeBSD-4.X. |
| 551 |
</para> |
| 552 |
</question> |
| 553 |
|
| 554 |
<answer> |
| 555 |
<para> |
| 556 |
Try to add following line |
| 557 |
<screen> |
| 558 |
hw.pci.allow_unsupported_io_range="1" |
| 559 |
</screen> |
| 560 |
into your <filename>/boot/loader.conf.local</filename> |
| 561 |
and reboot your machine. |
| 562 |
</para> |
| 563 |
</answer> |
| 564 |
|
| 565 |
</sect1> |
| 437 |
</article> |
566 |
</article> |