DVD Authoring System for Opensolaris Installation and Usage Manual

Total Page:16

File Type:pdf, Size:1020Kb

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. Another group of components are JavaTM platform libraries that support our GUI front-end. The third group consists of one component, namely, a DVD authoring front-end developed in Java. And the fourth group consists of standard OpenSolaris video players – Totem or MPlayer. The graphical view of the architecture is shown in fig. 1. Totem MPlayer Utilities dvdauthor GUI front-end spumux mjpegtools ffmpeg Docking JMF dvd-slideshow Frames sox JavaTM Platform Fig.1. Overall architecture of the DVD authoring system 3 The GUI front-end is a center of the system. It represents the process of DVD authoring in a user-friendly manner as described in chapter 3. But the GUI front-end does not make all the work itself, it relies heavily on Utilities to do the work upon user requests. The main utility is dvdauthor. It receives initial data from the GUI front-end in the form of specially formed XML document called a project. The project describes the whole structure of DVD including menus and chapters, and includes links to MPEG videos that form each chapter of the movie. According to the project XML, dvdauthor produces a folder with DVD disk structure which can be packed into ISO- image or directly burned on a disk if a DVD writer is available. Spumux is used to create DVD menus and is also required by dvd-slideshow to produce subtitles. It accepts data in the from of XML document describing structure of a DVD menu and a video file. From mjpegtools package several utilities are used. Jpeg2yuv is used to create a video file for a DVD menu based on an image and outputs a result in a yuv-file. Mpeg2enc converts yuv-files in MPEG-2. Mplex is used for multiplexing of audio and video streams. In this application mplex creates a video file for DVD menu with an empty (silent) audio track. As initial videos are not usually represented in MPEGs suitable for DVD but instead are provided as a set of AVI clips, some transcoding between video formats is needed. This is done by ffmpeg utility. DVD slideshow is a special case of a video clip. It is formed of a set of still images that should be presented at some time interval. The dvd-slideshow utility helps to convert a set of images into MPEG movie that can be then packed into a DVD project. Dvd-slideshow requires Sox. Though most of the job is done by the command-line utilities, some features need to be available interactively when a user works with a DVD project. This 4 features are provided by Java libraries used by the GUI front-end. Docking Frames library is used to create a good-looking docking GUI that is convenient to user. JMF (Java Media Framework) is a set of Java libraries to support multimedia features in Java applications. In our DVD authoring system JMF is used to provide audio playback to a user when he works with audio tracks. JMF is also capable of showing video playback, but unfortunately we were unable to make it work stable for the needed video formats. Possibly the problem is that native JMF performance pack is not available for Solaris x86 (though it is for Solaris SPARC or Linux x86). Because of JMF video codec problems we decided to use an external application to provide video playback capability when editing a DVD project. This is done by a standard OpenSolaris media player – Totem or MPlayer. Obviously, when JMF performance pack is available for OpenSolaris, this feature may be reworked to become a part of the GUI front-end. 5 2. Installation of the DVD Authoring System Installation of the DVD authoring system involves installation of required packages from OpenSolaris repositories, compilation and installation of ported utility packages and compilation and installation of the Java front-end. 2.1. Installation of Required Binary Packages The following packages from the main OpenSolaris repository must be installed in the system before proceeding to installation of other components: ● SUNWtoo ● SUNWcdrw ● SUNWdvdrw ● SUNWgcc ● SUNWgmake ● SUNWbinutils ● SUNWflexlex ● SUNWbison There are several open-source utilities that should be downloaded from Blastwave repository. Is it recommended to install pkg-get package from Blastwave first. To install pkg-get the following steps should be taken: 1) Issue the following command with root privileges: # pkgadd -d http://blastwave.network.com/csw/\ unstable/i386/5.11/pkg_get-3.8.4-SunOS5.8-all-CSW.pkg 2) After installation is complete, edit /opt/csw/etc/pkg-get.conf. The file should contain only one repository url: url=http://blastwave.network.com/csw/unstable With pkg-get properly configured, the three needed utilities (ffmpeg, faad2 and imagemagic) may be installed: 6 # /opt/csw/bin/pkg-get -i ffmpeg # /opt/csw/bin/pkg-get -i faad2 # /opt/csw/bin/pkg-get -i imagemagick Mplayer can be also installed from Blastwave: # /opt/csw/bin/pkg-get -i mplayer 2.2. Compilation and Installation of Utility Packages from Sources Installation of sox. Source code of sox audio converter does not require special porting. The latest version can be downloaded from the official site of sox project: http://sox.sourceforge.net/ After extracting the tar package and changing to the unpacked folder, compilation and installation is done with the following commands: # ./configure # make # make install Installation of dvd-slideshow. The ported version of dvd-slideshow is available from our svn repository: # svn checkout http://195.19.212.40/svn/DVDAuthor/trunk/dvd-slideshow Installation of the package is done by the following command: # ./install.sh 7 Installation of mjpegtools. The ported version of mjpegtools is available from our svn repository: # svn checkout http://195.19.212.40/svn/DVDAuthor/trunk/mjpegtools Installation of the package is done by the following commands: # ./configure # make # make install Installation of dvdauthor. The ported version of dvdauthor is available from our svn repository: # svn checkout http://195.19.212.40/svn/DVDAuthor/trunk/dvdauthor Installation of the package is done by the following commands: # ./configure --prefix=/usr # make # make install 2.3. Installation of Java Media Framework • Download JMF2.1.1e from http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/download.ht ml • Extract the JMF install archive to a directory, such as /opt/. A JMF-2.1.1e subdirectory will be created. • Set your CLASSPATH path to reference the JMF directory. • Copy /opt/JMF-2.1.1e/lib/jmf.jar to lib/ext of the JRE (e.g. 8 /usr/java/jre/lib/ext/). • Create .jmfdir in user home directory with the following contents: /opt/JMF-2.1.1e/lib/ • Download JMF mp3 plugin from http://java.sun.com/javase/technologies/ desktop/media/jmf/mp3/download.html • Copy mp3plugin.jar to lib/ext of the JRE. • Run the following command: java com.sun.media.codec.audio.mp3.JavaDecoder 2.4. Installation and Compilation of the Java Front-end The Java frontend is distributed as a NetBeans project from our svn repository: # svn checkout http://195.19.212.40/svn/DVDAuthor/trunk/DVDAuthoringSystem The Java code can be compiled and packaged to JAR using NetBeans or from command line using ant. The following JARs should be in the project classpath for successful compilation: ● dockingFramesCore.jar ● dockingFramesCommon.jar This JARs can be found in DVDAuthoringSystem/lib folder. 9 3. Using the DVD Authoring System In this chapter we will give a detailed guide on how our DVD authoring system can be used to perform a complete DVD creation process starting from initial project creation and ending by burning a DVD disk. 3.1. Starting a New Project A new DVD project is created when the DVD authoring system is started or with 'File->New Project' menu command. After starting the application you see the initial screen (fig. 1). It has three main parts: Project Tree Editor, Workspace and Output window. All the components of GUI are docking windows and can be laid out or popped up from the main frame. Fig. 1. Initial screen of the application 10 3.2.
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]
  • 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]
  • Opensolaris.Com
    OpenSolaris May 2008 Andreas Syrigos Senior Architect and Ambassador SJ Vassilis Boulogiorgos Senior Architect Sun Microsystems Inc. Agenda Sun in the Open source evolution What is OpenSolaris? What will it do for you? What makes it unique? Perspectives “Every software asset we produce is open source. If it isn't today, it will be pretty damn quickly.” Jonathan Schwartz CEO, Sun Microsystems January 2007 Sun's Contribution to Linux Estimated Rank Company $ value 1 Sun Microsystems Inc 404 m Estimated Substitution Cost of Sun’s contribution 2 IBM Corp 116 m to Debian GNU/Linux 3 Red Hat Corp 76 m includes code in 4 Silicon Graphics Corp 61 m GNOME Linux kernel 5 SAP AG 60 m Mozilla OpenOffice.org 6 MySQL AB 45 m X.org and other projects 7 Netscape Communications Corp 41 m Source: UNU-MERIT report for the 8 Ximian Inc 39 m European Commission “Economic impact of FLOSS on innovation 9 RealNetworks Inc 35 m and competitiveness of the EU ICT sector” January 2007 10 AT&T 34 m 2008: Sun acquires MySQL Driving market-tipping change in the $15B database marketplace Positioning Sun as the leading platform for the Web economy Expanding Sun’s reach into MySQL’s extraordinary LAMP user base Expanding MySQL’s capacity to deliver global service and support Affirming Sun’s position as the largest commercial open source contributor World’s Most Popular Open Source Database Sun's Open Stack Flexible and Heterogeneous with Zero Barrier to Exit Database Platform Application Java Enterprise System Infrastructure Composite Application Platform Virtualization Sun xVM Operating System Partners Architecture What is OpenSolaris? ZFS DTrace CIFS Clearview IPS FMA Community Participation + Solaris Innovation What Do Developers Want? Turbo charged development Experiment rapidly environment...
    [Show full text]