- 论坛徽章:
- 0
|
QUESTION 13:
A system administrator is unable to unmount a file system. Which is the
appropriate command to determine who or what is accessing the file system?
A. who / filesystem
B. lsfs /filesystem
C. fuser /filesystem
D. unmount -f /filesystem
Answer: C
Explanation:
fuser Command
Purpose
Identifies processes using a file or file structure
Ref:
http://publib.boulder.ibm.com/in ... /aixcmds1/fuser.htm
000-232
Actualtests.com - The Power of Knowing
Incorrect Answers:
A: who Command
Purpose
Identifies the users currently logged in not who or what is accessing the filesystem
Ref:
http://publib.boulder.ibm.com/in ... ds/aixcmds6/who.htm
B: lsfs Command
Purpose
Displays the characteristics of file systems
Ref:
http://publib.boulder.ibm.com/in ... s/aixcmds3/lsfs.htm
D: umount or unmount Command
Purpose
Unmounts a previously mounted file system, directory, or file
The question states that you need to find out who or what is accessing the filesystem.
Ref:
http://publib.boulder.ibm.com/in ... aixcmds5/umount.htm
QUESTION 14:
Which cron entry will run /usr/local/bin/myscript at 0500 every Saturday?
A. 0 5**6/usr/local/bin/myscript
B. 0 5 6**/usr/local/bin/myscript
C. 6** 5 0 /usr/local/bin/myscript
D. 5 0 Sat ** /usr/local/bin/myscript
Answer: A
Explanation:
File Format:
The crontab File Entry Format
A crontab file contains entries for each cron job. Entries are separated by newline
characters. Each crontab file entry contains six fields separated by spaces or tabs in the
following form:
minute hour day_of_month month weekday command
These fields accept the following values:
minute 0 through 59
hour 0 through 23
day_of_month 1 through 31
month 1 through 12
weekday 0 through 6 for Sunday through Saturday
command a shell command
You must specify a value for each field. Except for the command field, these fields can
contain the following:
A number in the specified range. To run a command in May, specify 5 in the month field.
000-232
Actualtests.com - The Power of Knowing
Two numbers separated by a dash to indicate an inclusive range. To run a cron job on
Tuesday through Friday, place 2-5 in the weekday field.
A list of numbers separated by commas. To run a command on the first and last day of
January, you would specify 1,31 in the day_of_month field.
An * (asterisk), meaning all allowed values. To run a job every hour, specify an asterisk
in the hour field.
Note: Any character preceded by a backslash (including the %) causes that character to
be treated literally. The specification of days may be made by two fields (day of the
month and day of the week). If you specify both as a list of elements, both are adhered to.
For example, the following entry:
0 0 1,15 * 1 command
would run command on the first and fifteenth days of each month, as well as every
Monday. To specify days by only one field, the other field should contain an * .
Ref:
http://publib.boulder.ibm.com/in ... ixcmds1/crontab.htm
Incorrect Answers:
B: This would run the script everyday in the month of June at 5 am
C: This would run the script 6 minutes after each hour in May each Sunday
D: This would not run the script. The syntax is incorrect
Ref for all incorrect answers:
http://publib.boulder.ibm.com/in ... ixcmds1/crontab.htm
QUESTION 15:
A mirrored root disk need to be replaced. Which of the following commands will
clear the boot record on the failing disk?
A. chpv -c
B. rmlv hd5
C. bosboot -ad
D. rmdev -dl hd5
Answer: A
QUESTION 16:
A system administrator' daily monitoring has revealed a failing disk drive. The
drive that is failing, hdisk0, is a lvm mirrored drive. What is the first step that
should be taken in order to physically replace this drive?
A. Remove the physical volume from the system.
B. Remove the physical volume from the volume group.
C. Remove the physical partition from the volume group.
D. Remove the logical volume copies from the failing drive.
Answer: D
000-232
Actualtests.com - The Power of Knowing
QUESTION 17:
Which daemon converts Remote Procedure Call (RPC) program numbers into
Internet port numbers?
A. inetd
B. rexecd
C. routed
D. portmap
Answer: D
QUESTION 18:
Which of the following commands can be used to identify all PCI hot plug slots on a
server and their characteristics?
A. lsattr -l pci
B. lscfg -Cc pci
C. lsconn -p pci -a
D. lsslot -c pci -a
Answer: D
QUESTION 19:
Which of the following commands should an AIX system administrator invoke to
check if the required device-dependent software is missing?
A. dbx
B. cfgmgr
C. telinit q
D. lsdev -Cc adapter
Answer: B
QUESTION 20:
Which of the following actions will enable 64-bit applications on a system with a
32-bit kernel?
A. change the kernel to 64bit, reboot, and then use the following command:
chdev -l sys0 -a applications=64_bit
B. Re-install the OS with 64-bit kernel enabled
C. Re-install all applications with 64-bit kernel enabled
000-232
Actualtests.com - The Power of Knowing
D. Use smit to enable the 64-bit applications
Answer: |
|