GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

GeekInterview.com  >  Certification  >  Sun  >  310-014
Go To First  |  Previous Question  |  Next Question 
 310-014  |  Question 145 of 175    Print  
Which two commands perform a full backup of all files in the root (/) file system to the
default /dev/rmt/0 tape device? (Choose two)
A. ufsdump 0 /
B. ufsdump /dev/rmt/0 /
C. ufsdump / /dev/rmt/0
D. ufsdump 0 /dev/rmt/0 /
E. ufsdump Of /dev/rmt/0 /
Answer: C, D



  
Total Answers and Comments: 2 Last Update: February 12, 2007   
  
 Sponsored Links

 
 Best Rated Answer

No best answer available. Please pick the good answer available or submit your answer.
December 23, 2005 11:35:25   #1  
Kink        

RE: Which two commands perform a full backup of all fi...
Right answears: A, E (in answear "E" option 0f (zero, no letter O)files_to_dump is required and must be the last argument onthe command line. => answear "C"-incorrectWithout option "f" ufsdump take /dev/rmt/0 as "file_to_dump" => answears "B"&"D"-incorrect
 
Is this answer useful? Yes | No
February 12, 2007 06:04:28   #2  
admin        

RE: Which two commands perform a full backup of all fi...
Correct: A & D. Test it in your Solaris. Other syntax are wrong.
 
Is this answer useful? Yes | No

 Related Questions

Which two describe /dev/rmt0? (Choose two) A. The first instance of a tape drive. B. The physical device name for the default tape drive. C. The logical device name with hardware compression activated. D. The default tape device name as indicated in the /kernel/drv/st.conf file. E. The default tape device name that indicates the tape should not be rewound when the current operation completes.
Answer: A and D  

You have only a limited number of tapes available, and need to use them to hold as much data as possible. Which tape device allows you to save the most data on a single tape? A. /dev/rmt/oz B. /dev/rmt/01 C. /dev/rmt0m D. /dev/rmt/0h
Answer: D 

What is a valid /etc/vfstab entry for associating the /export directory with the device c2t3d0s0? A. /dev/dsk/c2t3d0s0 /dev/rdsk/c2t3d0s0 /export ufs 1 yes B. /dev/rdsk/c2t3d0s0 /dev/rdsk/c2t3d0s0 /export ufs 1 yes – C. /dev/dsk/c2t3d0s0 /dev/rdsk/c2t3d0s0 /export ufs 1 yes – D. /devices/dsk/c2t3d0s0 /devices/rdsk/c2t3d0s0 /export ufs 1 yes –
Answer: C 

With the system powered off, you physically connect a new SCSI disk intro the existing SCSI chain. You boot the system using the boot –r command. In which four locations can you find the new device names for the new SCSI disk? (Choose four) A. /devices B. /dev/dsk C. /dev/rdsk D. /kernel/drv E. /etc/path_to_inst F. /etc/name_to_major G. /platform/sun4u/kernel/drv
Answer: A, B, C and F 

You have four printers installed and configured on your print server. The printers are named according to their performance: veryfast, fast, medium, and slow. You want to define a print class, printclass, that incorporates all four printers and sends most of the work to the veryfast and fast printers. Which sequence of commands on the print server accomplishes this task? A. lpadmin –p veryfast,fast,medium,slow –c printclass B. lpsched –p veryfast,fast,medium,slow –c printclass
Answer: D 

What files does the last command read to determine login history? A. /var/adm/wtmp B. /var/adm/utmpx C. /var/adm/wtmpx D. /var/adm/lastlog
Answer: C  

You telnet into a Solaris machine and log in as user1. Your account is set up to use the C shell (csh) and your home directory is /home/user1. Which three files (assuming they exist) does the C shell read to initialize your environment? (Choose three) A. /etc/login B. /etc/.login C. /etc/profile D. /home/user1/.login E. /home/user1/.cshrc F. /home/user1/.profile
Answer: B, C and E  

The SUNWman package has been spooled into the /export/host1/packages directory. Your current directory is /etc. You want to obtain detailed information about this package before installing it into the Solaris Operating Environment on your system. Which command displays the information you want to see? A. pkginfo –dl . SUNWman B. pkginfo –dl /export/host1/packages SUNWman C. pkginfo –d /export/host1/packages –l SUNWman D. pkginfo –d SUNWman /export/hist1/packages
Answer: C  

You have shut down your system to run level 0, and you are at the ok prompt. You want to display a list of disk device paths and choose one to use it a customized device alias. Which OBP command allows you to select a device path and later insert it into the command line that creates the new device alias? A. devalias B. show-devs C. show-disks D. find-device
Answer: C  

You have logged into the console as user1. Now you log in as root using the su command. Which user identities do the whoami and who am i commands report? A. whoami reports root, who am i reports root. B. whoami reports user1, who am i reports root. C. whoami reports root, who am i reports user1. D. whoami reports user1, who am i reports user1.
Answer: C  


 Sponsored Links

 
Related Articles

SOA Definitions and Certification

SOA Definitions and Certification Service Oriented Architecture is a design that enables Business and computational resources to be linked together on demand as a means of achieving the results desired for service consumers which may be end users or other services Service Oriented Architecture has
 

What is Data File

In a logical data model, the conceptual data model which is based on the business semantic is being defined. Thus, entities and relationships and corresponding table and column design, object oriented classes, and XML tags, among other things are being laid regardless of the database will be physica
 

What is the default return value of a function?

The default return value from a function is int. In other words, unless explicitly specified the default return value by compiler would be integer value from function.   When a programmer wants other than integer values to be returned from function then it is essential that the pro
 

How to call C header that is not provided generally by system in C++?

Headers can be called by using extern C Syntax of extern C is: extern "C" <function declaration> for example to call C functions from C++ we can write extern "C" { <function declaration> <function declaration> ...
 

Importance of Header Files

What is the importance of header files? The main role of header file is it is used to share information among various files. In brief, if we have several functions say 4 functions named as f1, f2, f3, f4 placed in file say sample.c and if all the functions want to get accessed by each other then all
 

SQL Table Commands

SQL Table Commands Overview As mentioned previously in this series of SQL articles, databases are primarily composed of tables. The “columns and rows” structure of the table allows data to be efficiently inserted, manipulated, updated, and deleted from the database. The three mos
 

System Implementation

In the previous articles relating to SDLC Stages we discussed about Project Planning and Feasibility Study moved on to System Analysis and Requirements which lead to Systems Design. Systems Design will naturally lead to another stage where it becomes closer to the actual deployment of the p
 

System Analysis and Requirements

In the previous chapter, we’ve discussed about project planning and feasibility study. That stage was important because it tries to establish a problem in our highly technological world. As our understanding on what we can do in computers evolve and so are the things that we need to make t
 

Top 10 Application Security Vulnerabilities in Web.config Files - Part One

These days, the biggest threat to an network security comes from its public Web site and the Web-based applications found there. Unlike internal-only network services such as databases-which can be sealed off from the outside via firewalls-a public Web site is generally accessible to anyone who wan
 

Top 10 Application Security Vulnerabilities in Web.config Files - Part Two

Some of the most common and dangerous application security vulnerabilities that exist in ASP.NET Web-based applications come not from the C# or VB.NET code that make up its pages and service methods, but instead from the XML code that makes up its Web.config files. Incorrect configurations can open
 





About Us  |   Privacy Policy  |   Terms and Conditions  |   Contact  |   Site Map  |   Add Question  |   Propose Category  |   RSS Feeds  |   Articles Sitemap  |   Site Updates  |   Add Resource

Copyright © 2005 - 2008 GeekInterview.com. All Rights Reserved
Page copy protected against web site content infringement by Copyscape