Academic literature on the topic 'Distributed operating systems'

Create a spot-on reference in APA, MLA, Chicago, Harvard, and other styles

Select a source type:

Consult the lists of relevant articles, books, theses, conference reports, and other scholarly sources on the topic 'Distributed operating systems.'

Next to every source in the list of references, there is an 'Add to bibliography' button. Press on it, and we will generate automatically the bibliographic reference to the chosen work in the citation style you need: APA, MLA, Harvard, Chicago, Vancouver, etc.

You can also download the full text of the academic publication as pdf and read online its abstract whenever available in the metadata.

Journal articles on the topic "Distributed operating systems"

1

Mullender, Sape J. "Distributed operating systems." ACM Computing Surveys 28, no. 1 (March 1996): 225–27. http://dx.doi.org/10.1145/234313.234407.

Full text
APA, Harvard, Vancouver, ISO, and other styles
2

Tanenbaum, Andrew S., and Robbert Van Renesse. "Distributed operating systems." ACM Computing Surveys 17, no. 4 (December 10, 1985): 419–70. http://dx.doi.org/10.1145/6041.6074.

Full text
APA, Harvard, Vancouver, ISO, and other styles
3

Mullender, Sape J. "Distributed operating systems." Computer Standards & Interfaces 6, no. 1 (January 1987): 37–44. http://dx.doi.org/10.1016/0920-5489(87)90043-2.

Full text
APA, Harvard, Vancouver, ISO, and other styles
4

Chandras, Rajan G. "Distributed message passing operating systems." ACM SIGOPS Operating Systems Review 24, no. 1 (January 3, 1990): 7–17. http://dx.doi.org/10.1145/90994.90999.

Full text
APA, Harvard, Vancouver, ISO, and other styles
5

Stojcev, M. "Distributed Operating Systems: Concepts and Practice." Microelectronics Journal 31, no. 5 (May 2000): 374–75. http://dx.doi.org/10.1016/s0026-2692(99)00156-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
6

Moller, R. "Distributed Operating Systems: Concepts And Design." IEEE Concurrency 6, no. 2 (April 1998): 93–94. http://dx.doi.org/10.1109/mcc.1998.678836.

Full text
APA, Harvard, Vancouver, ISO, and other styles
7

Wiseman, Yair. "Advanced non-distributed operating systems course." ACM SIGCSE Bulletin 37, no. 2 (June 2005): 65–69. http://dx.doi.org/10.1145/1083431.1083466.

Full text
APA, Harvard, Vancouver, ISO, and other styles
8

Frieder, O., A. Litman, and M. E. Segal. "DUNIX: Distributed operating systems education via experimentation." Microprocessing and Microprogramming 27, no. 1-5 (August 1989): 811–18. http://dx.doi.org/10.1016/0165-6074(89)90155-5.

Full text
APA, Harvard, Vancouver, ISO, and other styles
9

Hackel, R., and M. Nagy. "Supervisory Tasks on Operating Distributed Computing Systems." IFAC Proceedings Volumes 23, no. 8 (August 1990): 117–21. http://dx.doi.org/10.1016/s1474-6670(17)51809-1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
10

Ceballos, Henry Zárate, and Jorge Eduardo Ortiz Triviño. "S.O.V.O.R.A.: A Distributed Wireless Operating System." Information 11, no. 12 (December 14, 2020): 581. http://dx.doi.org/10.3390/info11120581.

Full text
Abstract:
Due to the growth of users and linked devices in networks, there is an emerging need for dynamic solutions to control and manage computing and network resources. This document proposes a Distributed Wireless Operative System on a Mobile Ad-hoc Network (MANET) to manage and control computing resources in relation to several virtual resources linked in a wireless network. This prototype has two elements: a local agent that works on each physical node to manage the computing resources (e.g., virtual resources and distributed applications) and an orchestrator agent that monitors, manages, and deploys policies on each physical node. These elements arrange the local and global computing resources to provide a quality service to the users of the Ad-hoc cluster. The proposed S.O.V.O.R.A. model (Operating Virtualized System oriented to Ad-hoc networks) defines primitives, commands, virtual structures, and modules to operate as a distributed wireless operating system.
APA, Harvard, Vancouver, ISO, and other styles

