11/29/94 Devices Not Configured After Install Prior to 3.2.4 SPECIAL NOTICES Information in this document is correct to the best of our knowledge at the time of this writing. Please send feedback by fax to "AIXServ Information" at (512) 823-4009. Please use this information with care. IBM will not be responsible for damages of any kind resulting from its use. The use of this information is the sole responsibility of the customer and depends on the customer's ability to eval- uate and integrate this information into the customer's operational environment. ABOUT THE PROBLEM During a Preservation Installation or a restore from a mksysb, the device configuration may not be preserved. This problem is caused by an array limit of 512 elements in /bin/ksh. This problem is resolved by APAR IX29813 and there is a fix available. This fix has been available for quite a while | and is part of the 3.2.4 and 3.2.5 PMPs. Fixes can be | ordered by specific fix number from 1-800-CALL-AIX. The following is a workaround for the array-limit problem. SCRIPT Devices Not Configured After Install Prior to 3.2.4 1 11/29/94 #!/bin/ksh # # 1. Create this script in your /tmp directory using your favorite # editor. Name it "fixrda". # # 2. Execute the script using the command "ksh /tmp/fixrda". for count in 1 2; do # # The reconfig1 and reconfig2 files must still be in /tmp # if [[ ! -s /tmp/reconfig$count ]]; then echo "/tmp/reconfig$count: file not found" exit 1 fi echo "Fixing /tmp/reconfig$count..." grep "^cmds\[" /tmp/reconfig$count |\ while read line; do line="${line#*\'}" line="${line%\'*}" echo "$line" done >/tmp/reconfig$count.new echo "Running fixed /tmp/reconfig$count..." ksh /tmp/reconfig$count.new 2>/tmp/reconfig$count.out done # END OF DOCUMENT (32.config.recov.anz) Devices Not Configured After Install Prior to 3.2.4 2 11/29/94 READER'S COMMENTS Please fax this form to (512) 823-4009, attention "AIXServ Informa- tion". You may also e-mail comments to: elizabet@austin.ibm.com. These comments should include the same customer information requested below. Use this form to tell us what you think about this document. If you have found errors in it, or if you want to express your opinion about it (such as organization, subject matter, appearance) or make sug- gestions for improvement, this is the form to use. If you need technical assistance, contact your local branch office, point of sale, or 1-800-CALL-AIX (for information about support offer- ings). These services may be billable. Faxes on a variety of sub- jects may be ordered free of charge from 1-800-IBM-4FAX. Outside the U.S. call 415-855-4329 using a fax machine phone. When you send comments to IBM, you grant IBM a nonexclusive right to use or distribute your comments in any way it believes appropriate without incurring any obligation to you. NOTE: If you have a problem report or item number, supplying that number may help us determine why a procedure did or did not work in your specific situation. Problem Report or Item #: Branch Office or Customer #: Be sure to print your name and fax number below if you would like a reply: ______________________________________________________________________ END OF DOCUMENT (32.config.recov.anz, 4FAX# 2361) Devices Not Configured After Install Prior to 3.2.4 3