<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://lms.onnocenter.or.id/wiki/index.php?action=history&amp;feed=atom&amp;title=Andrew_file_system</id>
	<title>Andrew file system - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://lms.onnocenter.or.id/wiki/index.php?action=history&amp;feed=atom&amp;title=Andrew_file_system"/>
	<link rel="alternate" type="text/html" href="https://lms.onnocenter.or.id/wiki/index.php?title=Andrew_file_system&amp;action=history"/>
	<updated>2026-04-20T08:23:33Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://lms.onnocenter.or.id/wiki/index.php?title=Andrew_file_system&amp;diff=25930&amp;oldid=prev</id>
		<title>Onnowpurbo: New page: The &#039;&#039;&#039;Andrew File System&#039;&#039;&#039; (&#039;&#039;&#039;AFS&#039;&#039;&#039;) is a distributed networked file system which uses a set of trusted servers to present a homogeneous, location-transpare...</title>
		<link rel="alternate" type="text/html" href="https://lms.onnocenter.or.id/wiki/index.php?title=Andrew_file_system&amp;diff=25930&amp;oldid=prev"/>
		<updated>2011-03-30T23:01:59Z</updated>

		<summary type="html">&lt;p&gt;New page: The &amp;#039;&amp;#039;&amp;#039;Andrew File System&amp;#039;&amp;#039;&amp;#039; (&amp;#039;&amp;#039;&amp;#039;AFS&amp;#039;&amp;#039;&amp;#039;) is a &lt;a href=&quot;/wiki/index.php?title=Distributed_file_system&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Distributed file system (page does not exist)&quot;&gt;distributed networked file system&lt;/a&gt; which uses a set of trusted servers to present a homogeneous, location-transpare...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;The &amp;#039;&amp;#039;&amp;#039;Andrew File System&amp;#039;&amp;#039;&amp;#039; (&amp;#039;&amp;#039;&amp;#039;AFS&amp;#039;&amp;#039;&amp;#039;) is a [[distributed file system|distributed networked file system]] which uses a set of trusted servers to present a homogeneous, location-transparent file name space to all the client workstations. It was developed by [[Carnegie Mellon University]] as part of the [[Andrew Project]]. It is named after [[Andrew Carnegie]] and [[Andrew W. Mellon|Andrew Mellon]]. Its primary use is in [[distributed computing]].&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