Dissertations / Theses on the topic "Distributed operating systems"

1

Roth, Christopher. "A distributed password scheme for network operating systems." Thesis, Monterey, Calif. : Springfield, Va. : Naval Postgraduate School ; Available from National Technical Information Service, 2002. http://library.nps.navy.mil/uhtbin/hyperion-image/02Jun%5FRoth.pdf.

Full text
APA, Harvard, Vancouver, ISO, and other styles
2

Gunaseelan, L. "Debugging of Distributed object systems." Diss., Georgia Institute of Technology, 1994. http://hdl.handle.net/1853/9219.

Full text
APA, Harvard, Vancouver, ISO, and other styles
3

Spafford, Eugene Howard. "Kernel structures for a distributed operating system." Diss., Georgia Institute of Technology, 1986. http://hdl.handle.net/1853/9144.

Full text
APA, Harvard, Vancouver, ISO, and other styles
4

Wentzlaff, David 1979. "dPool : a distributed data structure for factored operating systems." Thesis, Massachusetts Institute of Technology, 2012. http://hdl.handle.net/1721.1/71494.

Full text
Abstract:
Thesis (Ph. D.)--Massachusetts Institute of Technology, Dept. of Electrical Engineering and Computer Science, 2012.
Cataloged from PDF version of thesis.
Includes bibliographical references (p. 151-158).
Future computer architectures will likely exhibit increased parallelism through the addition of more processor cores. Architectural trends such as exponentially increasing parallelism and the possible lack of scalable shared memory motivate the reevaluation of operating system design. This thesis work takes place in the context of Factored Operating Systems which leverage distributed system ideas to increase the scalability of multicore processor operating systems. fos, a Factored Operating System, explores a new design point for operating systems where traditional low-level operating system services are fine-grain parallelized while internally only using explicit message passing for communication. fos factors an operating system first by system service and then further parallelizes inside of the system service by splitting the service into a fleet of server processes which communicate via messaging. Constructing parallel low-level operating system services which only internally use messaging is challenging because shared resources must be partitioned across servers and the services must provide scalable performance when met with uneven demand. To ease the construction of parallel fos system services, this thesis develops the dPool distributed data structure. The dPool data structure provides concurrent access to an unordered collection of elements by server processes within a fos fleet. Internal to a single dPool instance, all communication between different portions of a dPool is done via messaging. This thesis uses the dPool data structure within the parallel fos Physical Memory Allocation fleet and demonstrates that it is possible to use a dPool to manage shared state in a factored operating system's physical page allocator. This thesis begins by presenting the design of the prototype fos operating system. In the context of fos system service fleets, this thesis describes the dPool data structure, its design, different implementations, and interfaces. The dPool data structure is shown to achieve scalability across even and uneven micro-benchmark workloads. This thesis shows that common parallel and distributed programming techniques apply to the creation of dPool and that background threads within a dPool can increase performance. Finally, this thesis evaluates different dPool implementations and demonstrates that intelligently pushing elements between dPool parts can increase scalability.
by David Wentzlaff.
Ph.D.
APA, Harvard, Vancouver, ISO, and other styles
5

Turnbull, Martin John. "A design for a large scale distributed operating system." Thesis, University of Hertfordshire, 1988. http://ethos.bl.uk/OrderDetails.do?uin=uk.bl.ethos.329070.

Full text
APA, Harvard, Vancouver, ISO, and other styles
6

Purdin, Titus Douglas Mahlon. "ENHANCING FILE AVAILABILITY IN DISTRIBUTED SYSTEMS (THE SAGUARO FILE SYSTEM)." Diss., The University of Arizona, 1987. http://hdl.handle.net/10150/184161.

