Providing Easier Access to Remote Objects in Client-Server Systems

Total Page:16

File Type:pdf, Size:1020Kb

Providing Easier Access to Remote Objects in Client-Server Systems Providing Easier Access to Remote Objects in Client-Server Systems Jonathan Aldrich, James Dooley, Scott Mandelsohn, and Adam Rifkin California Institute of Technology {jonal, jdooley, scott, adam}@cs.caltech.edu Abstract Many existing systems, including Java's RMI, require a The Java Environment for Distributed Invocation (JEDI) programmer to run interface code through a preprocessor is efficient, dynamic, and easier to use than alternative to create stub and skeleton objects. We have developed an communication systems for distributed Java objects. alternative system for remote method calling, offering the Existing state-of-the-art mechanisms for remote method programmer complete control over communication while calls on Java objects, such as RMI, require users to simplifying the model of distributed computing. Since our perform a complicated series of steps. Furthermore, the system uses Java's serialization capabilities, a programmer compiled static interfaces these systems use limit their can automatically send any object to a remote machine. functionality. This paper presents the design and First, we will discuss and evaluate several existing implementation of JEDI's simpler approach utilizing systems, including RPC, RMI, CORBA and IIOP, dynamic proxies. We discuss a means of integrating DCOM, and Infospheres. These systems motivate the JEDI with a publicly available CORBA ORB, followed by design and implementation of JEDI, a system that allows the tests used to ensure the robustness of the JEDI system. dynamic method invocation (the ability to call any method Comparing this system's performance with that of other of a remote object at run-time without relying on statically communication facilities such as UDP, TCP, and RMI compiled interfaces) and requires fewer development demonstrates the efficiency of JEDI. A calendar- steps than other existing systems. Then we describe how a scheduling application illustrates the flexibility and developer would use JEDI. Next, we discuss several usability tradeoffs of employing JEDI in distributed experiments in client-server computing to determine the client-server applications. flexibility, scaleability, and ease-of-use of the JEDI system. These experiments include studying the integration of JEDI with CORBA, testing the performance 1. Introduction and reliability of JEDI, and using JEDI to develop an application from scratch. We conclude with a short summary of our JEDI findings. Java programs can use the Internet for distributed computations in many different ways [8]. One such technique involves message passing [9] between objects on different machines, as exemplified by Caltech's Infospheres [4], IBM's Aglets [14], and the iBus multicast 2. Existing Systems system [16]. Another technique involves accessing remote objects through a request broker active on a remote Until recently, Java lacked a native client-server machine using CORBA [17] or DCOM [6]. Some systems method invocation paradigm [24], but several communicate with remote objects through a gateway to a supplementary systems are available to provide this Web server using HTTP and CGI [1]. Method calls on functionality. remote objects may be made using Open Network In this section, we explore and compare some of the Computing Remote Procedure Calls [29] or Java's Remote current communication mechanisms in client-server Method Invocation [12]. With each of these techniques, systems: RPC, RMI, CORBA and IIOP, DCOM, and the the programmer must deal with creating extra interfaces Infospheres Infrastructure. (often in a different language) and must do other setup work to handle low-level communication details. 2.1. ONC Remote Procedure Calls This paper explores remote method calling facilities that automatically handle some of the more cumbersome For years, programmers have used ONC's Remote communication and synchronization responsibilities [21]. Procedure Call (RPC) system [29] to automate some of 1 the communication tasks between client programs and meshes well with the top-down design techniques of their servers. Although RPC was one of the first systems procedural programming. However, the RPC system to simplify the development of distributed applications requires that the programmer tediously set up all the over the use of plain socket connections, RPC does not remote methods in the interface description file, run the handle remote procedure calls automatically. The preprocessor, and implement the resulting stub files. programmer must first design the interfaces (step 1 in figure 1) on both the client side and server side so they 2.2. Java's Remote Method Invocation will connect properly when the distributed system is invoked. The Remote Method Invocation (RMI) system furnished by Java 1.1 allows RPC-like access to remote Design objects [12]. RMI includes support for data serialization, Interface remote class loading, and socket manipulation. 1 Design Interface Create .x file Implement 2 Interface RPCGEN 3 Java generates Compiler Server Implement Client Server Implement 4 RMI Object Client Stub Stub Server Compiler Implement Client Server Client Stub generates Skeleton C/C++ C/C++ Compiler Compiler 5 Java Start Compiler 8 RMI Registry Execute 9 Client Server 6 Client Server Object Object Object Object Registration Figure 1. Although the Remote Procedure Call 10 of Remote system somewhat simplified the job of a client-server 7 Execute Objects Client system developer, it still requires running separate interface files through a preprocessor and filling in Figure 2. RMI improves the RPC-like access for the resulting stub files. remote Java objects, but adds several extra tasks for the developer. Next, the user creates a .x file (step 2) that specifies the designed interface. This file is then run through To use RMI, an application developer creates a Java rpcgen (step 3) to construct client and server stubs. The interface for the object to be accessed remotely (step 1 of programmer then fills in the client and server stubs figure 2), and then writes a server class to implement this produced by rpcgen with code that implements the interface (step 2). The Java compiler compiles the server desired behaviors (step 4). This code is then compiled for code (step 3), and the RMI preprocessor rmic uses the execution (step 5). Some consider this system to be more resulting class to create the server skeleton and client-side straightforward than standalone sockets or message stub (step 4). The client may be written and compiled any passing, because the client can invoke operations on the time after the server interface is written (steps 5 and 6). server by using what looks like a local procedure call. Before the client can access a remote object on a server Making network communications into procedure calls (step 7), the RMI registry must be run (step 8), the server 2 object must be created in a Java VM (step 9), and the Client Object server must register itself in the RMI registry (step 10). Instantiation We believe that the extra preprocessing steps introduce Object unnecessary complexity. They add several additional object files to the compilation process, and restrict the Dynamic Server Object methods that can be run on remote objects to those that Client IDL Method Stubs Skeleton Adapter are described in a static interface. If a server object is Invocation updated to include new functionality and a new interface, the client will be unable to use the new interface without Broker Request resorting to Java's somewhat awkward reflection CORBA BUS capabilities. RMI is difficult for developers to use, because it does Figure 3. Through the CORBA bus, client objects not allow client programs to use new functionality in send requests for method invocations to the remote server programs without first recompiling (and ORB, which routes the request through the object adapter and server skeleton to the server object. redistributing) the client programs or using Java's reflection to get around this static limitation of RMI. To create a Java-based client-server application in Another cumbersome aspect of RMI is its requirement that CORBA, the programmer first writes a IDL file defining programmers must use the rmic preprocessor to generate the signatures of the methods that need to be called code for the server skeletons and client stubs. RMI can remotely. The IDL file is then run through a Java use only a few wire protocols (currently TCP/IP and preprocessor which creates an interface for the server HTTP), but some applications would benefit from the use object and a stub class that will forward method calls to of custom transport protocols available through a generic that server object. Then the programmer writes the client message infrastructure. The ACE framework [25][10] and program and an object that implements the server's the iBus project [16] both provide a layered component- interface. The client and server can then be compiled and based Java communication system that allows plug-in run. custom transport protocols to provide different quality of CORBA has support for clients to discover and use service facilities to applications. interfaces dynamically through its Dynamic Invocation ObjectSpace Voyager [18] provides remote method Interface (DII) [17]. When using DII, the client creates its invocation facilities much like RMI's, but makes the method calls at run-time, rather than calling methods in development process much simpler and provides the stub. A CORBA specification for the Dynamic additional features. Developers run an existing class Skeleton Interface (DSI), allows server objects to update through the Voyager preprocessor to create a stub class their interfaces at run-time [17]. Any method invoked with all the methods the original class had. This saves through the DSI is passed through a single upcall method them the work of writing an remote interface file and (written by the programmer) that is responsible for changing their code to implement the interface. Although checking the method name and forwarding it to the correct Voyager allows dynamic method calls, it requires implementation method. developers to specify methods with the unintelligible We looked at two particular ORB implementations.
Recommended publications
  • 802.11N Support in Freebsd (For the Run(4) Driver)
    802.11n support in FreeBSD (for the run(4) driver) 15412 F’19 1 / 15 Motivation ● “Do something with operating systems” – OS Junkie: Ubuntu → Fedora → Arch Linux → Gentoo → FreeBSD ● Do something for the community – So much free (not free as in free beer) software out there for use – Time to give something back! ● Faster WiFi doesn’t hurt – Makes FreeBSD more usable ● Less angry users: “But this works on Lunix!” 2 / 15 FreeBSD ● Open source, UNIX ● Official webpage: freebsd.org ● Large, helpful community – IRC Channels on Freenode (#freebsd) – Forums (forums.freebsd.org) – Mailing lists (lists.freebsd.org) ● Latest Release: FreeBSD 12 (2018) 3 / 15 802.11 ● IEEE 802.11: Standard for WiFi – 802.11b: 2.4GHz, Max rate 11 Mbps, range 150 ft., Year 1999 – 802.11g: 2.4 GHz, Max rate 54 Mbps, range 150 ft., Year 2003 – 802.11n: 2.4GHz or 5 GHz, Max rate 300 Mbps (single antenna), 450 Mbps (MIMO), range 175 ft., Year 2009 4 / 15 Ralink ● Produces WiFi chips – See https://wikidevi.com/wiki/Ralink for list of chips ● Linux driver: rt2800usb (USB Ralink 802.11n devices) ( https://wiki.debian.org/rt2800usb). ● FreeBSD driver: run (see https://www.freebsd.org/cgi/man.cgi?run(4) ) – Caveats : “The run driver does not support any of the 802.11n capabilities offered by the RT2800, RT3000 and RT3900 chipsets.“ 5 / 15 Existing code base ● The run driver supports several chipsets and adapters (such as ASUS USB N-66) but without support for 802.11n – This means reduced speeds – This means it will misbehave when you turn on your microwave ● run(4) also has annoying ‘device timeout’ errors where the card stops responding.
    [Show full text]
  • BSD Comparé À Linux
    BSD comparé à Linux S. Elipot <[email protected]> E. Dreyfus <[email protected]> Avril 2005 S. Elipot, E. Dreyfus BSD comparé à Linux Tux & BSD daemon S. Elipot, E. Dreyfus BSD comparé à Linux Généalogie AT&T Unix BSD System V Linux Darwin/OSX *BSD S. Elipot, E. Dreyfus BSD comparé à Linux 3 sources, 3 définitions Trois sources donc trois types de comportement possibles AT&T (System V) GNU Linux BSD (NetBSD, FreeBSD, OpenBSD, DragonflyBSD, Darwin) Trois définitions possibles d’Unix et Unix-like Généalogique : SystemV et BSD sont des Unix, Linux est un Unix-like Marque Unix (certification de l’OpenGroup) : BSD et Linux sont des Unix-like Familiale : pas de distinction entre Unix et Unix-like S. Elipot, E. Dreyfus BSD comparé à Linux NetBSD Objectif : portabilité et conception soignée Plus de 50 plateformes supportées (PC, Mac, PDA, stations Sun, HP, IBM, SGI, consoles de jeux, systèmes embarqués Drivers indépendants de la plateforme, système de cross-compilation Compatibilité ascendante Système léger et administrateur-friendly plutôt que user-friendly S. Elipot, E. Dreyfus BSD comparé à Linux FreeBSD Concentré sur l’architecture PC Ports sur autres architectures performantes (Alpha, IA64, AMD64, sparc64) Beaucoup de paquetages et de contributeurs de paquetages Très utilisé et apprécié comme serveur Egalement plus administrateur-friendly que user-friendly S. Elipot, E. Dreyfus BSD comparé à Linux OpenBSD Séparation de NetBSD en 1994, suite à des conflits internes Orientation sécurité Outils de cryptographie exportables (obsolètes) Audit du code Bon système de recherche : innovations en sécurité (OpenSSH, systrace. ) Les bonnes idées et les corrections de bugs sont repris par les autres Probablement plus difficile que NetBSD et FreeBSD pour la production (équipe plus réduite, moins de paquetages) S.
    [Show full text]
  • Ebook - Informations About Operating Systems Version: August 15, 2006 | Download
    eBook - Informations about Operating Systems Version: August 15, 2006 | Download: www.operating-system.org AIX Internet: AIX AmigaOS Internet: AmigaOS AtheOS Internet: AtheOS BeIA Internet: BeIA BeOS Internet: BeOS BSDi Internet: BSDi CP/M Internet: CP/M Darwin Internet: Darwin EPOC Internet: EPOC FreeBSD Internet: FreeBSD HP-UX Internet: HP-UX Hurd Internet: Hurd Inferno Internet: Inferno IRIX Internet: IRIX JavaOS Internet: JavaOS LFS Internet: LFS Linspire Internet: Linspire Linux Internet: Linux MacOS Internet: MacOS Minix Internet: Minix MorphOS Internet: MorphOS MS-DOS Internet: MS-DOS MVS Internet: MVS NetBSD Internet: NetBSD NetWare Internet: NetWare Newdeal Internet: Newdeal NEXTSTEP Internet: NEXTSTEP OpenBSD Internet: OpenBSD OS/2 Internet: OS/2 Further operating systems Internet: Further operating systems PalmOS Internet: PalmOS Plan9 Internet: Plan9 QNX Internet: QNX RiscOS Internet: RiscOS Solaris Internet: Solaris SuSE Linux Internet: SuSE Linux Unicos Internet: Unicos Unix Internet: Unix Unixware Internet: Unixware Windows 2000 Internet: Windows 2000 Windows 3.11 Internet: Windows 3.11 Windows 95 Internet: Windows 95 Windows 98 Internet: Windows 98 Windows CE Internet: Windows CE Windows Family Internet: Windows Family Windows ME Internet: Windows ME Seite 1 von 138 eBook - Informations about Operating Systems Version: August 15, 2006 | Download: www.operating-system.org Windows NT 3.1 Internet: Windows NT 3.1 Windows NT 4.0 Internet: Windows NT 4.0 Windows Server 2003 Internet: Windows Server 2003 Windows Vista Internet: Windows Vista Windows XP Internet: Windows XP Apple - Company Internet: Apple - Company AT&T - Company Internet: AT&T - Company Be Inc. - Company Internet: Be Inc. - Company BSD Family Internet: BSD Family Cray Inc.
    [Show full text]
  • Absolute BSD—The Ultimate Guide to Freebsd Table of Contents Absolute BSD—The Ultimate Guide to Freebsd
    Absolute BSD—The Ultimate Guide to FreeBSD Table of Contents Absolute BSD—The Ultimate Guide to FreeBSD............................................................................1 Dedication..........................................................................................................................................3 Foreword............................................................................................................................................4 Introduction........................................................................................................................................5 What Is FreeBSD?...................................................................................................................5 How Did FreeBSD Get Here?..................................................................................................5 The BSD License: BSD Goes Public.......................................................................................6 The Birth of Modern FreeBSD.................................................................................................6 FreeBSD Development............................................................................................................7 Committers.........................................................................................................................7 Contributors........................................................................................................................8 Users..................................................................................................................................8
    [Show full text]
  • The Complete Freebsd
    The Complete FreeBSD® If you find errors in this book, please report them to Greg Lehey <grog@Free- BSD.org> for inclusion in the errata list. The Complete FreeBSD® Fourth Edition Tenth anniversary version, 24 February 2006 Greg Lehey The Complete FreeBSD® by Greg Lehey <[email protected]> Copyright © 1996, 1997, 1999, 2002, 2003, 2006 by Greg Lehey. This book is licensed under the Creative Commons “Attribution-NonCommercial-ShareAlike 2.5” license. The full text is located at http://creativecommons.org/licenses/by-nc-sa/2.5/legalcode. You are free: • to copy, distribute, display, and perform the work • to make derivative works under the following conditions: • Attribution. You must attribute the work in the manner specified by the author or licensor. • Noncommercial. You may not use this work for commercial purposes. This clause is modified from the original by the provision: You may use this book for commercial purposes if you pay me the sum of USD 20 per copy printed (whether sold or not). You must also agree to allow inspection of printing records and other material necessary to confirm the royalty sums. The purpose of this clause is to make it attractive to negotiate sensible royalties before printing. • Share Alike. If you alter, transform, or build upon this work, you may distribute the resulting work only under a license identical to this one. • For any reuse or distribution, you must make clear to others the license terms of this work. • Any of these conditions can be waived if you get permission from the copyright holder. Your fair use and other rights are in no way affected by the above.
    [Show full text]
  • Die Geschichte Der Betriebssysteme
    REGIONALES RECHENZENTRUM ERLANGEN [RRZE] Geschichte der Betriebssysteme: Vom Mainframe zum Smartphone Systemausbildung − Grundlagen und Aspekte von Betriebssystemen und System-nahen Diensten 26. April 2017 Gregor Longariva - RRZE Willkommen RRZE Achtung, Aufnahme! Agenda 2 1. Gen - 1940 - 1955 2. Gen - 1955 - 1965 3. Gen - 1965 - 1980 4. Gen - 1980 - heute analytical engine - 19. Jh Analytical Engine (Nachbau) 3 - Mitte 19. Jh Charles Babbage - erster Digitalrechner (aber mechanisch) - wurde zu seiner Zeit nie realisiert da mechanische Elemente in notwendiger Präzision - Babbage erkannte, dass seine Maschine einer Programmierung bedurfte. analytical engine - 19. Jh 4 - Charles Babbage 1792-1871 Ada Lovelace 1815-1852 - Lovelace übersetzte Babbage Beschreibung Analytical Engine und fügte Kommentare hinzu - Entwurf Berechnung Bernoulli Zahlen auf der analyitcal engine -> erste Programmiererin - Rechenmaschine -> feste Berechnungen, manuelle Eingabe u. Operation, analytical engine -> beliebige Algorithmen, Programme - auf andere Dinge anwenden, nicht nur Zahlen wenn man Objekte findet deren Wechselwirkungen durch abstrakte Operationen dargestellt werden können Erste Generation von Computern 1940-1955 Nachbau der Z3 im Deutschen Museum München 5 - 1941 erster funktionstüchtiger elektrischer Digitalrechner, Zuse Z3, Konrad Zuse Berlin - mechanische Relais - 600 Relais Rechenwerk, 1600 Relais Speicherwerk - Nachfolger Z1 die vollmechanisch war Erste Generation von Computern 1940-1955 6 - es herrschte Krieg - Deutschland hatte die Enigma um
    [Show full text]
  • 01.Covers Copy
    THE MAGAZINE OF USENIX & SAGE June 2002 volume 27 • number 3 inside: USENIX NEWS & The Advanced Computing Systems Association & The System Administrators Guild news USENIX MEMBER BENEFITS the standard to which we now have to As a member of the USENIX Association, And So It Goes perform. you receive the following benefits: In the meantime, the latency between FREE SUBSCRIPTION TO ;login:, the Association’s by Daniel Geer magazine, published seven times a year, invention and exploitation is shrinking – President, USENIX which fundamentally is a good thing in featuring technical articles, system adminis- Board of Directors tration articles, tips and techniques, practical the bigger scheme of things. The human columns on security, Tcl, Perl, Java, and dynamics of scheduling new workshops operating systems, book and software around emerging topics and disciplines reviews, summaries of sessions at USENIX conferences, and reports on various stan- (which is exactly where we can do the dards activities. most good) are such that USENIX pretty ACCESS TO ;login: online from October 1997 much cannot get anything effective done to last month www.usenix.org/ [email protected] in under 9-12 months despite the fact publications/login/login.html. that, just as in business, there is a really ACCESS TO PAPERS from the USENIX Confer- substantial and growing first mover A little like writing your own obituary, ences online starting with 1993 advantage to that professional society this is my last column as President of www.usenix.org/publications/library/ that best calls trends right, that has the index.html. USENIX. We have term limits here and, first meeting on a new topic at exactly THE RIGHT TO VOTE on matters affecting the all in all, that is a good thing.
    [Show full text]
  • Bsdcon 2003 the Premier Conference for the BSD Community
    Announcement and Call for Papers BSDCon 2003 The premier conference for the BSD community September 8-12, 2003, San Mateo Marriott, San Mateo, California http://www.usenix.org/events/bsdcon03/ Important Dates people of all experience levels to learn from BSD experts, profes- Refereed Paper abstracts due: April 1, 2003 sionals with real world experience, and industry leaders. Invited Talk proposals due: April 1, 2003 Technical Sessions, September 10-12, 2003 Notification to authors: May 12, 2003 Two and a half days of technical sessions feature refereed papers Camera-ready final papers due: July 8, 2003 and invited talks by community experts and leaders. Refereed Conference Organizers papers are from the community and can win cash and prizes. Program Chair Papers are published in the Proceedings which are provided to all Gregory Neil Shapiro, Sendmail, Inc. conference attendees. Refereed papers present problems and Program Committee solutions in all areas from kernel internals to real world practical Jason Evans, Apple Computer, Inc. experience. Sam Leffler, Errno Consulting BSDCon seeks refereed papers on topics related to BSD- Michael Lucas, FreeBSD Documentation Project derived systems and the Open Source world. Topics of interest Kostas Magoutis, Harvard University include but are not limited to: Todd C. Miller, OpenBSD I Embedded BSD application development and Donn M. Seeley, Wind River Systems deployment Bill Squier, NetBSD I Real world experiences using BSD systems Gregory Sutter, Daemon News I Using BSD in a mixed OS environment Robert Watson, NAI Labs, FreeBSD Project I Comparison with non-BSD operating systems; Christos Zoulas, NetBSD technical, practical, licensing (GPL vs.
    [Show full text]
  • BSDCAN 2005 WHERE SCHEDULE OVERVIEW Ottawa, Canada Thursday 12 May 2005 the BSD EVENT of 2005 WHEN 4:00 Pm Sign-In Desk Opens at a Local Pub
    BSDCAN 2005 WHERE SCHEDULE OVERVIEW Ottawa, Canada Thursday 12 May 2005 THE BSD EVENT OF 2005 WHEN 4:00 pm Sign-in desk opens at a local http://www.bsdcan.org/ pub. Get your registration May 13-14, 2005 pack and have a drink. WHO 8:00 pm Sign-in desk closes. Ottawa, Canada Developers, contributors, and users Friday 13 May 2005 VENUE 10:00 am First set of talks University of Ottawa 11:00 am break http://www.uottawa.ca/ 11:30 am Second set of talks AT FEES YOU CAN AFFORD 12:30 pm lunch We plan to keep costs to a minimum. As such, the conference will be held at 2:00 pm Third set of talks University of Ottawa and accommodation 3:00 pm break is available within the University residences. Hotels are also within close 3:30 pm Fourth set of talks walking distance of the conference venue. 4:30 pm Key Signing Party These are the 2005 rates: Saturday 14 May 2005 Type CAD 10:00 am First set of talks Regular $195 11:00 am break Corporate $350 11:30 am Second set of talks Additional Corporate $120 12:30 pm lunch Student $50 Tutorial $55-85 2:00 pm Third set of talks BSDCan 2005– The event to be at this year 3:00 pm break Tutorials will be on 11 and 12 May 2005. 3:30 pm Fourth Set of Talks 4:30 pm Proceedings end for the day BSDCAN 2005 Accommodation is also available on Sunday 15 May 2005 campus at very reasonable rates.
    [Show full text]
  • Freebsd Documentation Release 10.1
    FreeBSD Documentation Release 10.1 Claudia Mane July 12, 2015 Contents 1 &title; 3 1.1 What is FreeBSD?............................................3 1.2 Cutting edge features...........................................3 1.3 Powerful Internet solutions........................................3 1.4 Advanced Embedded Platform......................................3 1.5 Run a huge number of applications...................................3 1.6 Easy to install..............................................4 1.7 FreeBSD is free .............................................4 1.8 Contributing to FreeBSD.........................................4 2 &title; 5 2.1 Introduction...............................................5 3 &title; 15 3.1 Experience the possibilities with FreeBSD............................... 15 3.2 FreeBSD is a true open system with full source code........................... 15 3.3 FreeBSD runs thousands of applications................................. 15 3.4 FreeBSD is an operating system that will grow with your needs..................... 16 3.5 What experts have to say . ........................................ 16 4 &title; 17 4.1 BSD Daemon............................................... 17 4.2 “Powered by FreeBSD” Logos...................................... 19 4.3 Old Advertisement Banners....................................... 19 4.4 Graphics Use............................................... 19 4.5 Trademarks................................................ 20 5 &title; 21 6 &title; 23 6.1 Subversion...............................................
    [Show full text]
  • Ebook - Informations About Operating Systems Version: September 3, 2016 | Download
    eBook - Informations about Operating Systems Version: September 3, 2016 | Download: www.operating-system.org AIX Operating System (Unix) Internet: AIX Operating System (Unix) AmigaOS Operating System Internet: AmigaOS Operating System Android operating system Internet: Android operating system Aperios Operating System Internet: Aperios Operating System AtheOS Operating System Internet: AtheOS Operating System BeIA Operating System Internet: BeIA Operating System BeOS Operating System Internet: BeOS Operating System BSD/OS Operating System Internet: BSD/OS Operating System CP/M, DR-DOS Operating System Internet: CP/M, DR-DOS Operating System Darwin Operating System Internet: Darwin Operating System Debian Linux Operating System Internet: Debian Linux Operating System eComStation Operating System Internet: eComStation Operating System Symbian (EPOC) Operating System Internet: Symbian (EPOC) Operating System FreeBSD Operating System (BSD) Internet: FreeBSD Operating System (BSD) Gentoo Linux Operating System Internet: Gentoo Linux Operating System Haiku Operating System Internet: Haiku Operating System HP-UX Operating System (Unix) Internet: HP-UX Operating System (Unix) GNU/Hurd Operating System Internet: GNU/Hurd Operating System Inferno Operating System Internet: Inferno Operating System IRIX Operating System (Unix) Internet: IRIX Operating System (Unix) JavaOS Operating System Internet: JavaOS Operating System LFS Operating System (Linux) Internet: LFS Operating System (Linux) Linspire Operating System (Linux) Internet: Linspire Operating
    [Show full text]
  • Historie (A Současnost) Open Source Kdy, Kde, Proč a Jak Václav Pavlín
    Historie (a současnost) Open Source Kdy, kde, proč a jak Václav Pavlín Architect - Senior Software Engineer Red Hat Czech s.r.o. Obecná škola První komerční počítače a komunity 1950-1970, sálové počítače, sw&hw dodávány společně, otevřené (důvěra, potřeba spolupráce), SHARE, USENIX... IBM 704 Mainframe DARPA Výzkumný institut ministerstva obrany USA, ARPAnet, financování vývoje OS, CTSS, IMP Military robotics RIMPAC 2014 Multics & Unics(x) AT&T, Bell Labs, Ritchie & Thompson & Canaday, UNIX Programmer’s Manual Dennis Ritchie & Ken Thompson Unix ..ve filmu.. Jurassic Park BSD Berkeley Software Distribution, Bill Joy, Pascal, {Free,Net,Open}BSD BSD Daemon Šíření informací UUCP, USENET, Netnews (1979), archie, UUNET, WWW First Web Server (NeXTCube) Free Software Richard Stallman, GNU, GPL, Cygnus GNU Mascot (GNU/)Linux Linus Torvalds, Freax, jádro, distribuce Tux Open Source Initiative The Cathedral and the Bazaar Open Source Initiative Open Source Projekty GNOME, LibreOffice, GIMP, git, Firefox, Chromium, VLC, WordPress, Android... Open Source Technology Copyleft vs. Permissive GPL, Apache License Copyleft Symbol Red Hat RHEL, OpenStack, OpenShift, CloudForms, Sattelite, JBoss... Red Hat Shadowman Red Hat Czech Druhá největší pobočka na světě Red Hat Czech Building Podporované akce DevConf, OpenAlt, meetups, QE Camp, PyCon CZ, Fedora Relase Party... DevConf.cz Proč se zapojit do Open Source Zkušenosti, kontakty, sláva;) DevConf.cz Jak se zapojit Fedora, Developer Portal, Github Fedora Developer Portal Zkuste soutěžit RedBot, Winter of Code 2016 Winter of Code Václav Pavlín Twitter: @vpavlin Email: [email protected] Open Source: Kdy, kde, proč a jak, jehož autorem je Václav Pavlín, podléhá licenci Creative Commons Uveďte původ-Zachovejte licenci 4.0 M Smile and Wave ezinárodní .
    [Show full text]