After updating the system, the system administrator runs the lppchk-v command. During this process, the bos.rte.libc is in a broken state. Which of the following procedures should be performed to fix this problem?()A、Reinstall the systemB、Use installp -r to reject the broken filesetC、Use installp -acgFXd to reinstall the fileset at the same levelD、Use install -u to remove this broken fileset and reinstall it again

After updating the system, the system administrator runs the lppchk-v command. During this process, the bos.rte.libc is in a broken state. Which of the following procedures should be performed to fix this problem?()

  • A、Reinstall the system
  • B、Use installp -r to reject the broken fileset
  • C、Use installp -acgFXd to reinstall the fileset at the same level
  • D、Use install -u to remove this broken fileset and reinstall it again

相关考题:

短文理解听力原文: The banking system of China evolved from a mono-banking system between the 1940s and the early 1970s. Not until 1978 did China's banking system make a drastic shift in its banking philosophy and structure. The shift is not only a necessity for the country's development, but also acts as a gesture showing the "openness" of the country to the outside world.Today, after nearly forty years of rapid development, China is moving towards a modem and market-oriented banking structure although there is still much to be improved to meet the needs of the country's development.In the mid 1990s, banks in China began to focus their attention on capital adequacy requirements, non-performing and bad loans, profitability and also the industry's overall expansion strategy. Reforms of monetary and financial system in China are speeding up in the 90s. Existing specialized banks gradually have become commercial banks.21. What kind of banking system did China have before the 1980s?22.Up to now, how long has China experienced rapid development?23.What are the banks in China focusing their attention on?(21)A.The same system as in the western countries.B.A mono-banking system.C.A modern banking system.D.A commercial banking system.

After installing a new hydraulic pump in a system, what special attention should be given to the hydraulic system?A.The relief valves in the system should be readjustedB.The filters and strainers should be checked frequentlyC.All system pressure should be readjustedD.The system should be drained and renewed with a fluid of different operating characteristics

After updating the system, the system administrator runs the lppchk-v command. During this process, the bos.rte.libc is in a broken state. Which of the following procedures should be performed to fix this problem?()A.Reinstall the systemB.Use installp -r to reject the broken filesetC.Use installp -acgFXd to reinstall the fileset at the same levelD.Use install -u to remove this broken fileset and reinstall it again

After creating backups of critical system and user data, which of the following is the BEST location to store the backups?()A、In the supply closet so anyone can access them if neededB、Near the server for easy access to restore filesC、Locked in a cabinet in the IT Manager’s officeD、At a secure off-site storage facility

What is the Cisco IOS default behavior for switching from the shared tree to the shortest path tree in PIM-SM operations?()A、immediately after receiving the first packet on the shared tree for a given (S,G)B、after receiving over 1 kb/s traffic onthe shared tree for a given (S,G)C、10 seconds after receiving the first packet on the shared tree for a given (S,G)D、30 seconds after receiving the first packet on the shared tree for a given (S,G)E、after receiving over 10 kb/s traffic onthe shared tree for a given (S,G)

12. void start() {  13. A a = new A();  14. B b = new B();  15. a.s(b);  16. b = null;  17. a = null;  18. System.out.println(“start completed”); 19. }  When is the B object, created in line 14, eligible for garbage collection?()  A、 After line 16.B、 After line 17.C、 After line 18 (when the methods ends).D、 There is no way to be absolutely certain.E、 The object is NOT eligible for garbage collection.

What three major tasks are performed by a Designated Intermediate System in an ISIS pseudonodeenvironment?()A、Updating the pseudonode LSPB、maintaining pseudonode link-state informationC、creating the pseudonodeD、flooding LSPs over the LANE、election of the pseudonode

Which of the following may cause a printer to not print correctly after updating from Windows 98 to Windows XP?()A、Incorrect printer driver.B、Printer needs calibration.C、Dirty printer head.D、Font settings on the printer.

Which of the following procedures should be performed to minimize possible problems for a customer when updating software?()A、Apply the updates without committing.B、Commit the new updates to be certain there is no change after the next reboot.C、Update one fileset at a time and test to ensure that it works before updating the next fileset.D、No action is necessary since the software can always be uninstalled and re-installed.

A system administrator would like to set a system to reboot after a crash.  What is the best way to do this?()A、 smit chgsysB、 bosbootC、 smit dumpD、 bootlist -r

After installing the base operating system and the Server bundle, a system administrator decides to remove several printer definitions that the system users will not need. Which of the following procedures is the best way for a system administrator to remove the extra printer definitions?()A、Select the SMIT option to remove software productsB、Reinstall the desired filesets using the "Force Overwrite" optionC、Delete the unnecessary entries from the /usr/lpp/printers directoryD、Use the ODM edit (odem) utility to revmoe the definition from the system's ODM database