Full text
Abstract:
This dissertation describes the design and implementation of the file system component of the Saguaro operating system for computers connected by a local-area network. Systems constructed on such an architecture have the potential advantage of increased file availability due to their inherent redundancy. In Saguaro, this advantage is made available through two mechanisms that support semi-automatic file replication and access: reproduction sets and metafiles. A reproduction set is a collection of files that the system attempts to keep identical on a "best effort" basis, relying on the user to handle unusual situations that may arise. A metafile is a special file that contains symbolic path names of other files; when a metafile is opened, the system selects an available constituent file and opens it instead. These mechanisms are especially appropriate for situations that do not require guaranteed consistency or a large number of copies. Other interesting aspects of the Saguaro file system design are also described. The logical file system forms a single tree, yet any file can be placed in any of the physical file systems. This organization allows the creation of a logical association among files that is quite different from their physical association. In addition, the broken path algorithm is described. This algorithm makes it possible to bypass elements in a path name that are on inaccessible physical file systems. Thus, any accessible file can be made available, regardless of the availability of directories in its path. Details are provided on the implementation of the Saguaro file system. The servers of which the system is composed are described individually and a comprehensive operational example is supplied to illustrate their interation. The underlying data structures of the file system are presented. The virtual roots, which contain information used by the broken path algorithm, are the most novel of these. Finally, an implementation of reproduction sets and metafiles for interconnected networks running Berkeley UNIX is described. This implementation demonstrates the broad applicability of these mechanisms. It also provides insight into the way in which mechanisms to facilitate user controlled replication of files can be inexpensively added to existing file systems. Performance measurements for this implementation are also presented.
APA, Harvard, Vancouver, ISO, and other styles
7

Stroud, Robert James. "Naming issues in the design of transparently distributed operating systems." Thesis, University of Newcastle Upon Tyne, 1987. http://hdl.handle.net/10443/1997.

Full text
Abstract:
Naming is of fundamental importance in the design of transparently distributed operating systems. A transparently distributed operating system should be functionally equivalent to the systems of which it is composed. In particular, the names of remote objects should be indistinguishable from the names oflocal objects. In this thesis we explore the implication that this recursive notion of transparency has for the naming mechanisms provided by an operating system. In particular, we show that a recursive naming system is more readily extensible than a flat naming system by demonstrating that it is in precisely those areas in which a system is not recursive that transparency is hardest to achieve. However, this is not so much a problem of distribution so much as a problem of scale. A system which does not scale well internally will not extend well to a distributed system. Building a distributed system out of existing systems involves joining the name spaces of the individual systems together. When combining name spaces it is important to preserve the identity of individual objects. Although unique identifiers may be used to distinguish objects within a single name space, we argue that it is difficult if not impossible in practice to guarantee the uniqueness of such identifiers between name spaces. Instead, we explore the possibility of Using hierarchical identifiers, unique only within a localised context. However, We show that such identifiers cannot be used in an arbitrary naming graph without compromising the notion of identity and hence violating the semantics of the underlying system. The only alternative is to sacrifice a deterministic notion of identity by using random identifiers to approximate global uniqueness with a know probability of failure (which can be made arbitrarily small if the overall size of the system is known in advance).
APA, Harvard, Vancouver, ISO, and other styles
8

Wilkinson, Timothy James. "Implementing fault tolerance in a 64-bit distributed operating system." Thesis, City University London, 1993. http://ethos.bl.uk/OrderDetails.do?uin=uk.bl.ethos.356977.

Full text
APA, Harvard, Vancouver, ISO, and other styles
9

Murray, Kevin. "Wisdom : the foundation of a scalable parallel operating system." Thesis, University of York, 1990. http://ethos.bl.uk/OrderDetails.do?uin=uk.bl.ethos.252628.

Full text
APA, Harvard, Vancouver, ISO, and other styles
10

Khalidi, M. Yousef Amin. "Hardware support for distributed object-based systems." Diss., Georgia Institute of Technology, 1989. http://hdl.handle.net/1853/8192.

