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 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
|
<!doctype linuxdoc system>
<!-- Yard_doc.sgml.
SGML documentation for Yard
$Id: Yard_doc.sgml,v 1.2 1998/08/23 12:44:53 fawcett Exp $
-->
<article>
<!-- Title information -->
<title>Yard Documentation
<author>Tom Fawcett (<htmlurl url="mailto:fawcett@croftj.net"
name="fawcett@croftj.net">)
<date>November, 1998
<abstract>
Yard is a suite of Perl programs for making customized rescue disks for
Linux. It exploits the compressed ramdisk feature of 1.3.48+ kernels.
With this feature you can get a standard kernel image plus about 2.4
meg of utilities on a single floppy. You specify the set of files you
want on the disk, and Yard does extensive checking of the files to
increase chances that the rescue disk will work. A 2-disk option is
available if one isn't enough. Yard can now be used either with or
without Lilo.
</abstract>
<!-- Table of contents -->
<toc>
<!-- Begin the document -->
<sect>Introduction
<p>
Yard is a suite of Perl programs for creating a so-called rescue disk
(a single floppy disk comprising a kernel and a filesystem with useful
rescue programs). Rescue disks are used when you can't (or don't want
to) boot off your hard disk; they usually contain utilities for
diagnosing and manipulating hard disks and filesystems. The Linux doc
file <em>Bootdisk-HOWTO</em> contains much information about emergency
bootdisks and how to make them.
Most Linux distributions (eg, Slackware) come with some kind of
pre-fabricated rescue disk. These disks contain a fixed set of utilities
that are useful but may not be enough in an emergency. For example, if you
want to restore files off of backup tapes you'll need a restore program
that matches your backup program. It's desirable to have a complete,
self-contained set of up-to-date utilities and kernel. You don't want to
discover after a disk crash that, for example, your floppy tape driver is
newer than the rescue disk kernel and won't work.
Yard lets you specify a set of files to be included on the rescue disk.
Yard's specifications are flexible. The primary feature of Yard is that it
does some checking of your choices to make sure that the rescue disk will
be usable. Yard checks for basic mistakes that I found myself making
repeatedly: missing/unlinked libraries, unresolved symbolic links, typos,
etc. These mistakes are tedious to search for and many of them can be
detected automatically, which is why I wrote Yard.
Yard comprises three Perl programs: <tt/make_root_fs,
check_root_fs and write_rescue_disk/.
These programs are designed to be run in sequence. They are separate
so you can verify the output of one before going on to the next.
Typically you iterate making and checking the root filesystem a few
times before you write the rescue disk.
This document describes <EM>Yard 1.17</EM>.
<sect>Requirements
<p>
In order to use Yard, you need:
<itemize>
<item>A Linux kernel 2.0 or greater.
<item>The following features must be <em>built-in</em> to the kernel used
on the rescue disk:
<itemize>
<item>Ramdisk support
<item>Ext2fs (second extended filesystem) support
<item>Floppy disk support
</itemize>
These <em>cannot</em> be provided as modules. The kernel needs to
have them built-in so it can load the root filesystem.
<item>Perl version 5 or higher. Version 4 will not work. To see what
you have, type <verb>perl -v</verb>.
<item>If you want to strip binaries, you need objcopy 2.6 or later
(type <tt>objcopy -V</tt>)
<item>Root access. All of these scripts must be run as root.
</itemize>
<sect>Installation
<p>
From within the toplevel directory, issue these commands:
<enum>
<item><tt>su root</tt>
<item><tt>./configure </tt>
<item><tt>make</tt>
<p>
This creates copies of your <file>/etc/fstab</file> and
<file>/etc/lilo.conf</file> and places them in the Replacements
subdirectory with a few modifications, explained below.
<item><tt>make install</tt>
<p>
Note that it will try to install copies of Bootdisk_Contents
and Config.pl. If you have used a previous version of Yard, you may
already have copies of these installed that you don't want
overwritten. It will ask before overwriting any file; simply answer
"no" in this case.
</enum>
By default, the configure script will install files in the following
directories:
<verb>
Perl programs: /sbin
Replacement and extras dirs: /etc/yard
Yard configuration files: /etc/yard
(Config.pl and Bootdisk_contents)
</verb>
These defaults are based on my interpretation of the Linux File System
Standard (FSSTND). If you don't like these, change the three
directory definitions at the beginning of the <tt/configure/ script.
<sect>Using Yard -- summary instructions
<p>
<enum>
<item>Customize Config.pl and Bootdisk_Contents.
<item>Become root (<tt/su root/).
<item><tt/make_root_fs/
<item><tt/check_root_fs/
<item>Check/fix any errors reported in steps 3-4. Repeat steps 3-4
until satisfied, then insert fresh floppy into drive.
<item><tt/write_rescue_disk/
</enum>
Then shutdown and try to boot off the floppy.
<sect>Using Yard -- detailed instructions
<p>
<sect1>Customizing Config.pl and Bootdisk_Contents
<p>
If this is the first time you've used Yard, do the following:
<enum>
<item>Edit the two files Config.pl and Bootdisk_Contents in this
directory. Both contain numerous comments which should explain in
detail the options you're asked to set and the allowable values.
<descrip>
<tag/Config.pl/ This contains basic information about what devices you'll
be using and their capacities. Everything in it has to be in Perl syntax,
but it's all simple variable assignments so you don't need to know Perl.
<tag/Bootdisk_Contents/ This file specifies what your bootdisk
will contain. Review this file carefully, especially the selections
of <tt>/etc</tt> and <file>/sbin</file> files. Comments at the head of
the file describe the options. I have included everything necessary
for a simple boot sequence, but I don't know how much distributions
vary in their structure. I've used Yard with both Slackware and
RedHat with little modification.
You will probably discover that the default Bootdisk_Contents
contains more files than you can fit on a rescue disk. This is
intentional: it is easier to delete unnecessary files from
Bootdisk_Contents than to guess what files should be added to a
minimal Bootdisk_Contents. Two other file sets are included
for illustration.
<enum>
<item><tt/Bootdisk_Contents.sample/ is a reasonable set of rescue files
that fits on one disk.
<item><tt/Bootdisk_Contents.minimal/ is a small set of files.
</enum>
</descrip>
</enum>
Yard will catch many but not all errors. For example, if you change
<file>/etc/inittab</file> to use <tt/getty_ps/ instead of
<tt/getty/, check_root_fs will make sure <tt/getty_ps/
is included on the disk, but it won't warn you that the calling syntax is
different.
Check the files in the <tt/Replacements/ subtree that comes with the Yard
distribution. By default, any file mentioned in <tt/Bootdisk_Contents/
will be copied unchanged from your hard disk. Some things have to be
changed, however, since a rescue disk is pared-down and can't access the
hard disk during boot. You can specify that a different file be used in
place of one mentioned, eg:
<tscreen><verb>
/etc/inittab <= ./Replacements/etc/inittab
</verb></tscreen>
This causes <file>./Replacements/etc/inittab</file> (which comes with Yard) to
be used for <file>/etc/inittab</file> on the rescue disk. These replacement
files are very short so there isn't much to check.
When you ran ``make copies'', the program <tt/create_fstab.pl</tt>
created the file <file> ./Replacements/etc/fstab</file> from your fstab.
Two modifications are done:
<enum>
<item>Every device mentioned is given a <em>noauto</em> option so it won't
be mounted automatically when the rescue disk is used.
<item>The mount points are placed under <file>/OLDROOT</file> on the rescue
root filesystem. You can mount them manually under
<file>/OLDROOT</file> to re-create selectively your disk directory
structure. This makes repairing them easier and allows you to
<file>chroot /OLDROOT</file> to test the structure.
</enum>
If you have a <file>/etc/lilo.conf</file>, the <tt>make copies</tt> will also
create a file <file>./Replacements/etc/lilo.conf</file>. If you intend to use
Lilo, check this file.
<sect2>Dynamically loaded libraries.
<p>
Your system may require dynamically loaded libraries that are not visible
to <file>ldd</file>. Brief comments on this are included in
<tt/Bootdisk_Contents/, and explained here.
<sect3>PAM (Pluggable Authentication Modules).<p>
If your system uses PAM (Pluggable Authentication Modules), you must make
some provision for it on your bootdisk or you will not be able to login.
PAM, briefly, is a sophisticated modular method for authenticating users
and controlling their access to services. An easy way to determine if your
system uses PAM is to check your hard disks's <file>/etc</file> directory
for a file <file>pam.conf</file> or a <file>pam.d</file> directory; if
either exists, you must provide some minimal PAM support. (Alternatively,
run <file>ldd</file> on your <file>login</file> executable; if the output
includes <file>libpam.so</file>, you need PAM.)
Fortunately, security is usually of no concern with bootdisks, since anyone
who has physical access to a machine can usually do anything they want
anyway. Therefore, you can essentially disable PAM by creating a simple
<file>/etc/pam.conf</file> file in your root filesystem that looks like
this:
<code>
OTHER auth optional /lib/security/pam_permit.so
OTHER account optional /lib/security/pam_permit.so
OTHER password optional /lib/security/pam_permit.so
OTHER session optional /lib/security/pam_permit.so
</code>
Also copy the file <tt>/lib/security/pam_permit.so</tt> to your root
filesystem. This library is only about 8K so it imposes minimal overhead.
Note that this configuration allows anyone complete access to the files and
services on your machine. If you care about security on your bootdisk for
some reason, you'll have to copy some or all of your hard disk's PAM setup
to your root filesystem. Be sure to read the PAM documentation carefully,
and copy any libraries needed in <file>/lib/security</file> onto your root
filesystem.
Yard's <tt/check_root_fs/ can detect whether you need PAM,
and will warn you if you have not configured it. It will also scan the
configuration file(s) and warn if you have specified a service with no
corresponding library.
<sect3>NSS (Name Service Switch).<p>
If you are using glibc (aka libc6), you will have to make provisions for
name services or you will not be able to log in. The file
<file>/etc/nsswitch.conf</file> controls database lookups for various
servies. If you don't plan to access services from the network (eg, DNS or
NIS lookups), you need only prepare a simple <file>nsswitch.conf</file>
file that looks like this:
<code>
passwd: files
shadow: files
group: files
hosts: files
services: files
networks: files
protocols: files
rpc: files
ethers: files
netmasks: files
bootparams: files
automount: files
aliases: files
netgroup: files
publickey: files
</code>
This specifies that every service be provided only by local files. You
will also need to include <tt>/lib/libnss_files.so.1</tt>, which will
be loaded dynamically to handle the file lookups.
If you plan to access the network from your bootdisk, you may want to
create a more elaborate <file>nsswitch.conf</file> file. See the
<file>nsswitch</file> man page for details. Keep in mind that you must
include a file <tt>/lib/libnss_</tt><it>service</it><tt>.so.1</tt>
for each <it>service</it> you specify.
Yard's <tt/check_root_fs/ can detect whether you need to
configure NSS, and will warn you if you haven't. It will also scan the
configuration file and warn if you have specified a service with no
corresponding library.
<sect1>Making the root filesystem
<p>
When you're done customizing these two files, su to root and run:
<tscreen><verb>
make_root_fs
</verb></tscreen>
This program constructs an initial, uncompressed root filesystem that
the rescue floppy will contain. It works in four passes. First it
processes the <tt/Bootdisk_Contents/ file and notes special cases
(links and replacements). Next it sets up linked file chains
mentioned in the first step but not included. It looks for required
library files (eg, libc.so) and the loaders required for them.
Finally, it notes any hard-linked files. After that, if the files all
fit, it constructs the filesystem.
<tt/make_root_fs/ will produce occasional messages
showing what it's doing. Any errors should be prominent. Detailed
output will go to <tt/make_root_fs.log/ in case you want
to see exactly what the program did. If this is the first time you've
run <tt/make_root_fs/ for a bootdisk, you should review
the log file. In particular, Yard includes information about the
libraries needed by your chosen files, which is worth checking.
It is especially worth checking if you run out of space.
When you are satisfied with the output, proceed to the next step. You
can also chdir to the mount directory and look at the rescue
filesystem as it will exist at boot time.
<sect1>Checking the root filesystem
<p>
At this point, run:
<tscreen><verb>
check_root_fs
</verb></tscreen>
This checks the root filesystem for errors and omissions. It knows about
the format of inittab, fstab, passwd, pam.conf, etc., and checks them for
problems. It also checks scripts for missing interpreters, missing files,
etc. It also checks configuration of PAM and NSS, mentioned in the
previous section.
Look over the warnings and go back to step 1 if necessary. The warnings
are saved on <tt/check_root_fs.log/ for later inspection.
Note that you may get a lot of warnings like:
<tscreen><verb>
Home directory of userX (...) is missing
Shell of userX (/mnt/bin/bash) doesn't exist
</verb></tscreen>
You can ignore these if you don't intend to login as userX.
<sect1>Creating the complete rescue disk
<p>
When you're satisfied with the output from
<tt/check_root_fs/, unmount any existing floppy in the drive,
insert a new diskette, and run: <tscreen><verb>
write_rescue_disk
</verb></tscreen>
This prorgam takes your kernel and the (compressed) root filesystem and
produces a rescue disk from it. <tt/write_rescue_disk/
shouldn't produce any errors at this point unless you've exceeded the
floppy capacity after compression. The program's output is copied to
<tt/write_rescue_disk.log/.
If you've selected the disk_set=DOUBLE option, the program will
write the kernel onto the first disk, then prompt you to change disks,
after which it will write the root disk.
If you've selected the disk_set=SINGLE option and your
compressed filesystem is too large to be contained on a single floppy
with the kernel, the program will offer to create a double-disk set.
If your compressed filesystem is too large to be contained on a
floppy, you can try formatting your floppy at a higher density. 1440K
is the default, but higher densities are possible with many drives (I
have an old, unexceptional floppy drive and BIOS that will support
densities up to 1722K). See <quote>man fd</quote> and <quote>man
fdformat</quote> for details.
<sect1>Benediction
<p>
You're done. Shut down your system and try to boot from the
floppy(ies).
If the boot fails, see the following section on Troubleshooting.
Note that when you boot the rescue disk, it will not automatically mount
any of the devices mentioned in your /etc/fstab. This is intentional:
rescue disks are often used when a hard disk is inoperational or in an
inconsistent state, so hard disks should not automatically be mounted. If
you want to mount your other devices, you'll have to do that manually.
The <tt/create_fstab/ script arranges for your existing hard disk
entries to be placed under /OLDROOT so you can mount them manually.
So from the rescue disk you can type:
<tscreen><verb>
mount /OLDROOT
</verb></tscreen>
and your hard disk partition usually mounted as root will be mounted
under OLDROOT. For example, if you want to run a bash shell under
your old root filesystem, you may simply do:
<tscreen><verb>
mount /OLDROOT
chdir /OLDROOT ; chroot /OLDROOT bash
</verb></tscreen>
<sect>Troubleshooting
<p>
If you followed the instructions and your disk won't boot, the first
step is to determine where the boot is failing. In general, the
further along it gets the easier it is to diagnose (though not
necessarily to fix!). These steps are arranged more-or-less
chronologically.
<sect1>Configuration problems
<p>
These should be explained in the doc subdirectory. I try to catch as
many problems as I can in the <tt/configure/ script, but Yard relies
on many external programs, which change occasionally and introduce bugs.
<sect1>Problems building the root filesystem
<p>
<itemize>
<item> If you're using /dev/ram0 as <tt/$device/ and Yard
produces the error:
<tscreen><verb>
Error: You've declared file system size ($fs_size) to be 4096 K
but Linux says /dev/ram0 may only hold 0 K
</verb></tscreen>
Check your <file>/etc/lilo.conf</file> file for a line like:
<tscreen><verb>
ramsize = 0
</verb></tscreen>
and increase it to something more reasonable, like 4096.
Remember to run lilo and reboot.
<item>If you're using a loopback device, occasionally the ext2
filesystem seems to get corrupted for no apparent reason. If you
start getting errors in the middle of <tt/make_root_fs/ from the sys()
complaining that a directory doesn't exist, this may be what is
happening. I don't know why this happens and I can't reproduce it
consistently. If it happens, try unmounting, deleting and re-creating
the file. This seems to get rid of the problem.
</itemize>
<sect1>Problems in kernel loading
<p>
In the normal boot process you will see a message sequence like:
<tscreen><verb>
LILO loading floppylinux...
Uncompressing...done
Now booting the kernel
</verb></tscreen>
If the sequence halts or displays an error somewhere in this sequence,
the problem is with LILO.<footnote>Not necessarily <em/in/ LILO, but
with LILO.</footnote> With some exotic floppy disk geometries (usually
involving disk capacities greater than 1440K) LILO's map compaction
won't work, causing the LILO boot sequence to halt. If LILO halts and
you're using a non-1440K floppy, this is likely the problem.
The fix is to remove the <tt/COMPACT/ line from your bootdisk's
<file>lilo.conf</file>, and run Yard again. This will simply turn off
LILO's map compaction which should fix the problem (although kernel loading
will slow down somewhat).
If that doesn't work, switch to a 1440K floppy and try again. If you
really want to puzzle it out, go read the section ``Disk Geometry'' in
LILO's README file -- and good luck.
If 1440K doesn't work, something is very broken. Make sure LILO has
been installed correctly. If you don't normally use LILO to boot,
re-install a recent version. As a last resort, remake your kernel
with ``make mrproper''.
If you're using a <em/double/-disk rescue set, both floppies <em/must/ be
formatted identically. The boot loader becomes confused otherwise.
<sect1>Problems finding the compressed root filesystem
<p>
If the loader tells you it can't find a compressed root image, make
sure you gave Yard the correct floppy device (eg,
<file>/dev/fd0H1722</file> for 1722K). If you've constructed a
<em/single/-disk rescue set and it prompts you to insert a root floppy
disk, that's probably a Yard problem (the rdev in
write_rescue_disk has failed for some reason and the
failure wasn't caught by Yard). Go back and look over
write_rescue_disk.log to make sure nothing failed.
<sect1>Problems with init or login
<p>
<enum>
<item>If the system repeatedly accepts a login name then offers the login
prompt again, this is a sign that the NSS is not configured. On systems
using the GNU Name Service Switch (NSS), you must include explicitly in
Bootdisk_Contents a selected set of <file>/lib/libnss_*</FILE> shared
libraries, as well as an <file>/etc/nsswitch.conf</file> file.
<item>If you get a message like:
<quote>
Id xxx respawning too fast: disabled for n minutes
</quote>
This comes from init, usually indicating that your *getty* <footnote>The
notation *getty* will be used to mean some getty-like program, eg getty,
agetty, mgetty or getty_ps.</footnote> or login is dying as soon as
it starts up. Check the *getty* and login executables, and the libraries
they depend upon. Make sure the invocations in /etc/inittab are correct.
<item>If halting occurs <em/after/ the root filesystem is loaded, the
problem is in Yard or in you. The first step is to check
<tt/write_rescue_disk.log/ to make sure nothing failed.
If you ignored warnings from <tt/make_root_fs/ or
<tt/check_root_fs/, look at them again. You should
probably look over all three log files to make sure things are as they
should be. <tt/make_root_fs.log/ has a listing of where
each file was taken from -- make sure all your system files are coming
from the right places on your hard disk.
<item>If you get strange messages from *getty*, it may mean the calling form
in <file>/etc/inittab</file> is wrong. <tt/check_root_fs/
does not perform much inittab call checking because the options are so
variable among the different *getty* programs<footnote>Different
versions of agetty are reported to have different incompatible calling
forms.</footnote>. If you're using a different call and/or program
from what you use in your hard disk <file>/etc/inittab</file>, double
check it.
<item>When you login, you may get errors about commands that aren't present.
This usually happens when an rc file uses a builtin command that does not
exist in the rescue disk's shell, but did exist in the shell used to run
Yard.
</enum>
<sect1>And if none of that works...
<p>
Check the Yard webpage:
<file>http://www.croftj.net/˜fawcett/yard/</file>
On that page I'll put notes people have sent me about problems they've run
into, before I've had a chance to fix and re-release Yard.
<sect1>Suggestions
<p>
If you find a problem that that Yard didn't catch, but which it could
have caught, please let me know and I'll try to add a check to
<tt/check_root_fs/.
<p>
If you think it's a Yard problem you can try diagnosing it yourself.
In fact, you may have better luck since you're more familiar with your
setup. Otherwise, package up the three .log files along with your
Bootdisk_Contents, Config.pl and Bootdisk_Contents.ls
and send them to me with a reasonable description of what went wrong.
This command should work:
<tscreen><verb>
tar cvzf yard_bug.tgz *.log *.ls \
/etc/yard/Bootdisk_Contents /etc/yard/Config.pl
</verb></tscreen>
Be sure to let me know which Yard version you're using. You might check the
<htmlurl url="http://www.croftj.net/˜fawcett/yard/" name="yard
webpage"> to make sure there isn't already a newer version of Yard
that fixes your problem, or a note added there.
<sect>Known bugs and limitations
<p>
<enum>
<item>Space calculations will never be completely accurate because of inode
overheads and object file stripping.
<item>Yard requires that you have ldconfig in your file set so Yard can use
it to regenerate the cache. This is somewhat inelegant, since
ldconfig isn't generally useful on a rescue disk. Eventually ldconfig
may have some kind of "chroot" option to eliminate this need.
<item>Occasionally when using a loopback device the ext2 filesystem will
become corrupted for no apparent reason. See the note at the end of
<ref id="loopback" name="the loopback appendix">.
<item>Yard's method of determining the release number of a kernel image
(ie, to derive what <tt/uname -r/ would print) is usually correct.
Occasionally it returns the wrong version. This seems to happen when
a kernel is remade without doing <tt/make mrproper/.
</enum>
<sect>To be done
<p>
If anyone has any suggestions (or better, patches) for these, please
let me know.
<enum>
<item>Distribute a copy of libc-lite.so with Yard. Libc.so has become so
large (700K+) even after stripping that this has become desirable again. I
don't know how to create libc-lite, though I've scanned the ELF-Howto and
the libc source code. Is this no longer possible with ELF? From the libc
source code it looks as if the ability has been stripped out, leaving
nothing but a few stubs in the Makefiles.
<p> An alternative to libc-lite is to dynamically create a rescue libc.so
by extracting symbols from the binaries.
<item>Implement the base+extra option for $disk_set.
This would probably require extensive hacking.
</enum>
<sect>Getting the latest copy of Yard
<p>
The latest version of Yard and its documentation should always be
available from:
<quote>
<url url="http://www.croftj.net/˜fawcett/yard/">
</quote>
The secondary home for Yard is on:
<quote>
<url url="http://sunsite.unc.edu/pub/Linux/system/Recovery/">
</quote>
You should first check the Incoming directory (<url
url="http://sunsite.unc.edu/pub/Linux/Incoming/">) to make sure a more
recent copy hasn't been released.
An HTML version of this documentation, plus changes, should be available
from:
<tscreen>
<url url="http://www.croftj.net/˜fawcett/Yard_doc.html">
</tscreen>
A companion set of prefabricated specifications files are available in the
Yard-prefabs package, also available from <htmlurl
url="http://sunsite.unc.edu/pub/Linux/system/Recovery/" name="Sunsite's
system/Recovery/"> directory. Note that these are now old and may not
be very useful.
<sect>Thanks, acknowledgements and theft
<p>
Thanks are due to the following people:
<itemize>
<item>Rick Lyons for his CRAMDISK package and much e-mail help.
<item>Karel Kubat's <htmlurl
url="file://sunsite.unc.edu/pub/Linux/system/Recovery/SAR-2.25.tar.gz"
name="SAR-disk package">.
<item>Graham Chapman's original <htmlurl
url="http://sunsite.unc.edu/LDP/HOWTO/Bootdisk-HOWTO.html"
name="Bootdisk-HOWTO"> document
<item>Paul Gortmaker's ramdisk.txt (in
<file>/usr/src/linux/Documentation</file>)
<item>Bugs, patches, suggestions, encouragement:
<p>
Horst von Brand, Jeremy Buhler, Peter Chubb, Ted Cox, Nick Duffek,
Gerald Erdmann, A.P.Harris, Jonathan Kamens,
Kenneth Corbin, Marty Leisner, Thomas Quinot,
Rick Lyons, Rob McMullen, Dan Morrison, Keith Owens, Steve Orr,
Roderich Schupp, Murugan Subramanian, Jerry Sweet.
</itemize>
<appendix>
<sect>Other information
<p>
Here are some other documents of interest:
<itemize>
<item>The <em>Bootdisk-HOWTO</em> is available at
<url url="http://www.croftj.net/~fawcett/Bootdisk-HOWTO/">
<item>The ramdisk code rewrite and new options are dicussed in
<file>/usr/src/linux/documentation/ramdisk.txt</file>.
</itemize>
<sect>Format of Bootdisk_Contents
<p>
For convenience, the format rules for entries in
<tt/Bootdisk_Contents/ is given in comments at the beginning of
that file. Here is a list of the allowable forms:
<itemize>
<item>Blank lines and whitespace may be used freely.
<item>Lines beginning with # or % are comments.
<item>Filenames may be either relative or absolute.
Any filename not beginning with a slash is relative and
will be resolved relative to the current directory.
<item>Lines of the form
<tscreen><verb>
filename1 -> filename2
</verb></tscreen>
will create symbolic (soft) links on the root filesystem. For example, if
you want <tt/sh/ linked to <tt/bash/ in the root filesystem, you specify:
<tscreen><verb>
/bin/sh -> /bin/bash
</verb></tscreen>
(There is no way to specify hard links, though hard linked files
that exist on the hard disk will be hard linked on the floppy.)
<item>Lines of the form <tt/filename1 <= filename2/ will cause filename2 to be
copied to filename1 on the boot disk. This is useful for specifying
trimmed-down replacements for /etc/passwd, /etc/inittab, etc. filename2 will
be found first by searching PATH, then by searching relative to the current
directory.
A useful variant of this is:
<tscreen><verb>
filename1 <= /dev/null
</verb></tscreen>
<item>Glob designations (?, * and [...]) are generally allowed, eg
<tt>/dev/hd[ab]*</tt>. Wildcards are not allowed in link specs or
replacement specs because no one knows what they mean.
<item>You may refer to environment variables in these specs by using
a dollar sign. $RELEASE will be set the the release string of
the kernel you specify (<tt/$kernel/).
</itemize>
In most cases you don't need to specify shared libraries or loaders. The
script will detect dependencies (via <tt/ldd/) and include them
automatically. The exception for this is PAM.
You don't need to explicitly specify intermediate directories unless you
just want to make sure they exist. For example, if you mention
/foo/bar/slog, Yard will make sure /foo and /foo/bar exist.
<sect>Options for Config.pl
<p>
Here is a distillation of the options allowed in Config.pl. For convenience,
most of this text also exists as comments in the Config.pl file. These
options should have reasonable defaults, so if you don't understand what an
option is for you can probably leave it alone.
<descrip>
<tag/$verbosity/
This controls only what is printed to the screen.
If 0, only the important messages will be printed;
if 1, all messages.
All messages end up in the log file regardless of the setting.
<tag/$floppy and $floppy_capacity/
These variables specify the floppy
device where the rescue disk will be written and its capacity.
Make sure the two agree. If $floppy is a non-standard size (eg,
1722K), make sure to use the complete name (eg, /dev/fd0H1722).
<tag/$disk_set/
One of "single", "double" or "base+extra"
<itemize>
<item>
SINGLE: Both the kernel and entire compressed root filesystem will
be put on one disk.
<item> DOUBLE: The kernel will be put on the first disk and the compressed
root fs will be put on the second.
<item> BASE+EXTRA: THIS OPTION NOT YET IMPLEMENTED. The first disk will
contain the kernel plus a base set of files (enough to boot and run
tar). The second disk will contain the remaining files.
</itemize>
It is safe to keep this at SINGLE. If Yard detects that you need an
extra disk, it will offer to make a double disk set automatically.
NB. With double disk sets, both disks <em/must/ be formatted
identically.
<tag/$mount_point/
A directory to be used as a mount point. This is where the root
filesystem will be mounted during creation and where the floppy
will be mounted when the rescue disk is being written.
<tag/$device/
The device for building the compressed filesystem. This can be
<file>/dev/ram0</file> or a spare partition. You can turn off swapping
temporarily and use the swap partition on your hard disk. You can
use a loopback device if your kernel supports them -- see section
asdfasdf for instructions.
<tag/$fs_size/
The size limit of $device, in Kilobytes. For
/dev/ram0, this value should be no more than the ramsize
specified in your <file>/etc/lilo.conf</file>. For most devices,
Yard can check this value against the available space.
<tag/$kernel/
The absolute filename of the compressed kernel to be put on the
rescue disk. This should be the <em>compressed</em> kernel. This
is usually something like <file>/vmlinuz, /zImage or
/boot/zImage</file>. If you've just remade your kernel (via <tt/make
zImage/) the kernel file will reside in
<file>/usr/src/linux/arch/i386/boot/zImage</file>.
<tag/$kernel_version/
make_root_fs will examine $kernel and try to determine
its version. If Yard guesses incorrectly, or if you want to
force it anyway, set $kernel_version. The value should
be a version string such as that returned by "uname -r".
(If you compile your kernel properly via mrproper so that
/usr/src/linux/arch/i386/boot/setup is recompiled, Yard's
method will work).
<tag/$contents_file/
The file specifying the bootdisk contents specification file.
The default is <tt>Bootdisk_Contents</tt> in the installation
directory.
<tag/$rootfsz/
The file that will temporarily hold the compressed root filesystem.
<tag/$oldroot/
Where the old (hard disk) root filesystem will be mounted on the
ramdisk filesystem. create_fstab uses this to adapt your
/etc/fstab for use on the rescue disk so you'll be able to mount
hard disk partitions more easily. You shouldn't need to change
this, but run <tt>create_fstab</tt> again if you do.
<tag/$strip_objfiles/
If set to 1, binary executables and libraries will be stripped of
their debugging symbols (using <tt>objcopy</tt>) as they're copied
to the root filesystem. This may reduce their size somewhat. If
you don't understand what this means, leave it at 1. If you're
sure you don't have objcopy, or for some reason you want debugging
symbols, set it to 0.
<tag/$yard_temp/
If non-null, specifies directory where log files will be written.
If null, log files will be written to current working directory.
<tag/$use_lilo/
Controls whether to use Lilo for transferring the kernel to the boot disk.
<itemize>
<item> If 1, Yard will use Lilo to boot the kernel (configuration file is
in ./Replacements/etc/lilo.conf, created by <tt>make copies</tt>).
This allows you to use Lilo's APPEND clause and various other Lilo
options.
<item> If 0, Yard will copy the kernel directly to the rescue disk. This
saves a small amount of space.
</itemize>
<tag/@additional_dirs/
This is an array that should contain any additional directories
(besides those in $PATH) to be searched for rescue disk
files. Directories inside the list must be separated by
commas. You don't need a trailing slash on these directory
names. Any directories you list here will be searched BEFORE
those in $PATH.
</descrip>
<sect>Using a loopback device<label id="loopback">
<p>
A loopback device allows a normal disk file to be mounted as a filesystem.
Depending on how much physical memory you have, using a loopback device may
be preferable to using /dev/ram0 for building a root filesystem with Yard.
To use a loopback device you'll need to do the following:
<footnote>
Thanks to Roderich Schupp for some of this information.
</footnote>
<enum>
<item>Enable loopback device support in your kernel if you haven't
already. Under <em>Floppy, IDE and other block devices</em>, select
either Y or M for <em>Loopback device support</em>. Recompile your
kernel and reboot.
<item>Check your <quote>mount</quote> manpage to see if it supports
loopback devices. If it doesn't, you'll need modified versions of
mount and losetup. These are available from:
<quote>
<url url="ftp://ftp.win.tue.nl:/pub/linux/util/">
</quote>
in the file <tt>mount-2.5X.tar.gz</tt>, where X is the latest
version letter.
<item> You'll also probably need mke2fs 1.02 or later. Check the manpage for
<tt>mke2fs</tt>; if there is no ``-F'' option listed, you'll need a
newer version. mke2fs is included in the e2fsprogs package
available in:
<tscreen><verb>
sunsite.unc.edu:/pub/Linux/system/Filesystems/ext2/
</verb></tscreen>
</enum>
To use the loopback device/file with Yard, simply:
<enum>
<item>In Config.pl, set $device to the name of a temporary disk file
to hold the disk image, eg <file>/tmp/fsfile</file>. The file need not
already exist. Set $fs_size to its desired size.
<item>Create the $device file:
<tscreen><verb>
create_loopback_file
</verb></tscreen>
or do it yourself with:
<tscreen><verb>
dd if=/dev/zero of=$device bs=1k count=$fs_size
</verb></tscreen>
and substitute your values for $device and
$fs_size.
<item>If necessary, load the loopback device module (via <tt>insmod
loop</tt>) into your kernel.
</enum>
Yard may then be run with no further alterations.
<em>Warning:</em> When using a loopback device, occasionally the ext2
filesystem seems to get corrupted for no apparent reason. If you start
getting errors in the middle of <tt/make_root_fs/ from sys()
complaining that a directory doesn't exist, this may be what is happening.
I don't know why this happens and I can't reproduce it consistently;
however, unmounting, deleting and re-creating the file seems to get rid of
the problem.
<!-- END OF ARTICLE -->
</article>
|