Unit 1 Operating System

Total Page:16

File Type:pdf, Size:1020Kb

Unit 1 Operating System Unit 1 Operating System Microsoft isn’t evil; they just make really crappy operating system. — Linus Torvalds, the creator of Linux Every operating system out there is about equal…We all suck. — Brian Valentine, Microsoft senior vice president, describing the state of the art in OS security, 2003 Advanced English Reading and Writing 2 高级 英语 读写教程 2 OPERATING SYSTEM is an integral part of virtually every computer system. It fundamentally affects how you can use your computer. Can you run two programs at the same time? Can you connect your computer to a network? Does your computer run dependably? Does all your software have a similar look and feel, or Preview do you have to learn a different set of controls and commands for each new program you acquire? To answer questions like these, it is helpful to have a clear idea about what an operating system is and what it does. Section A Pre-reading Activities 1. Choose the proper word from the box below to describe each picture. A. Microsoft Windows B. Chrome OS C. Linux D. DOS E. OpenSolaris F. Mac OS G. UNIX 1)( ) 2)( ) 3)( ) 4)( ) 2 Unit 1 Operating System 2. What is in common among the pictures above? 3. Do you know what an operating system is, according to what you have learned? 4. What does an operating system do? Text A Operating System Activities 1. What is an operating system? An operating system (abbreviated OS) is a type of system software that acts as the master controller1 for all activities that take place within a computer system. It is one of the factors that determine your computer’s compatibility and platform. Most personal computers are sold with a preinstalled operating system, such as Microsoft Windows or Mac OS. A third operating system called Linux is typically used for high-end workstations and servers, but can also be installed on personal computers. A variety of other operating systems, such as Google Chrome OS2, DOS, UNIX3, and OpenSolaris4 are also available. 2. Is the Windows operating system the same as Windows software? No. Although it is true that an operating system is software, terms such as “Windows software”, “Mac software”, or “Linux software” are used to refer to application software5. Windows software, for example, refers to applications designed to run on computers that have Microsoft Windows installed as the operating system. A program called Microsoft Word for Windows is an example of Windows software; it is a word processing program designed to run under the Windows operating system. Mac software is designed to run under Mac OS, and Linux software is designed to run under the Linux operating system. 3. What does an operating system do? The most obvious responsibility of your computer’s operating system is to provide an environment for running software and controlling peripheral devices6. 4. Your computer’s operating system, application software, and device drivers7 are organized similar to the chain of command in an army. You issue a command using application software. Application software tells the operating system what to do. The operating system tells the device drivers, the device drivers tell the hardware, and the hardware actually does the work. For example, a command to print a document is relayed through various levels of software, including the operating system, until it reaches the printer. The following picture illustrates this chain of command for printing a document or photo. 3 Advanced English Reading and Writing 2 高级 英语 读写教程 2 2. The word processing application signals the operating system that a document must be sent Printer Driver to the printer. 4. The device driver controls the printer as it prints the document. 1. You issue the Print command while using 3. The operating system application software, communicates the such as a word processor. document data to the device driver for the printer. 5. The operating system interacts with application software, device drivers, and hardware to manage a computer’s resources. In the context of a computer system, the term “resource” refers to any component that is required to perform work. For example, the processor is a computer’s main resource. RAM8 (Random Access Memory), storage space, and peripherals are also resources. While you interact with application software, your computer’s operating system is busy behind the scenes with resource management tasks9 such as: keep track of storage resources, ensure that input and output proceed in an orderly manner and establish basic elements of the user interface such as the appearance of the desktop, menu, and toolbars. 6. How do operating systems manage processor resources? Every cycle of a computer’s microprocessor is a resource for accomplishing tasks. Many activities—called processes—compete for the attention of your computer’s microprocessor. Commands are arriving from programs you’re using, while input is arriving from the keyboard and mouse. At the same time, data must be sent to the display device or printer, and web pages are arriving from your Internet connection. 7. To manage all these competing processes, your computer’s operating system must ensure that each process receives its share of microprocessor cycles10. When using Windows, you can open the Task Manager11 to see a list of processes that are being executed by the microprocessor. 4 Unit 1 Operating System 8. The Windows operating system displays a list of processes when you hold down the Ctrl, Alt, and Del keys. Most processes are legitimate programs that run in the background to carry out tasks for the operating system, device drivers, and applications. Occasionally a bot or worm will launch rogue processes. If you want to know if a process is legitimate, you can google it. 9. How do operating systems handle so many processes? During a typical computing session12, your computer might run an average of 50 processes. Ideally, the operating system should be able to help the microprocessor switch seamlessly from one process to another. Depending on the capabilities of the operating system and computer hardware, processes can be managed by multitasking13, multithreading14, and multiprocessing15. 10. Multitasking provides process and memory management services that allow two or more tasks, jobs, or programs to run simultaneously. Most of today’s operating systems, including the OS on your personal computer, offer multitasking services. 11. Within a single program, multithreading allows multiple parts, or threads, to run simultaneously. For example, one thread for a spreadsheet program might be waiting for input from the user while other threads perform a long calculation in the background. Multithreading can speed up performance on single or multiple processor computers. 12. Many new computers include multi-core processors16 or multiple processors. An operating system’s multiprocessing capability supports a division of labor among all the processing units17. 13. How does an operating system manage memory? A microprocessor works with data and executes instructions stored in RAM—one of your computer’s most important resources. When you want to run more than one program at a time, the operating system has to allocate specific areas of memory for each program. 14. Sometimes an application requests memory, but never releases it—a condition called a memory leak18. Memory leaks away into this application’s reserved area, eventually preventing other programs from accessing enough memory to function properly. Those programs can crash, and the operating system might display error messages, such as “General Protection Fault” or “Program Not Responding”. Your PC can sometimes recover from a memory leak if you access Task Manager to close the corrupted program. 15. How does the OS keep track of storage resources? Behind the scenes, an operating system acts as a filing clerk that stores and retrieves files from your computer’s hard drive and other storage devices. It remembers the names and locations of all your files and keeps track of empty spaces where new files can be stored. 16. Why does the operating system get involved with peripheral devices? Every device connected to a computer is regarded as an input or output resource. Your computer’s operating system communicates with device driver software so that data can travel smoothly between the 5 Advanced English Reading and Writing 2 高级 英语 读写教程 2 computer and peripheral resources. If a peripheral device or driver is not performing correctly, the operating system makes a decision about what to do—usually it displays an on-screen message to warn you of the problem. 17. Your computer’s operating system ensures that input and output proceed in an orderly manner, using buffers to collect and hold data while the computer is busy with other tasks. By using a keyboard buffer, for example, your computer never misses one of your keystrokes, regardless of how fast you type or what else is happening in your computer at the same time. 18. Are different operating systems needed for different computing tasks? One operating system might be better suited to some computing tasks than others. To provide clues to their strengths and weaknesses, operating systems are informally categorized and characterized using one or more of the following terms: 19. A single-user operating system expects to deal with one set of input devices—those that can be controlled by one user at a time. Operating systems for handheld computers19 and some personal computers fit into the single-user category. DOS is an example of a single-user operating system. 20. A multiuser operating system allows a single, centralized computer to deal with simultaneous input, output, and processing requests from many users. One of its most difficult responsibilities is to schedule all the processing requests that a centralized computer must perform.
Recommended publications
  • Lecture 1: Introduction to UNIX
    The Operating System Course Overview Getting Started Lecture 1: Introduction to UNIX CS2042 - UNIX Tools September 29, 2008 Lecture 1: UNIX Intro The Operating System Description and History Course Overview UNIX Flavors Getting Started Advantages and Disadvantages Lecture Outline 1 The Operating System Description and History UNIX Flavors Advantages and Disadvantages 2 Course Overview Class Specifics 3 Getting Started Login Information Lecture 1: UNIX Intro The Operating System Description and History Course Overview UNIX Flavors Getting Started Advantages and Disadvantages What is UNIX? One of the first widely-used operating systems Basis for many modern OSes Helped set the standard for multi-tasking, multi-user systems Strictly a teaching tool (in its original form) Lecture 1: UNIX Intro The Operating System Description and History Course Overview UNIX Flavors Getting Started Advantages and Disadvantages A Brief History of UNIX Origins The first version of UNIX was created in 1969 by a group of guys working for AT&T's Bell Labs. It was one of the first big projects written in the emerging C language. It gained popularity throughout the '70s and '80s, although non-AT&T versions eventually took the lion's share of the market. Predates Microsoft's DOS by 12 years! Lecture 1: UNIX Intro The Operating System Description and History Course Overview UNIX Flavors Getting Started Advantages and Disadvantages Lecture Outline 1 The Operating System Description and History UNIX Flavors Advantages and Disadvantages 2 Course Overview Class Specifics 3
    [Show full text]
  • Adventures with Illumos
    > Adventures with illumos Peter Tribble Theoretical Astrophysicist Sysadmin (DBA) Technology Tinkerer > Introduction ● Long-time systems administrator ● Many years pointing out bugs in Solaris ● Invited onto beta programs ● Then the OpenSolaris project ● Voted onto OpenSolaris Governing Board ● Along came Oracle... ● illumos emerged from the ashes > key strengths ● ZFS – reliable and easy to manage ● Dtrace – extreme observability ● Zones – lightweight virtualization ● Standards – pretty strict ● Compatibility – decades of heritage ● “Solarishness” > Distributions ● Solaris 11 (OpenSolaris based) ● OpenIndiana – OpenSolaris ● OmniOS – server focus ● SmartOS – Joyent's cloud ● Delphix/Nexenta/+ – storage focus ● Tribblix – one of the small fry ● Quite a few others > Solaris 11 ● IPS packaging ● SPARC and x86 – No 32-bit x86 – No older SPARC (eg Vxxx or SunBlades) ● Unique/key features – Kernel Zones – Encrypted ZFS – VM2 > OpenIndiana ● Direct continuation of OpenSolaris – Warts and all ● IPS packaging ● X86 only (32 and 64 bit) ● General purpose ● JDS desktop ● Generally rather stale > OmniOS ● X86 only ● IPS packaging ● Server focus ● Supported commercial offering ● Stable components can be out of date > XStreamOS ● Modern variant of OpenIndiana ● X86 only ● IPS packaging ● Modern lightweight desktop options ● Extra applications – LibreOffice > SmartOS ● Hypervisor, not general purpose ● 64-bit x86 only ● Basis of Joyent cloud ● No inbuilt packaging, pkgsrc for applications ● Added extra features – KVM guests – Lots of zone features –
    [Show full text]
  • DVD Authoring System for Opensolaris Installation and Usage Manual
    DVD Authoring System for OpenSolaris Installation and Usage Manual Authors: Igor Struchkov, Vladimir Omelin 1 Preface DVD authoring is one of the most common tasks fulfilled by personal computers nowadays. Modern operating systems, including Linux and Windows, have numerous software packages, both open-source and proprietary, for DVD authoring. OpenSolaris is now aiming at a competitive role in the niche of desktop operating systems and therefore all kinds of end-user applications, such as DVD authoring software, must become available in it. The goal of this project is to build a full-featured DVD authoring system for OpenSolaris by porting available open-source Linux packages and developing all non-portable features. After some preliminary research it became clear that most of back-end work, including audio/video encoding and iso image construction, can be done by command-line utilities that can be ported from Linux to OpenSolaris. On the other hand, a GUI front-end was decided to be built almost from scratch using some ideas from open-source project Varsha. The main idea was to develop the front-end on JavaTM platform, making it as portable as possible. It turned out to be a very good decision in rapidly changing and unstable world of OpenSolaris distributions, and the developed front-end stays functional in any combination of installed packages. 2 1. Architecture of the DVD Authoring System Architecture of the DVD authoring system consists of several components of different kinds. One group of components, called Utilities, consists of command-line tools running in native Solaris environment. This group includes dvdauthor, mjpegtools, ffmpeg, sox and dvd-slideshow.
    [Show full text]
  • Getting Started with Opensolaris 2009.06 - an Introduction for Technical Evaluators
    Getting Started with OpenSolaris 2009.06 - An Introduction for Technical Evaluators 3 days starting 25 January at Guillemot Park, Camberley, Surrey To book please make direct contact with Sarah Clayton – [email protected] Course Description This course provides instruction in key features and capabilities of the OpenSolaris 2009.06 Operating System. Topics include installation, network connections, software updates, management of system services, and using Time Slider to create instant backups of the system. Delegates will also be instructed in the basics of system management including file and directory manipulation, viewing system information and managing tasks. Use of role-administration will also be explored. This course does not support the Sun Certified Solaris Associate exam. Who Can Benefit The Getting Started with OpenSolaris 2009.06 course is designed for technically competent individuals who are preparing to evaluate OpenSolaris 2009.06 and are unfamiliar with the UNIX Operating System. Course Length 3 days Prerequisites To succeed fully in this course, students must be able to: • Use basic computer hardware (monitor, keyboard, and mouse) • Input commands and control characters from a keyboard • Have administration experience of another enterprise operating system Skills Gained On completion of this course students will be able to: • Install OpenSolaris and access the internet with ease • Manipulate network connections • Update the software on the system and install new software packages • Understand and control the services
    [Show full text]
  • The Rise & Development of Illumos
    Fork Yeah! The Rise & Development of illumos Bryan Cantrill VP, Engineering [email protected] @bcantrill WTF is illumos? • An open source descendant of OpenSolaris • ...which itself was a branch of Solaris Nevada • ...which was the name of the release after Solaris 10 • ...and was open but is now closed • ...and is itself a descendant of Solaris 2.x • ...but it can all be called “SunOS 5.x” • ...but not “SunOS 4.x” — thatʼs different • Letʼs start at (or rather, near) the beginning... SunOS: A peopleʼs history • In the early 1990s, after a painful transition to Solaris, much of the SunOS 4.x engineering talent had left • Problems compounded by the adoption of an immature SCM, the Network Software Environment (NSE) • The engineers revolted: Larry McVoy developed a much simpler variant of NSE called NSElite (ancestor to git) • Using NSElite (and later, TeamWare), Roger Faulkner, Tim Marsland, Joe Kowalski and Jeff Bonwick led a sufficiently parallelized development effort to produce Solaris 2.3, “the first version that worked” • ...but with Solaris 2.4, management took over day-to- day operations of the release, and quality slipped again Solaris 2.5: Do or die • Solaris 2.5 absolutely had to get it right — Sun had new hardware, the UltraSPARC-I, that depended on it • To assure quality, the engineers “took over,” with Bonwick installed as the gatekeeper • Bonwick granted authority to “rip it out if itʼs broken" — an early BDFL model, and a template for later generations of engineering leadership • Solaris 2.5 shipped on schedule and at quality
    [Show full text]
  • April 2006 Volume 31 Number 2
    APRIL 2006 VOLUME 31 NUMBER 2 THE USENIX MAGAZINE OPINION Musings RIK FARROW OpenSolaris:The Model TOM HAYNES PROGRAMMING Code Testing and Its Role in Teaching BRIAN KERNIGHAN Modular System Programming in MINIX 3 JORRIT N. HERDER, HERBERT BOS, BEN GRAS, PHILIP HOMBURG, AND ANDREW S. TANENBAUM Some Types of Memory Are More Equal Than Others DIOMEDIS SPINELLIS Simple Software Flow Analysis Using GNU Cflow CHAOS GOLUBITSKY Why You Should Use Ruby LU KE KANIES SYSADMIN Unwanted HTTP:Who Has the Time? DAVI D MALONE Auditing Superuser Usage RANDOLPH LANGLEY C OLUMNS Practical Perl Tools:Programming, Ho Hum DAVID BLANK-EDELMAN VoIP Watch HEISON CHAK /dev/random ROBERT G. FERRELL STANDARDS USENIX Standards Activities NICHOLAS M. STOUGHTON B O OK REVIEWS Book Reviews ELIZABETH ZWICKY, WITH SAM STOVER AND RI K FARROW USENIX NOTES Letter to the Editor TED DOLOTTA Fund to Establish the John Lions Chair C ONFERENCES LISA ’05:The 19th Large Installation System Administration Conference WORLDS ’05: Second Workshop on Real, Large Distributed Systems FAST ’05: 4th USENIX Conference on File and Storage Technologies The Advanced Computing Systems Association Upcoming Events 3RD SYMPOSIUM ON NETWORKED SYSTEMS 2ND STEPS TO REDUCING UNWANTED TRAFFIC ON DESIGN AND IMPLEMENTATION (NSDI ’06) THE INTERNET WORKSHOP (SRUTI ’06) Sponsored by USENIX, in cooperation with ACM SIGCOMM JULY 6–7, 2006, SAN JOSE, CA, USA and ACM SIGOPS http://www.usenix.org/sruti06 MAY 8–10, 2006, SAN JOSE, CA, USA Paper submissions due: April 20, 2006 http://www.usenix.org/nsdi06 2006
    [Show full text]
  • Solaris 10 & Opensolaris Performance, Observability & Debugging
    USE IMPROVE EVANGELIZE Solaris 10 & OpenSolaris Performance, Observability & Debugging (POD) Jim Mauro Significant Material/Content contributions: Richard McDougall Principal Engineer Chief Performance Architect Sun Microsystems, Inc VMware [email protected] [email protected] USE IMPROVE EVANGELIZE This tutorial is copyright © 2009 by Richard McDougall and James Mauro. It may not be used in whole or part for commercial purposes without the express written consent of Richard McDougall and James Mauro About The Authors Jim Mauro is a Principle Engineer in the Systems Group Quality Office at Sun Microsystems, where he focuses on systems performance with real customer workloads. Jim also dabbles in performance for ZFS and Virtualization. Richard McDougall is the Chief Performance Architect at VMware. Richard and Jim authored Solaris Internals: Solaris 10 and Open Solaris Kernel Architecture. Prentice Hall, 2006. ISBN 0-13-148209-2 Richard and Jim (with Brendan Gregg) authored Solaris Performance and Tools: DTrace and MDB Techniques for Solaris 10 and Open Solaris Prentice Hall, 2006. ISBN 0-13-156819-1 Richard and Jim authored Solaris Internals:Core Kernel Architecture, Prentice Hall, 2001. ISBN 0-13-022496-0 [email protected] [email protected] LISA '09 Baltimore, Md. 2 USE IMPROVE EVANGELIZE The Books (Shameless Plug) ● Solaris Internals: Solaris 10 and OpenSolaris Kernel Architecture ● Community effort: over 35 contributing authors ● Kernel data structures and algorithms ● A lot of DTrace and mdb(1) examples to support the text ● Solaris Performance and Tools: DTrace and MDB Techniques for Solaris 10 and OpenSolaris ● Guide to using the tools and utilities, methods, examples, etc LISA '09 Baltimore, Md.
    [Show full text]
  • Oracle Secure Global Desktop
    O R A C L E F A Q Frequently Asked Questions Oracle Secure Global Desktop Introduction Users never connect directly to the application server tier. This allows the application servers to be isolated from Oracle Secure Global Desktop is a secure remote internet access, except through the SGD server. access solution for cloud-hosted enterprise applications Q: What is the latest available version? and hosted desktops running on Microsoft Windows, A: Version 5.2 is the latest version as of June 2015. Details Linux, Solaris and mainframe servers. Oracle Secure can be found here. Global Desktop works with a wide range of popular Q: Where can I find documentation? client devices, including Windows PCs, Macs, Linux A: he documentation collection can be found at Oracle Secure PCs, and tablets such as the Apple iPad and Android- Global Desktop Documentation page based devices. The software gives users the ability to Q: Where can I find the software? work securely from nearly any device, virtually A: SGD can be downloaded from the Oracle Secure Global anywhere, while providing administrators the tools they Desktop downloads page. need to control access to applications and desktop Q: What operating systems does SGD run on? environments resident in the data center. A: For the latest version of SGD the list of supported operating systems can be found here. Q: What application types are supported? Questions and Answers A: For the latest version of SGD, the supported application Q: What is Oracle Secure Global Desktop types (and associated protocols) can be found here. A: Oracle Secure Global Desktop (SGD) is software that Note that this does not necessarily specify application enables remote users to securely access and run server operating systems.
    [Show full text]
  • Introducing a New Product
    illumos SVOSUG Update Presented by Garrett D'Amore Nexenta Systems, Inc. August 26, 2010 What's In A Name? illumos = illum + OS = “Light + OS” Light as in coming from the Sun... OS as in Operating System Note: illumos not Illumos or IllumOS “illumos” trademark application in review. Visual branding still under consideration. Not All of OpenSolaris is Open Source ● Critical components closed source – libc_i18n (needed for working C library) – NFS lock manager – Portions of crypto framework – Numerous critical drivers (e.g. mpt) ● Presents challenges to downstream dependents – Nexenta, Belenix, SchilliX, etc. – See “Darwin” and “MacOS X” for the worst case What's Good ● The Technology! – ZFS, DTrace, Crossbow, Zones, etc. ● The People – World class engineers! – Great community of enthusiasts – Vibrant ecosystem ● The Code is Open – Well most of it, at least illumos – the Project ● Derivative (child) of OS/Net (aka ON) – Solaris/OpenSolaris kernel and foundation – 100% ABI compatible with Solaris ON – Now a real fork of ON, but will merge when code available from Oracle ● No closed code – Open source libc, kernel, and drivers! ● Repository for other “experimental” innovations – Can accept changes from contributors that might not be acceptable to upstream illumos – the Ecosystem ● illumos-gate is just ON – Focused on “Core Foundation Blocks” – Flagship project ● Expanding to host other affiliated projects – Umbrella organization – X11 components? – Desktop components? – C++ Runtime? – Distributions? illumos – the Community ● Stands independently
    [Show full text]
  • Lifetime Support Policy: Oracle and Sun Systems Software
    Oracle and Sun System Software and Operating Systems Oracle Lifetime Support Policy September 21, 2021, 2021 | Version 1.00 Copyright © 2021, Oracle and/or its affiliates TABLE OF CONTENTS This brochure provides lifecycle timeframes for system software that is typically sold Additional Sun software is located in the standalone, but used in conjunction with specific Oracle or Sun products. Product Oracle Fusion Middleware, Oracle areas include server and storage management, Sun third-party, communication and Technology and Oracle Applications collaboration and Sun Ray. Lifetime Support Policy brochures located on www.oracle.com. ORACLE LIFETIME SUPPORT: 2 Please see the Oracle Software Oracle Communications Session Border Controller (Formerly Acme Packet Net-Net) 5 Technical Support Policies document Oracle Communications Tunneled Session Controller (Formerly Acme Packet NetNet) 5 located on www.oracle.com for Oracle Communications Application Session Controller (Formerly Acme Packet Net-Net) 5 additional terms and descriptions. Oracle Communications Unified Session Manager (Formerly Acme Packet Net-Net) 6 Oracle Communications Subscriber Aware Load Balancer (Formerly Acme Packet Net-Net) 6 Oracle Communications Border Gateway (Formerly Acme Packet Net-Net Border Gateway) 6 Oracle Communications Core Session Manager 7 Oracle Communications Session Router (Formerly Acme Packet Net-Net Session Router) 7 Oracle Communications Security Gateway (Formerly Acme Packet Net-Net Security Gateway) 7 Oracle Communications Session Monitor Family of
    [Show full text]
  • Adventures with Illumos
    > Adventures with illumos Peter Tribble Theoretical Astrophysicist Sysadmin (DBA) Technology Tinkerer > Introduction ● Long-time systems administrator ● Many years pointing out bugs in Solaris ● Invited onto beta programs ● Then the OpenSolaris project ● Voted onto OpenSolaris Governing Board ● Along came Oracle... ● illumos emerged from the ashes > illumos key differentiators ● ZFS – reliable and easy to manage ● Dtrace – extreme observability ● Zones – lightweight virtualization ● Standards – pretty strict ● Compatibility – decades of heritage ● “Solarishness” ● No systemd ;-) > Diverse distributions ● OpenIndiana – OpenSolaris ● OmniOS – server focus ● SmartOS – Joyent's cloud ● Delphix/Nexenta/+ – storage focus ● DilOS, osdyson – debian ● Tribblix – one of the small fry > Distro differences ● Packaging – IPS: OI, Omnios, XStreamOS – SVR4: OpenSXCE, Tribblix – Deb: DilOS, osdyson – Pkgsrc: SmartOS – Storage vendors don't have (exposed) packaging – (No active rpm distro – Belenix is inactive) > Distro differences ● X86/X64 – Pretty much everything ● SPARC – OpenSXCE or Tribblix ● X64 only – SmartOS ● Minimum memory depends on packaging – IPS needs > 1G – Others happy in 512M > Distro focus ● OpenIndiana – copy OpenSolaris ● OmniOS – server, supported ● OpenSXCE – copy Solaris 10 ● XStreamOS – modern OpenIndiana ● SmartOS – foundation for cloud ● Tribblix – what OpenSolaris should have been > Why do it yourself? ● Challenging and interesting ● Understand the inner workings ● Satisfy the target audience ● Make a flexible platform for development
    [Show full text]
  • Opensolaris Presentation
    Open source for the enterprise Marco Colombo Sun Microsystems Italia S.p.A. What is Open Source? Distribute binaries + source code Open Source and/or Free software license Freely: modifiable, redistributable, forkable Non-discriminatory Consensus driven projects Meritocracy Peer review and public discussion OK to make money - but not for access to code 2 OpenSolaris: Open Source for the Enterprise | Marco Colombo – Sun Microsystems Italia Why Open Source? Good For Customers Good For Sun & Partners Community drives choice, Innovation happens competition, value everywhere Accelerates unexpected, Creates new opportunities by disruptive innovation growing the market 3 OpenSolaris: Open Source for the Enterprise | Marco Colombo – Sun Microsystems Italia Community Participation 4 CopyrightOpenSolaris: © 2004 SomersetOpen Source Historical for Centerthe Enterprise | Marco Colombo – Sun Microsystems Italia Sun: A History of Community J2EE, J2ME NFS Jini UNIX SVR4 XML Sun 1 with TCP/IP 1980 1990 2000 2005 5 OpenSolaris: Open Source for the Enterprise | Marco Colombo – Sun Microsystems Italia Benefit Of Open Communities Shared vision, goals Access to Technology Open Agreed sharing and Ideas Development (license) Agreed relationships Open Communities (governance) Committed members Broad Inclusive Participation Process It’s About Both People and Technologies 6 OpenSolaris: Open Source for the Enterprise | Marco Colombo – Sun Microsystems Italia Expect the Unexpected Bright, well-known people contribute code regularly Community finds new uses Jini™
    [Show full text]