An administrator issued a command to update the firmware of an Ethernet adapter on a partitioned system, but received an error. What is the most likely cause of the problem?()A、The adapter must be taken offline prior to the firmware update.B、The system has not been rebooted since the adapter was added to the LPAR.C、The adapter must be assigned to the service partition prior to updating the firmware.D、The adapter must be dynamically removed from the LPAR prior to updating the firmware.

class Work implements Runnable {  Thread other;   Work(Thread other) { this.other = other; }  public void run() {  try { other.join(); } catch (Exception e) { }  System.out.print("after join ");  } }  class Launch {  public static void main(String [] args) {  new Thread(new Work(Thread.currentThread())).start();  System.out.print("after start ");  } }  结果为:()A、after joinB、after startC、after join after startD、after start after join

Your boss at Certkiller .com wants you to clarify Oracle 10g. Which two steps are performed the first time any UPDATE statement is issued after the instance is started?()A、Creating the parse tree of the statementB、Writing the modified data blocks to the data filesC、Writing the modified data to the archived redo log filesD、Updating the control file to indicate the most recent checkpointE、Updating the data file header to indicate the most recent checkpointF、Reading the blocks to database buffer cache if they are not already there

You are performing a Weekly backup and you want to be sure that you backup everything including the registry, boot files, and COM. How can you do this with the least amount of administrative effort?()A、Configure the backup to backup the system state area.B、Configure the backup to backup the system partition.C、Create a batch file to run RDISK.EXE /s-before backup starts.D、Create a batch file to run RDISK.EXE /s- after backup is started.

单选题class Work implements Runnable {  Thread other;   Work(Thread other) { this.other = other; }  public void run() {  try { other.join(); } catch (Exception e) { }  System.out.print("after join ");  } }  class Launch {  public static void main(String [] args) {  new Thread(new Work(Thread.currentThread())).start();  System.out.print("after start ");  } }  结果为:()Aafter joinBafter startCafter join after startDafter start after join

单选题A system administrator would like to set a system to reboot after a crash.  What is the best way to do this?()A smit chgsysB bosbootC smit dumpD bootlist -r

单选题The /export/home file system is running out of space on c0t0d0s7. You added a new disk to the system and it is named c1t1d0. You need to move the /export/home file system to slice 7 on the new disk.  Which command is used to move the data from /export/home to the new disk after booting the server to the single-user milestone? ()A AB BC CD D

单选题After installing a new hydraulic pump in a system, what special attention should be given to the hydraulic system?()AThe relief valves in the system should be readjustedBThe filters and strainers should be checked frequentlyCAll system pressure should be readjustedDThe system should be drained and renewed with a fluid of different operating characteristics

单选题After has permit the commissioning, the()will permit the SES access to system.AINMARSATBIMOCMSCDCES

单选题Which system(s) in the hydraulic systems of crane always hold(s) single side of load?()Ahoisting system onlyBhoisting system and luffing systemChoisting system and slew and slewing systemDslewing system only

单选题Which of the following procedures should be performed to minimize possible problems for a customer when updating software?()AApply the updates without committing.BCommit the new updates to be certain there is no change after the next reboot.CUpdate one fileset at a time and test to ensure that it works before updating the next fileset.DNo action is necessary since the software can always be uninstalled and re-installed.

单选题After successful commissioning , the()will permit the SES access to system.AINMARSATBIMOCMSCDCES

单选题An administrator issued a command to update thefirmware of an Ethernet adapter on a partitioned system, but received an error. What is the most likely cause of the problem?()AThe adapter must be taken offline prior to the firmware update.BThe system has not been rebooted since the adapter was added to the LPAR.CThe adapter must be assigned to the service partition prior to updating the firmware.DThe adapter must be dynamically removed from the LPAR prior to updating thefirmware.

单选题In your database, the users SYS and SYSTEM have been assigned the profiles, ADMIN_PROF1 and ADMIN_PROF2, respectively. The rest of the database administrators are assigned the profile ADMIN_PROF3. You create a profile, USER_PROF, and assign it to the application user, Adams. After a week you realize that the profile is no longer required and you decide to drop it. What will Adam’s profile be after the USER_PROF profile has been dropped?()Ano profilesBthe default profileCsame as the profile of SYS userDsame as the profile of SYSTEM user

单选题Which of the following could the system administrator use to assist in debugging boot problems after the system is up?()ASMSBalogCfsckDbosboot

多选题现有:  class Flow {  public static void main(String [] args)   try {  System. out .print ("before") ;   doRiskyThing ( )  ;   System.out.print ("after ") ;   } catch (Exception fe) {  System.out.print ("catch") ;   }  System. out .println ( " done") ;  }  public static void doRiskyThing() throws Exception{   // this code returns unless it throws an Exception           }}  可能会产生哪两项结果 ?()Abefore catchBbefore after doneCbefore catch doneDbefore after catch