首页/ 题库 / [单选题]

A System&en的答案

A System p administrator noticed several error messages on the screen while the system was booting up; but was not able to write them down. 
Where should the system administrator look for the console log, assuming it is in the default location()

单选题
2022-01-05 05:03
A、/var/log/conslog
B、/var/log/console.log
C、/var/adm/ras/conslog
D、/var/ras/console.log
查看答案

正确答案
C

试题解析

标签: IBM(000-223)
感兴趣题目

A client has requested an IBM System x solution. Pricing is the most sensitive decision factor. They are looking for 12 TB of storage, with a projected growth of 10-15%. As this is the only server accessing this amount of data, the customer does not require a SAN. 
What should the System x Sales Specialist recommend?()

A UNIX customer has a Symmetrix DMX that has crashed three times in the past six months, causing data loss. The customer is shopping for an enterprise storage solution to provide point-in- time copy functionality without a fixed relationship to its primaries. 
Which IBM solution best meets this customer’s requirements()

A customer currently buys HP ProLiant servers and EMC storage. The customer has encountered various problems getting certain servers to work with their storage.
 Which of the following arguments can the Sales Specialist present to best position IBM? ()

A customer is interested in reducing energy consumption and infrastructure consolidation for space. The customer needs a maximum of 14 servers in 7U rack. 
Which IBM BladeCenter Chassis should be recommended? ()

A typical example of a process # 19082 in the /proc file would be:     
# ls -l /proc/19082     
total 0  
dr-xr-xr-x  1  root system 0    Sep 15  15:12  .     
dr-xr-xr-x  1  root system 0    Sept 15 15:12  ..     
-rw-------  1  root system 0    Sept 15  15:12 as     
 -r--------  1  root system 128  Sept 15  15:12 cred     
--w-------  1  root system 0    Sept 15  15:12 ctl     
dr-xr-xr-x  1  root system 0    Sept 15  15:12 lwp    
 -r--------  1  root system 0    Sept 15  15:12 map     
dr-x------  1  root system 0    Sept 15  15:12 object    
 -r--r--r--  1  root system 448  Sept 15  15:12 psinfo    
-r--------  1  root system 1024 Sept 15  15:12 sigact    
 -r--------  1  root system 1520 Sept 15  15:12 status    
 -r--r--r--  1  root system 0    Sept 15  15:12 sysent  
Writing to which of the following files will allow the owner to stop a process?()

Virtualization is a technology that can help reduce power and cooling requirements. IT organizations can consolidate multiple OS and application stacks on each server with virtualization software. 
What IBM solution simplifies virtualization for IBM hardware? ()

You are designing a top-level OU structure to meet the business and technical requirements. 
Which top-evel OU or OUs should you use? ()

You have a computer that runs Windows 7. The computer is in a workgroup. You need to ensure that youcan decrypt Encrypting File System (EFS) files on the computer if you forget your password. 
What are two possible ways to achieve this goal?()

A customer has purchased three IBM System Storage DS8700 systems and would like to have their administrators trained. 
Which training alternative provides the necessary training with the least financial impact()

A customer has installed an IBM System Storage DS8700 with 20 TB of storage, two-way processor version, 32 GB cache, and 16 Fibre Channel ports. The customer is beginning to experience throughput performance issues. 
To address this performance consideration with minimal cost to the customer, which of the following should be the FIRST step to resolve the problem()

A System p administrator in a manufacturing customer plans to migrate an AIX 5.2 system to a new LPAR on an existing System p using VIOS. 
Which of the following must be completed prior to this migration ()

A customer has two Power 770 systems with 4 enclosures each.  Thirty two cores and 1TB of memory are activated on each system.  Each system has 3 database partitions and each partition has 10 cores and 300GB of memory.  
Which solution will provide automated recovery of unplanned outages at least cost?()

相关题目

A System p administrator needs to run the annualreval.sh script, directing standard error to /var/log/reval.err, and appending standard out to /var/log/reval.log. 
How can this be accomplished ()

A user is unable to determine the default system text editor.
How can the local administrator assist the user by identifying the default text editor for the system?()

分析下列Java代码:  
class A { 
public static void main(String[] args)    {  
method();   }     
static void method()    {     try    { 
System.out.println("Hello");    System.exit(0);    }   
finally   { 
System.out.println("good-bye");  }   }    } 
编译运行后,输出结果是()。  
  

Company.com has a resource group that contains a database that is accessed by a web client  based on another system. The communication to the database is TCP/IP. Occasionally after a failure, the end users get unusual error messages that indicate the database server is not available. It has been determined that the web server is trying to access the database server’s information before it has completed file system recovery after a failure. 
How can HACMP affect this problem?()   