Full text
APA, Harvard, Vancouver, ISO, and other styles

Books on the topic "Distributed operating systems"

1

Tanenbaum, Andrew S. Distributed operating systems. Englewood Cliffs, N.J: Prentice Hall, 1995.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
2

Paker, Yakup, Jean-Pierre Banatre, and Müslim Bozyiğit, eds. Distributed Operating Systems. Berlin, Heidelberg: Springer Berlin Heidelberg, 1987. http://dx.doi.org/10.1007/978-3-642-46604-5.

Full text
APA, Harvard, Vancouver, ISO, and other styles
3

Tanenbaum, Andrew S. Distributed operating systems. Upper Saddle River: Prentice-Hall International, 1995.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
4

Chow, Randy. Distributed operating systems & algorithms. Reading, Mass: Addison Wesley, 1996.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
5

Chow, Randy. Distributed operating systems & algorithms. Reading, Mass: Addison-Wesley, 1997.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
6

Schröder-Preikschat, Wolfgang, and Wolfgang Zimmer, eds. Progress in Distributed Operating Systems and Distributed Systems Management. Berlin, Heidelberg: Springer Berlin Heidelberg, 1990. http://dx.doi.org/10.1007/3-540-52609-9.

Full text
APA, Harvard, Vancouver, ISO, and other styles
7

Nutt, Gary J. Centralized and distributed operating systems. Englewood Cliffs, N.J: Prentice Hall, 1992.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
8

Design of distributed operating systems. New York, NY: Intertext Publications, 1986.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
9

Centralized and distributed operating systems. Englewood Cliffs, N.J: Prentice Hall, 1992.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
10

Gościński, Andrzej. Distributed operating systems: The logical design. Sydney: Addison-Wesley Pub. Co., 1991.

Find full text
APA, Harvard, Vancouver, ISO, and other styles

Book chapters on the topic "Distributed operating systems"

1

English, John. "Distributed Systems." In Introduction to Operating Systems, 332–65. London: Macmillan Education UK, 2005. http://dx.doi.org/10.1007/978-0-230-37408-9_11.

Full text
APA, Harvard, Vancouver, ISO, and other styles
2

Lamport, Leslie. "A Formal Basis for the Specification of Concurrent Systems." In Distributed Operating Systems, 3–46. Berlin, Heidelberg: Springer Berlin Heidelberg, 1987. http://dx.doi.org/10.1007/978-3-642-46604-5_1.

Full text
APA, Harvard, Vancouver, ISO, and other styles
3

Rozier, Marc, and José Legatheaux Martins. "The CHORUS Distributed Operating System: Some Design Issues." In Distributed Operating Systems, 261–87. Berlin, Heidelberg: Springer Berlin Heidelberg, 1987. http://dx.doi.org/10.1007/978-3-642-46604-5_10.

Full text
APA, Harvard, Vancouver, ISO, and other styles
4

Magee, Jeff, Jeff Kramer, and Morris Sloman. "The Conic Support Environment for Distributed Systems." In Distributed Operating Systems, 289–310. Berlin, Heidelberg: Springer Berlin Heidelberg, 1987. http://dx.doi.org/10.1007/978-3-642-46604-5_11.

Full text
APA, Harvard, Vancouver, ISO, and other styles
5

Banatre, Michel. "An Experience in Solving a Transaction Ordering Problem in a Distributed System." In Distributed Operating Systems, 311–30. Berlin, Heidelberg: Springer Berlin Heidelberg, 1987. http://dx.doi.org/10.1007/978-3-642-46604-5_12.

Full text
APA, Harvard, Vancouver, ISO, and other styles
6

Spector, Alfred Z. "Distributed Transaction Processing and The Camelot System." In Distributed Operating Systems, 331–53. Berlin, Heidelberg: Springer Berlin Heidelberg, 1987. http://dx.doi.org/10.1007/978-3-642-46604-5_13.

Full text
APA, Harvard, Vancouver, ISO, and other styles
7

