Sponsored Content
The Lounge What is on Your Mind? Planning to be certified , your advice? Post 302112854 by adel8483 on Saturday 31st of March 2007 09:04:48 AM
Old 03-31-2007
Planning to be certified , your advice?

Hi,


I got 2 courses Intermediate and advanced Solaris 10 Administration before 1 month.

I was studying the material of the 1st course I will finish it soon. I want to get the Exam. What is your advice?

Which is the best Exam Quastion ( Testking or ,,,,,,,, Etc) ....


Regards
 

7 More Discussions You Might Find Interesting

1. Solaris

Planning for DR, I have to collect information

Dear All, We are going for Disaster Recovery project, the vendor asked for more details about how much is the daily data changes only. using sar / iostat can any one help me to collect this ?! Note: only I need the changed data size not the daily increasing data. this is to know how much... (1 Reply)
Discussion started by: adel8483
1 Replies

2. AIX

capacity planning on aix

Hi All, What do you usually use for capacity planning on AIX? Any idea will do? Thanks in advance, itik (1 Reply)
Discussion started by: itik
1 Replies

3. Solaris

tools for capacity planning

Hi All, What do you usually use for capacity planning tool on solaris 8 or later? Thanks in advance. (2 Replies)
Discussion started by: itik
2 Replies

4. Solaris

To Be UNIX Certified

Hi all, I want to be unix certified.How to get it Regardsd megh (2 Replies)
Discussion started by: megh
2 Replies

5. AIX

Use of System Planning Tool (SPT)

How to use system Planning tool. I have installed it and trying to just design something but i dont know any thing ...is there any documentation or questions to practice the SPT ? (1 Reply)
Discussion started by: pchangba
1 Replies

6. Solaris

Contingency planning for System Failure

I have inhereted a Solaris 8 server which is running an important application in our production environment. The dilema is that the server has just one internal hard drive I believe it was installed using jump start, it does not even have a CD ROM drive and root is not mirrored (since there is... (2 Replies)
Discussion started by: Tirmazi
2 Replies

7. Red Hat

RHCSA - Become certified

Hi everyone, Getting a RHCSA certification is a good job to do? does it help to get a job as sys admin? companies count on it? please give me some ideas...I want to put some time on this and become certified. so i just want to know if this is a good job to do or I will waste my time. thanks. ... (6 Replies)
Discussion started by: messi777
6 Replies
VOP_ADVISE(9)						   BSD Kernel Developer's Manual					     VOP_ADVISE(9)

NAME
VOP_ADVISE -- apply advice about use of file data SYNOPSIS
#include <sys/param.h> #include <sys/vnode.h> int VOP_ADVISE(struct vnode *vp, off_t start, off_t end, int advice); DESCRIPTION
This call applies advice for a range of a file's data. It is used to implement the posix_fadvise system call. Its arguments are: vp The vnode of the file. start The start of the range of file data. end The end of the range of file data. advice The type of operation to apply to the file data. Possible values are: POSIX_FADV_WILLNEED Initiate an asynchronous read of the file data if it is not already resident. POSIX_FADV_DONTNEED Decrease the in-memory priority of clean file data or discard clean file data. If the start and end offsets are both zero, then the operation should be applied to the entire file. Note that this call is advisory only and may perform the requested operation on a subset of the requested range (including not performing it at all) and still return success. LOCKS
The file should be unlocked on entry. RETURN VALUES
Zero is returned if the call is successful, otherwise an appropriate error code is returned. ERRORS
[EINVAL] An invalid value was given for advice. SEE ALSO
vnode(9) BSD
October 3, 2013 BSD
All times are GMT -4. The time now is 04:44 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy