Welcome to Questionaries, where you can ask questions and receive answers from other members of the community.

Let us know at info@questionaries.org

What is a FIFO in unix?

9 like 0 dislike
Hello
What is a FIFO in unix?
please reply me. i am waiting for your reply.
Thanx
asked 1 year ago by eagles11 (179,830 points)

2 Answers

1 like 0 dislike
 
Best answer
FIFO are otherwise called as 'named pipes'. FIFO (first-in-first-out) is a special file which is said to be data transient. Once data is read from named pipe, it cannot be read again. Also, data can be read only in the order written. It is used in interprocess communication where a process writes to one end of the pipe (producer) and the other reads from the other end (consumer).
answered 1 year ago by DBA-boss (120,990 points)
0 like 0 dislike
fifo - first-in first-out special file, named pipe  
A FIFO special file (a named pipe) is similar to a pipe, except that it is accessed as part of the file system. It can be opened by multiple processes for reading or writing. When processes are exchanging data via the FIFO, the kernel passes all data internally without writing it to the file system. Thus, the FIFO special file has no contents on the file system, the file system entry merely serves as a reference point so that processes can access the pipe using a name in the file system.
answered 1 year ago by eagle09 (95,490 points)

Related questions

7 like 0 dislike
1 answer
asked 1 year ago by sr_webmaster (21,000 points)
7 like 0 dislike
2 answers
asked 1 year ago by DBA-boss (120,990 points)
7 like 0 dislike
1 answer
asked 1 year ago by eagles11 (179,830 points)
7 like 0 dislike
1 answer
asked 1 year ago by eagles11 (179,830 points)
6 like 0 dislike
1 answer
asked 1 year ago by DBA-boss (120,990 points)