<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://www.freebsdwiki.net/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://www.freebsdwiki.net/index.php?action=history&amp;feed=atom&amp;title=Mkfifo</id>
		<title>Mkfifo - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://www.freebsdwiki.net/index.php?action=history&amp;feed=atom&amp;title=Mkfifo"/>
		<link rel="alternate" type="text/html" href="http://www.freebsdwiki.net/index.php?title=Mkfifo&amp;action=history"/>
		<updated>2026-04-06T05:18:24Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.18.0</generator>

	<entry>
		<id>http://www.freebsdwiki.net/index.php?title=Mkfifo&amp;diff=10417&amp;oldid=prev</id>
		<title>DrModiford: Missing 'in'</title>
		<link rel="alternate" type="text/html" href="http://www.freebsdwiki.net/index.php?title=Mkfifo&amp;diff=10417&amp;oldid=prev"/>
				<updated>2008-06-13T12:21:59Z</updated>
		
		<summary type="html">&lt;p&gt;Missing &amp;#039;in&amp;#039;&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
		&lt;tr valign='top'&gt;
		&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 12:21, 13 June 2008&lt;/td&gt;
		&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;{{System-Commands}}&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;{{System-Commands}}&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;−&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;The '''mkfifo''', or Make First-In First-Out, command creates a form of 'pipe' somewhere on the file system with special properties.&amp;#160; This pipe can be thought of as a file the traditional, or physical, sense in that it can be written-to and read-from however it takes it one step further by allowing two separate process to have access to it; one process writes to it while another process reads from it and in the order entries were made.&amp;#160; As such it is often referred to as 'half-duplex' because only one write or one read can happen at a time.&amp;#160; This makes it a form of 'data buffer'.&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;The '''mkfifo''', or Make First-In First-Out, command creates a form of 'pipe' somewhere on the file system with special properties.&amp;#160; This pipe can be thought of as a file &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;in &lt;/ins&gt;the traditional, or physical, sense in that it can be written-to and read-from however it takes it one step further by allowing two separate process to have access to it; one process writes to it while another process reads from it and in the order entries were made.&amp;#160; As such it is often referred to as 'half-duplex' because only one write or one read can happen at a time.&amp;#160; This makes it a form of 'data buffer'.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;In reality the 'fifo' pipe exists in memory.&amp;#160; It is a form of virtual link, similar to file system entry created by the [[ln|link]] command.&amp;#160; As such it is limited by available system memory.&amp;#160; That said the pipe is persistent and will survive a reboot '''but the data within it will not''', the fifo entry remains in place until it is removed by issuing a [[rm|remove]] command.&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;In reality the 'fifo' pipe exists in memory.&amp;#160; It is a form of virtual link, similar to file system entry created by the [[ln|link]] command.&amp;#160; As such it is limited by available system memory.&amp;#160; That said the pipe is persistent and will survive a reboot '''but the data within it will not''', the fifo entry remains in place until it is removed by issuing a [[rm|remove]] command.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;[[Category:System Commands]]&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;[[Category:System Commands]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff cache key bsdwiki:diff:version:1.11a:oldid:10393:newid:10417 --&gt;
&lt;/table&gt;</summary>
		<author><name>DrModiford</name></author>	</entry>

	<entry>
		<id>http://www.freebsdwiki.net/index.php?title=Mkfifo&amp;diff=10393&amp;oldid=prev</id>
		<title>DrModiford: Added the Unix system-commands header</title>
		<link rel="alternate" type="text/html" href="http://www.freebsdwiki.net/index.php?title=Mkfifo&amp;diff=10393&amp;oldid=prev"/>
				<updated>2008-06-09T21:24:04Z</updated>
		
		<summary type="html">&lt;p&gt;Added the Unix system-commands header&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
		&lt;tr valign='top'&gt;
		&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 21:24, 9 June 2008&lt;/td&gt;
		&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;#160;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;{{System-Commands}}&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;The '''mkfifo''', or Make First-In First-Out, command creates a form of 'pipe' somewhere on the file system with special properties.&amp;#160; This pipe can be thought of as a file the traditional, or physical, sense in that it can be written-to and read-from however it takes it one step further by allowing two separate process to have access to it; one process writes to it while another process reads from it and in the order entries were made.&amp;#160; As such it is often referred to as 'half-duplex' because only one write or one read can happen at a time.&amp;#160; This makes it a form of 'data buffer'.&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;The '''mkfifo''', or Make First-In First-Out, command creates a form of 'pipe' somewhere on the file system with special properties.&amp;#160; This pipe can be thought of as a file the traditional, or physical, sense in that it can be written-to and read-from however it takes it one step further by allowing two separate process to have access to it; one process writes to it while another process reads from it and in the order entries were made.&amp;#160; As such it is often referred to as 'half-duplex' because only one write or one read can happen at a time.&amp;#160; This makes it a form of 'data buffer'.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff cache key bsdwiki:diff:version:1.11a:oldid:10392:newid:10393 --&gt;
&lt;/table&gt;</summary>
		<author><name>DrModiford</name></author>	</entry>

	<entry>
		<id>http://www.freebsdwiki.net/index.php?title=Mkfifo&amp;diff=10392&amp;oldid=prev</id>
		<title>DrModiford: Initial article on the mkfifo command (originating from Syslog-NG Installation article)</title>
		<link rel="alternate" type="text/html" href="http://www.freebsdwiki.net/index.php?title=Mkfifo&amp;diff=10392&amp;oldid=prev"/>
				<updated>2008-06-09T21:23:06Z</updated>
		
		<summary type="html">&lt;p&gt;Initial article on the &lt;a href=&quot;/index.php/Mkfifo&quot; title=&quot;Mkfifo&quot;&gt;mkfifo&lt;/a&gt; command (originating from &lt;a href=&quot;/index.php/Syslog-NG_Installation&quot; title=&quot;Syslog-NG Installation&quot;&gt;Syslog-NG Installation&lt;/a&gt; article)&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;
The '''mkfifo''', or Make First-In First-Out, command creates a form of 'pipe' somewhere on the file system with special properties.  This pipe can be thought of as a file the traditional, or physical, sense in that it can be written-to and read-from however it takes it one step further by allowing two separate process to have access to it; one process writes to it while another process reads from it and in the order entries were made.  As such it is often referred to as 'half-duplex' because only one write or one read can happen at a time.  This makes it a form of 'data buffer'.&lt;br /&gt;
&lt;br /&gt;
In reality the 'fifo' pipe exists in memory.  It is a form of virtual link, similar to file system entry created by the [[ln|link]] command.  As such it is limited by available system memory.  That said the pipe is persistent and will survive a reboot '''but the data within it will not''', the fifo entry remains in place until it is removed by issuing a [[rm|remove]] command.&lt;br /&gt;
&lt;br /&gt;
[[Category:System Commands]]&lt;/div&gt;</summary>
		<author><name>DrModiford</name></author>	</entry>

	</feed>