Kindberg, T., A. V. Sahiner, and Y. Paker. "Worm Programs." In Distributed Operating Systems, 355–79. Berlin, Heidelberg: Springer Berlin Heidelberg, 1987. http://dx.doi.org/10.1007/978-3-642-46604-5_14.

Full text
APA, Harvard, Vancouver, ISO, and other styles
8

Roucairol, G. "On the Construction of Distributed Programs." In Distributed Operating Systems, 47–65. Berlin, Heidelberg: Springer Berlin Heidelberg, 1987. http://dx.doi.org/10.1007/978-3-642-46604-5_2.

Full text
APA, Harvard, Vancouver, ISO, and other styles
9

Verjus, J. P. "Derivation of Distributed Algorithms." In Distributed Operating Systems, 67–109. Berlin, Heidelberg: Springer Berlin Heidelberg, 1987. http://dx.doi.org/10.1007/978-3-642-46604-5_3.

Full text
APA, Harvard, Vancouver, ISO, and other styles
10

Baiardi, Fabrizio, and Marco Vanneschi. "Design of Highly Decentralized Operating Systems." In Distributed Operating Systems, 113–45. Berlin, Heidelberg: Springer Berlin Heidelberg, 1987. http://dx.doi.org/10.1007/978-3-642-46604-5_4.

Full text
APA, Harvard, Vancouver, ISO, and other styles

Conference papers on the topic "Distributed operating systems"

1

Kreissig, Gerald. "Distributed homogeneous operating systems." In the 1st workshop. New York, New York, USA: ACM Press, 1985. http://dx.doi.org/10.1145/503828.503829.

Full text
APA, Harvard, Vancouver, ISO, and other styles
2

Qingbo Yuan, Jianbo Zhao, Mingyu Chen, and Ninghui Sun. "GenerOS: An asymmetric operating system kernel for multi-core systems." In Distributed Processing (IPDPS). IEEE, 2010. http://dx.doi.org/10.1109/ipdps.2010.5470363.

Full text
APA, Harvard, Vancouver, ISO, and other styles
3

van Renesse, Robbert, Andrew S. Tanenbaum, and Gregory J. Sharp. "Functional specialization in distributed operating systems." In the 3rd workshop. New York, New York, USA: ACM Press, 1988. http://dx.doi.org/10.1145/504092.504120.

Full text
APA, Harvard, Vancouver, ISO, and other styles
4

Maruyama, Katsumi, Kazuya Kodama, Soichiro Hidaka, and Hiromichi Hashizume. "Extensible distributed operating system for reliable control systems." In the 10th workshop. New York, New York, USA: ACM Press, 2002. http://dx.doi.org/10.1145/1133373.1133412.

Full text
APA, Harvard, Vancouver, ISO, and other styles
5

Aguilera, Marcos. "Session details: Distributed systems." In SOSP '15: ACM SIGOPS 25th Symposium on Operating Systems Principles. New York, NY, USA: ACM, 2015. http://dx.doi.org/10.1145/3257812.

Full text
APA, Harvard, Vancouver, ISO, and other styles
6

Bronson, Nathan, Abutalib Aghayev, Aleksey Charapko, and Timothy Zhu. "Metastable failures in distributed systems." In HotOS '21: Workshop on Hot Topics in Operating Systems. New York, NY, USA: ACM, 2021. http://dx.doi.org/10.1145/3458336.3465286.

Full text
APA, Harvard, Vancouver, ISO, and other styles
7

Livesey, Mike, and Colin Allison. "Operating system level support for coherence in distributed systems." In the 5th workshop. New York, New York, USA: ACM Press, 1992. http://dx.doi.org/10.1145/506378.506380.

Full text
APA, Harvard, Vancouver, ISO, and other styles
8

Wood, Mark D. "Rule-based management of distributed operating systems." In the 5th workshop. New York, New York, USA: ACM Press, 1992. http://dx.doi.org/10.1145/506378.506429.

Full text
APA, Harvard, Vancouver, ISO, and other styles
9

