find: 0652-019 The status on /interfaces/eu3/hmsl/EBS/20070722 is not valid.


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users find: 0652-019 The status on /interfaces/eu3/hmsl/EBS/20070722 is not valid.
# 1  
Old 09-04-2007
find: 0652-019 The status on /interfaces/eu3/hmsl/EBS/20070722 is not valid.

I am getting this error when i issue find command.
Any advice.

Regards,
Vishal
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Solaris

Link aggregation and status of network interfaces in “ipadm” command

I am again rephrasing the issue that we are facing: We are creating link aggregations with two interfaces named net0 & net5: # dladm create-aggr -m dlmp -l net0 -l net5 -l net2 aggr1 Setting prob targets for aggr1: # dladm set-linkprop -p probe-ip=+ aggr1 Setting failure detection... (3 Replies)
Discussion started by: amitanshu.verma
3 Replies

2. UNIX and Linux Applications

Mod_proxy_html on Oracle EBS

Hi , I am trying to impliment mod_proxy and mod_proxy_html as a reverse proxy for oracle EBS. Everything is working fine except the submenu links (still pointing to the internal url) of the modules tree view. Please help me. Regards, Arumon (0 Replies)
Discussion started by: arumon
0 Replies

3. Solaris

Interfaces and Virtual-interfaces queries

Hi Al, In course of understanding networking in Solaris, I have these doubts on Interfaces. Please clarify me. I have done fair research in this site and others but could not be clarified. 1. In the "ifconfig -a" command, I see many interfaces and their configurations. But I see many... (1 Reply)
Discussion started by: satish51392111
1 Replies

4. Shell Programming and Scripting

Error : cat: 0652-050 Cannot open

After processing around 300 files , I am getting the below error.Please help me to resolve it cat: 0652-050 Cannot open /dir1/dir2/dir3/dir/abc.txt mv: 0653-401 Cannot rename /dir1/dir2/dir3/dir/abc.temp to /dir1/dir2/dir3/dir/abc.csv: . . . how to avoid it. because I am getting... (1 Reply)
Discussion started by: vsachan
1 Replies

5. AIX

error : pg: 0652-122 Cannot write to the temporary file

Hi All, I'm getting this error when I use "pg". /tmp is not full and the permission is correct. root@axappk01::/home> hostname|pg pg: 0652-122 Cannot write to the temporary file. Please advise. (6 Replies)
Discussion started by: fara_aris
6 Replies

6. Programming

C program : how to list interfaces with a valid IP ?

Hi all, I think that the title is explicit enough :) I would like in a C program to list the interfaces with a valid IP. Those that can permit to send something over a network. Thanks ;) (7 Replies)
Discussion started by: brolon
7 Replies

7. AIX

pg: 0652-121

Hello, Whenever a non-root user try to run any cmd with |pg on a AIX 5.1 system it returns: pg: 0652-121 Cannot create the temporary file. Does anyone knows what this is about? This doesn't occur with root account. Obrigado (2 Replies)
Discussion started by: maraquez
2 Replies

8. UNIX for Advanced & Expert Users

find error - The status not valid.

Hi, I am writing a ksh script to delete old files from directory, which will be called by several wrapper scripts parallely. The deletion is done using find command. It is working fine. but sometimes i get the error : The status on /home/mydir/mfgsite is not valid. The script is... (3 Replies)
Discussion started by: shihabvk
3 Replies
Login or Register to Ask a Question
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