AFS has several benefits over traditional networked [[file system]]s, particularly in the areas of security and scalability.  It is not uncommon for enterprise AFS cells to exceed twenty five thousand clients.  AFS uses [[Kerberos protocol|Kerberos]] for authentication, and implements [[access control list]]s on directories for users and groups.  Each client caches files on the local filesystem for increased speed on subsequent requests for the same file.  This also allows limited filesystem access in the event of a [[crash (computing)|server crash]] or a [[network outage]].&lt;br /&gt;
&lt;br /&gt;
Read and write operations on an open file are directed only to the locally cached copy. When a modified file is closed, the changed portions are copied back to the file server. Cache consistency is maintained by [[Callback (computer science)|callback]] mechanism. When a file is cached, the server makes a note of this and promises to inform the client if the file is updated by someone else.  Callbacks are discarded and must be re-established after any client, server, or network failure, including a time-out.  Re-establishing a callback involves a status check and does not require re-reading the file itself.&lt;br /&gt;
&lt;br /&gt;
A consequence of the [[file locking]] strategy is that AFS does not support large shared databases or record updating within files shared between client systems.  This was a deliberate design decision based on the perceived needs of the university computing environment.  It leads, for example, to the use of a single file per message in the original email system for the Andrew Project, the Andrew Message System, rather than a single file per mailbox.&lt;br /&gt;
&lt;br /&gt;
A significant feature of AFS is the [[Volume (computing)|volume]], a tree of files, sub-directories and AFS [[mount (computing)|mountpoints]] (links to other AFS volumes). Volumes are created by administrators and linked at a specific named path in an AFS cell. Once created, users of the filesystem may create directories and&lt;br /&gt;
files as usual without concern for the physical location of the volume.  A volume may have a [[Disk quota|quota]] assigned to it in order to limit the amount of space consumed. As needed, AFS administrators can move that volume to another server and disk location without the need to notify users; indeed the operation can occur while files in that volume are being used.  &lt;br /&gt;
&lt;br /&gt;
AFS volumes can be replicated to read-only cloned copies. When accessing files in a read-only volume, a client system will retrieve data from a particular read-only copy. If at some point that copy becomes unavailable, clients will look for any of the remaining copies. Again, users of that data are unaware of the location of the read-only copy; administrators can create and relocate such copies as needed. The AFS command suite guarantees that all read-only volumes contain exact copies of the original read-write volume at the time the read-only copy was created.&lt;br /&gt;
&lt;br /&gt;
The file name space on an Andrew workstation is partitioned into a &amp;#039;&amp;#039;shared&amp;#039;&amp;#039; and &amp;#039;&amp;#039;local&amp;#039;&amp;#039; name space. The shared name space (usually mounted as /afs on the Unix filesystem) is identical on all workstations. The local name space is unique to each workstation. It only contains temporary files needed for workstation initialization and symbolic links to files in the shared name space.&lt;br /&gt;
&lt;br /&gt;
The Andrew File System heavily influenced Version 4 of [[Sun Microsystems]]&amp;#039; popular [[Network File System (protocol)|Network File System]] (NFS). Additionally, a variant of AFS, the [[DCE Distributed File System|Distributed File System]] (DFS) was adopted by the [[Open Software Foundation]] in 1989 as part of their [[Distributed Computing Environment]].&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
There are three major implementations, [[Transarc]] ([[International Business Machines|IBM]]), [[OpenAFS]] and [[Arla (file system)|Arla]], although the Transarc software is losing support and is deprecated.  AFS (version two) is also the predecessor of the [[Coda (file system)|Coda]] file system.&lt;br /&gt;
&lt;br /&gt;
A fourth implementation exists in the [[Linux kernel|Linux]] [[kernel (computer science)|kernel]] [[source code]] since at least version 2.6.10. Committed by [[Red Hat]], this is a fairly simple implementation still in its early stages of development and therefore incomplete.&lt;br /&gt;
&lt;br /&gt;
== Available permissions ==&lt;br /&gt;
&lt;br /&gt;
The following Access Control List permissions can be granted:&lt;br /&gt;
&lt;br /&gt;
;Lookup (l)&lt;br /&gt;
:allows a user to list the contents of the AFS directory, examine the ACL associated with the directory and access subdirectories.&lt;br /&gt;
;Insert (i)&lt;br /&gt;
:allows a user to add new files or subdirectories to the directory.&lt;br /&gt;
;Delete (d)&lt;br /&gt;
:allows a user to remove files and subdirectories from the directory.&lt;br /&gt;
;Administer (a)&lt;br /&gt;
:allows a user to change the ACL for the directory. Users always have this right on their home directory, even if they accidentally remove themselves from the ACL.&lt;br /&gt;
&lt;br /&gt;
Permissions that affect files and subdirectories include:&lt;br /&gt;
&lt;br /&gt;
;Read (r)&lt;br /&gt;
:allows a user to look at the contents of files in a directory and list files in subdirectories. Files that are to be granted read access to any user, including the owner, need to have the standard UNIX &amp;quot;owner read&amp;quot; permission set.&lt;br /&gt;
;Write (w)&lt;br /&gt;
:allows a user to modify files in a directory. Files that are to be granted write access to any user, including the owner, need to have the standard UNIX &amp;quot;owner write&amp;quot; permission set.&lt;br /&gt;
;Lock (k)&lt;br /&gt;
:allows the processor to run programs that need to &amp;quot;[[File locking|flock]]&amp;quot; files in the directory.&lt;br /&gt;
&lt;br /&gt;
Additionally, AFS includes Application ACLs (A)-(H) which have no effect on access to files.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* [[Global filesystem]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [http://www.openafs.org/ OpenAFS]&lt;br /&gt;
* [http://www.stacken.kth.se/project/arla/ Arla]&lt;br /&gt;
&lt;br /&gt;
== Integration ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Network file systems]]&lt;br /&gt;
[[Category:Carnegie Mellon University]]&lt;br /&gt;
[[Category:Distributed file systems]]&lt;/div&gt;</summary>
		<author><name>Onnowpurbo</name></author>
	</entry>
</feed>