Haberl, Wolfgang, Stefan Kugele, and Uwe Baumgarten. "Reliable operating modes for distributed embedded systems." In 2009 ICSE Workshop on Model-Based Methodologies for Pervasive and Embedded Software (MOMPES). IEEE, 2009. http://dx.doi.org/10.1109/mompes.2009.5069133.

Full text
APA, Harvard, Vancouver, ISO, and other styles
10

Shuey, Richard L. "Panel on: “Distributed operating” systems and distributed databases." In 1984 IEEE First International Conference on Data Engineering. IEEE, 1987. http://dx.doi.org/10.1109/icde.1987.7272352.

Full text
APA, Harvard, Vancouver, ISO, and other styles

Reports on the topic "Distributed operating systems"

1

Lawrence, Thomas F. Distributed Operating Systems Interoperability Research Project. Fort Belvoir, VA: Defense Technical Information Center, May 1990. http://dx.doi.org/10.21236/ada223669.

Full text
APA, Harvard, Vancouver, ISO, and other styles
2

Nehmer, Juergen. A Structuring Framework for Distributed Operating Systems. Fort Belvoir, VA: Defense Technical Information Center, July 1988. http://dx.doi.org/10.21236/ada199093.

Full text
APA, Harvard, Vancouver, ISO, and other styles
3

Wittie, Larry D. Portable Operating Systems for Network Computers: Distributed Operating Systems Support for Group Communications. Fort Belvoir, VA: Defense Technical Information Center, October 1985. http://dx.doi.org/10.21236/ada170113.

Full text
APA, Harvard, Vancouver, ISO, and other styles
4

Tripathi, Anand. Instrumentation Request for Research in Fault-Tolerant Distributed Operating Systems and Distributed Programming Environments. Fort Belvoir, VA: Defense Technical Information Center, January 1987. http://dx.doi.org/10.21236/ada191814.

Full text
APA, Harvard, Vancouver, ISO, and other styles
5

Andrews, Gregory R., and Richard D. Schlichting. The Saguaro Distributed Operating System. Fort Belvoir, VA: Defense Technical Information Center, May 1989. http://dx.doi.org/10.21236/ada215083.

Full text
APA, Harvard, Vancouver, ISO, and other styles
6

Vinter, Stephen T., Thomas A. Casey, and Kathleen A. Huber. The Secure Distributed Operating System Design Project. Fort Belvoir, VA: Defense Technical Information Center, June 1988. http://dx.doi.org/10.21236/ada204402.

Full text
APA, Harvard, Vancouver, ISO, and other styles
7

Barak, Amnon. Reliability of a Multicomputer Distributed Operating System. Fort Belvoir, VA: Defense Technical Information Center, August 1988. http://dx.doi.org/10.21236/ada201906.

Full text
APA, Harvard, Vancouver, ISO, and other styles
8

Schantz, Richard E., Robert H. Thomas, K. Schroder, M. Barrow, and G. Bono. Cronus, a Distributed Operating System: Revised System/Subsystem Specification. Fort Belvoir, VA: Defense Technical Information Center, April 1986. http://dx.doi.org/10.21236/ada199351.

Full text
APA, Harvard, Vancouver, ISO, and other styles
9

Gadbois, Manchi J. Distributed Operating System Experiment (DOSE) Application Installation Manual. Fort Belvoir, VA: Defense Technical Information Center, February 1990. http://dx.doi.org/10.21236/ada222799.

Full text
APA, Harvard, Vancouver, ISO, and other styles
10

Schantz, Richard E., and Robert H. Thomas. CRONUS, A Distributed Operating System: Functional Definition and System Concept. Fort Belvoir, VA: Defense Technical Information Center, April 1988. http://dx.doi.org/10.21236/ada279964.

Full text
APA, Harvard, Vancouver, ISO, and other styles
We offer discounts on all premium plans for authors whose works are included in thematic literature selections. Contact us to get a unique promo code!

To the bibliography