A customer wants to purchase an IBM System Storage DS8700 to support a high-performance database environment. 
Which technical solution gives the customer the best relationship between I/O performance at the machine’s backend vs. capacity installed in the machine()

class Birds { 
public static void main(String [] args) { 
try { 
throw new Exception(); 
} catch (Exception e) {
try { 
throw new Exception(); 
} catch (Exception e2) { System.out.print("inner "); } 
System.out.print("middle ");
} 
System.out.print("outer "); 
} 
} 
结果为:()  

static void test() throws Error { 
if (true) throw new AssertionError(); 
System.out.print(”test “); 
} 
public static void main(String[] args) { 
try { test(); } 
catch (Exception ex) { System.out.print(”exception “); } 
System.out.print(”elld “); 
} 
What is the result?() 

Given:  
11. static class A {  
12. void process() throws Exception { throw new Exception(); }  
13. }  
14. static class B extends A {  
15. void process() { System.out.println("B "); }  
16. }  
17. public static void main(String[] args) {  
18. A a = new B();  
19. a.process();  
20. }  
What is the result? ()

public class X { 
public static void main(String [] args) { 
try { 
badMethod(); 
System.out.print(“A”); 
} 
catch (RuntimeException ex) { 
System.out.print(“B”); 
} 
catch (Exception ex1) { 
System.out.print(“C”); 
} 
 finally { 
System.out.print(“D”); 
} 
System.out.print(“E”); 
} 
public static void badMethod() { 
throw new RuntimeException(); 
} 
} 
What is the result?()  

static void test() throws RuntimeException { 
try { 
System.out.print(”test “); 
throw new RuntimeException(); 
} 
catch (Exception ex) { System.out.print(”exception “); } 
} 
public static void main(String[] args) { 
try { test(); } 
catch (RuntimeException ex) { System.out.print(”runtime “); } 
System.out.print(”end “); 
} 
What is the result?() 

11. static classA { 
12. void process() throws Exception { throw new Exception(); } 
13. } 
14. static class B extends A { 
15. void process() { System.out.println(”B “); } 
16. } 
17. public static void main(String[] args) { 
18.A a=new B(); 
19. a.process(); 
20.} 
What is the result?() 

11.classA { 
12. public void process() { System.out.print(”A “); } } 
13. class B extends A { 
14. public void process() throws RuntimeException { 
15. super.process(); 
16. if (true) throw new RuntimeException(); 
17. System.out.print(“B”); }} 
18. public static void main(String[] args) { 
19. try { ((A)new B()).process(); } 
20. catch (Exception e) { System.out.print(”Exception “); } 
21. } 
What is the result?() 

11.classa { 
12. public void process() { System.out.print(”a,”); } } 
13. class b extends a { 
14. public void process() throws IOException { 
15. super.process(); 
16. System.out.print(”b,”); 
17. throw new IOException(); 
18. } } 
19. public static void main(String[] args) { 
20. try { new b().process(); } 
21. catch (IOException e) { System.out.println(”Exception”); } } 
What is the result?() 

A customer wants to realize a server-based computing scenario for trading floor applications with IBM BladeCenter. The customer expects the solution to offer high security and manageability, while delivering hardware-based graphics compression and full USB capability.
 Is this possible?()


A customer needs 40 TB for Tier 2 Information Lifecycle Management (ILM) data installed on the System z/VM. Their current data center is critically short of floor space. 
Which of the following would satisfy the customer requirement()

A System p administrator noticed several error messages on the screen while the system was booting up; but was not able to write them down. 
Where should the system administrator look for the console log, assuming it is in the default location()

After using the alt_disk_install command to clone a system image to another disk, the system administrator noticed a large number of defined devices not allocated to the LPAR.
Which of the following is the most likely cause of this situation?()

Company.com has a non-IBM disk storage unit connected by two Fibre channel connections. The  Nodes have multiple connections to the storage device that allow load balancing. A failure with one Fibre adapter or connection will not be noticed by the application, but it needs to be addressed. 
How can HACMP help make this environment more robust?()  

A customer with a well-known brand wants to make sure they have a Green decision in their next IT infrastructure investment.  
How can IBM Cool Blue help this customer? ()

You are working as a DBA on the decision support system. There is a business requirement to track and store all transactions for at least three years for a few tables in the database. Automatic undo management is enabled in the database. 
Which configuration should you use to accomplish this task?()

广告位招租WX:84302438

免费的网站请分享给朋友吧