Sponsored Content
Top Forums UNIX for Advanced & Expert Users Disk space vanishes then reappears Post 302380452 by glev2005 on Tuesday 15th of December 2009 08:08:01 AM
Old 12-15-2009
Yes Jim, that is a valid point.. If I could find out what file it is, I would have a better idea of the process.. How about a command to have any file that grows above say, 20GB reported in system log? Is that doable?
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Out of disk space?

Hi I'm trying to install gcc and the installation program tells me that I'm out of disk space! I have just installed the os (using the default settings for partitions and sizes) and have only installed apache on the machine. Can it really be out of disk space already? How do I check how much... (4 Replies)
Discussion started by: alfabetman
4 Replies

2. Filesystems, Disks and Memory

Disk Space -

I know I have posted this question before, but I still just don't understand how to determine disk space. This server is an IBM RS6000 running on AIX version 4.2.1. I in essence need to know the following if anyone can assist me. 1) I need to know how many drives are configured in the... (2 Replies)
Discussion started by: Docboyeee
2 Replies

3. UNIX for Dummies Questions & Answers

available disk space on disk device???

Hello, Can someone please tell me which command to use to determine the available disk space on a given disk device? I have to write a shell script that compresses files and stores them in a specific location but I am not sure how "conservative" I should be? Thanks in advance! Al. (4 Replies)
Discussion started by: alan
4 Replies

4. Filesystems, Disks and Memory

disk space

Hi experts i am new in unix and informix and would like to ask 2 questions 1) my server shows when using df -k fs 1024-block used available /usr 10079072 3668670 6381144 does this mean i have 10GB, and used up 3.7GB and available 6.3GB ??? is... (3 Replies)
Discussion started by: kingsto88
3 Replies

5. Red Hat

disk space

when i check /export directory of my machine gets filled up (85%) i removed some old logs. but after cleaning df -k command still shows that /export is still 85% full. Is there a way to force df to reflect actual free space without rebooting? My machine is a production one and can't... (8 Replies)
Discussion started by: aboorkuma
8 Replies

6. Shell Programming and Scripting

Cron job vanishes if i disconnect the session upruptly

Hi Am logging in to the server as root. Using the export EDITOR=vi option before editing the cron file editing the crontab entry using crontab -e option the additional jobs which i added can be seen immediately, but when i disconnect the session upruptly the cron entry vanishes the next time... (4 Replies)
Discussion started by: aemunathan
4 Replies

7. UNIX for Dummies Questions & Answers

How much disk space?

Hi, I have this : uname -a Linux servername 2.6.18-194.11.3.el5PAE #1 SMP Mon Aug 23 15:57:10 EDT 2010 i686 i686 i386 GNU/Linux df -k Sys. de fich. 1K-blocs Occupied Disponible Capacity Monted on /u01/applis 10321208 3190160 6606760 33% /applis Does it mean... (1 Reply)
Discussion started by: big123456
1 Replies

8. Solaris

Setting PATH - Vanishes

Hi , I new to solaris. I want to set path variable . Eg: JAVA_HOME. When i do this, #JAVA_HOME=/usr/jdk/jdk1.6 #export JAVA_HOME #echo $JAVA_HOME /usr/jdk/jdk1.6 Then its ok. When i toggle to bourne shell or if i log off or restart. then JAVA_HOME is echoed blank. How to set... (4 Replies)
Discussion started by: gnanagurus
4 Replies

9. Solaris

Disk Space

I know there are other threads but they have not helped. My server is running low on disk space and I haven't been able to re-allocate. I think my solaris machine is missing tools or the way it was originally setup, may not have the right pathing. $ df -k Filesystem kbytes used... (5 Replies)
Discussion started by: lnxjenn
5 Replies

10. Red Hat

Login screen reappears..!!

Hi all, My login screen reappears if i give a correct password for a user and give login.. I am doing Linux BMR process for CentOs .. I first backup the ' / ' folder with partition details and then restore it using a live cd. By doing so i got succeeded in restoring a machine.. But while... (0 Replies)
Discussion started by: selvarajvs
0 Replies
aio_read(2)							System Calls Manual						       aio_read(2)

NAME
aio_read() - start an asynchronous read operation SYNOPSIS
DESCRIPTION
The function allows the calling process to perform an asynchronous read from a previously opened file. The function call returns when the read operation has been enqueued for processing. At this point, processing of the read operation may proceed concurrently with execution of the calling process or thread. If an error condition is detected that prevents the read request from being enqueued, returns and sets to indicate the cause of the fail- ure. Once the read operation has been successfully enqueued, an and function referencing the referred to by must be used to determine its status and any error conditions, including those normally reported by The request remains enqueued and consumes process and system resources until is called. The function allows the calling process to read from the file associated with into the buffer pointed to by The priority of the read opera- tion is reduced by the value of which must be a value between 0 (zero) and a maximum value which can be obtained using the call with the argument A value of 0 (zero) yields no reduction in priority. The field is ignored. The read operation takes place at the absolute position in the file given by as if were called immediately prior to the operation with equal to and set to However, the value of the file offset is never changed by asynchronous I/O operations. Deallocating or altering the contents of memory referred to by while an asynchronous read operation is outstanding (i.e. before has been called) may produce unpredictable results. If is a valid signal event structure, then the designated signal will be delivered when the requested asynchronous read operation com- pletes. To use this function, link in the realtime library by specifying on the compiler or linker command line. RETURN VALUE
returns the following values: Successful completion, the operation has been enqueued. Failure. The requested operation was not enqueued. is set to indicate the error. The return value from reflects the success or failure of enqueuing the requested read operation for asynchronous processing. fails if an error in the function call is immediately detected, or if system resource limits prevent the request from being enqueued. Other error con- ditions are reported asynchronously and must be retrieved with and ERRORS
If detects one of the following error conditions, is set to the indicated value: The request could not be queued either because of a resource shortage or because the per-process or system-wide limit on asynchronous I/O operations or asynchronous threads would have been exceeded. is not a valid address in the process virtual address space. The parameters of the indicated in are invalid. The is already in use for another asynchronous I/O operation. Once the read request has been enqueued by the following errors, in addition to all of the errors normally reported by the function, may be reported asynchronously by a subsequent call to or referencing its The was not a valid file descriptor open for reading. The value of is not valid. The value of is invalid. The file offset implied by or are not valid for the file at the time the request is processed. The read operation was canceled due to a subsequent call to EXAMPLES
The following code sequence and call to starts an asynchronous read operation. SEE ALSO
aio_cancel(2), aio_error(2), aio_fsync(2), aio_return(2), aio_suspend(2), aio_write(2), lio_listio(2), read(2), aio(5). STANDARDS CONFORMANCE
aio_read(2)
All times are GMT -4. The time now is 03:22 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy