User's Manual

Total Page:16

File Type:pdf, Size:1020Kb

User's Manual Advantech Automation Corporation Advantech Device Driver for Linux User's manual Version <2.6> Linux driver development Version: <2.4> User’s Manual Date: 3/16/2005 Edwin Revision History Date Version Description Author 10/28/2002 <1.0> Initial version Bai jingang 11/6/2002 <1.5> Update from original comedi manual Edwin 11/14/2002 <2.0> Modified with xinyong Edwin 12/09/2002 <2.0.1> Add supported cards table Changping 2003/5/1 <2.1> Add pci1784, modify installation Edwin instructions 2003/5/20 <2.2> United Linux testing Edwin du 2004/1/7 <2.3> Add pcm3730, add insn convention and Eddy Yang special hint of pcm3730 7/15/2004 <2.4> Update supported cards table Derek Zhang 10/22/2004 <2.5> Modify some inaccurate description Derek Zhang 03/16/2005 <2.6> Add pci1724 and pci1758 Derek Zhang Modify description of comedilib install Confidential ÓAdvantech Automation Corporation, 2001 Page 2 of 41 Linux driver development Version: <2.4> User’s Manual Date: 3/16/2005 Edwin Table of Contents 1. Introduction 4 1.1 Features 4 1.2 Definitions, Acronyms and Abbreviations 4 1.3 Overview 4 1.4 References 5 2. Comedi installation instructions 6 2.1 Comedi-0.7.60 installation 6 2.1.1 Patch for comedi after installing comedi package 6 2.1.2 Linux source: 7 2.1.3 RTAI support: 10 2.1.4 RTLinux support: 10 2.1.5 Configuration: 10 2.1.6 Compiling: 11 2.1.7 Installation: 11 2.1.8 Module Autoloading: 11 2.1.9 Upgrading: 11 2.1.10 Un-installation 12 2.1.11 Hack 12 2.2 Comedilib-0.7.19 installation 12 3. Package configuration 13 3.1 The existent drivers 13 3.2 Adding driver to original comedi 13 3.3 Running Comedi: 14 3.4 Multi cards co-existence 15 4. Programming with comedi 15 4.1 Relationship between user program and device driver 15 4.2 Call flow of user’s program 16 4.3 Subdevice 16 4.4 Subdevice operator mode 17 4.4.1 Directory data read and write mode: 17 4.4.2 Trigger mode 18 4.4.3 Command mode 24 4.4.4 insn mode 32 4.5 Advantech test example manuals 36 5. comedilib functions description 36 5.1 Device file operation function 36 5.2 Subdevice operation function 37 5.3 Driver information acquirement 38 5.4 Data acquisition funcion 39 Confidential ÓAdvantech Automation Corporation, 2001 Page 3 of 41 Linux driver development Version: <2.4> User’s Manual Date: 3/16/2005 Edwin User’s Manual 1. Introduction Drivers for Advantech data acquisition boards and motion control cards for Linux are developed on COMEDI (Linux Control & Measurement Device Interface). The COMEDI project develops open-source drivers, tools, and libraries for data acquisition. COMEDI is a collection of drivers for a variety of common data acquisition plug-in boards. The drivers are implemented as a core Linux kernel module providing common functionality and individual low-level driver modules. COMEDILIB is a user-space library that provides a developer-friendly interface to comedi devices. Included in the comedilib distribution is documentation, configuration and calibration utilities, and demonstration programs. This document describes usage of Advantech Linux drivers with COMEDI in general. Information on specific production please refer to the heading remarks in the driver’s source code. 1.1 Features Integrated real-time support for most hardware High-level library (comedilib) Application-level device independence Driver has been tested with Linux kernel for RedHat8(kernel2.4.18) and RedHat9(kernel2.4.20) Drivers released together with comedi-0.7.60 and comedilib-0.7.19(for RedHat8) or comedilib-0.7.20(for RedHat9). 1.2 Definitions, Acronyms and Abbreviations Definition Explain COMEDI Linux Control & Measurement Device Interface AI Analog input AO Analog output DI Digital input DO Digital output insn Instruction mode I/O cmd Command mode I/O 1.3 Overview Comedi is a collection of Advantech drivers for data acquisition hardware. These drivers work with Linux, and also with Linux combined with the real-time extensions RTAI and RTLinux. The Comedi core, which ties all the drivers together, allows applications to be written that are completely hardware independent. The distribution of Advantech Linux driver has the following structures: Confidential ÓAdvantech Automation Corporation, 2001 Page 4 of 41 Linux driver development Version: <2.4> User’s Manual Date: 3/16/2005 Edwin Ø Comedi-0.7.60.tar.gz This distribution contains just the Comedi kernel modules. More information please refer to comedi-0.7.60/README. Following is the structure of comedi-0.7.60: └─comedi-0.7.60 main COMEDI dir ├─Documentation documentations about install, configure and develop. │ └─comedi │ └─notes ├─comedi working dir. │ ├─drivers drivers, including source code and .o files. │ └─kcomedilib kernel space library ├─debian ├─include .h files that COMEDI driver needs. │ ├─asm │ └─linux ├─patches ├─rpm └─scripts ├─linux_flags └─lxdialog Ø Comedilib-0.7.19.tgz This distribution contains only the user-space library for redhat8 release version. More information please refer to comedilib-0.7.19/README. Ø Comedilib-0.7.20.tar.gz This distribution contains only the user-space library for redhat9 release version. More information please refer to comedilib-0.7.20/README Ø Test.tar.gz This distribution contains testing cases on the driver. 1.4 References - COMEDI Official web site: http://stm.lbl.gov/comedi or http://www.comedi.org/ - The IO-Port Programming Mini HOWTO: http://www.linuxdoc.org/HOWTO/mini/IO-Port-Programming.html Confidential ÓAdvantech Automation Corporation, 2001 Page 5 of 41 Linux driver development Version: <2.4> User’s Manual Date: 3/16/2005 Edwin - Linux Kernel Module Programming Guide http://www.linuxdoc.org/LDP/lkmpg/mpg.html - Kernel Hacker's Guide http://www.linuxdoc.org/LDP/khg/HyperNews/get/khg.html - Linux Device Drivers, 2nd Edition http://www.xml.com/ldd/chapter/book/index.html - RTAI web site http://www.rtai.org/ or http://www.aero.polimi.it/~rtai/ 2. Comedi installation instructions 2.1 Comedi-0.7.60 installation 2.1.1 Patch for comedi after installing comedi package When using comedi in RedHat9 or compiling with gcc 3.x.x , you should patch comedi package. Patching process as follow: 1) decompressing file patch.tgz # tar xvfz patch.tgz; The directory construction is: +patch | +--comedi-0.7.60-gcc3.patch :patch file for gcc3 problem | +--comedi-0.7.60-redhat9.patch :patch file for redhat9 problem | +--README :readme file 2) patch for gcc3.x.x If your OS (such as Redhat 8.0, 9.0 and Fedora) uses gcc3xx compiler, this patch file is needed. Patch comedi package with the following commands. # ls comedi-0.7.60/ patch/ # cd comedi-0.7.60/ # patch -p1 < ../patch/comedi-0.7.60-gcc3.patch 3) patch for redhat 9 If your OS is Redhat 9.0 with its original kernel, this patch file is needed. Patch comedi package with the following commands. # ls comedi-0.7.60/ patch/ Confidential ÓAdvantech Automation Corporation, 2001 Page 6 of 41 Linux driver development Version: <2.4> User’s Manual Date: 3/16/2005 Edwin # cd comedi-0.7.60/ # patch -p1 < ../patch/comedi-0.7.60-redhat9.patch More detail please README file 2.1.2 Linux source: In order to compile the Comedi modules, you will need to have a correctly configured Linux kernel source tree. The best way to get one is to download a tarball from kernel.org and compile your own kernel. Comedi should work with most 2.2 and 2.4 Linux kernels. Support for 2.0.3x is not actively maintained, but it should work and bugs will be fixed as they are reported. The following steps will (almost) set up your kernel sources correctly. You will also need write permission to the kernel source directory the first time you run comedi's 'make config', so you might want to unpack the kernel source into a directory you own. There are two ways to prepare Linux kernel source. One is a standard way that we strongly recommend to, which is to download a standard Linux kernel and configure it. The other way informs you the way to configure kernels in some popular Linux release, such as RedHat, Debian, Mandrake, etc. 2.1.2.1 General setup We strongly recommend to use a standard Linux kernel distributed by http://www.kernel.org , this section describes the most common steps to setup the kernel. This operation is independent to Linux releases. Read the instructions if you have problem compiling the kernels: http://www.tldp.org/HOWTO/Kernel-HOWTO/. 1) Get a copy of the kernel source that matches the kernel you are running. Download a kernel from http://www.kernel.org or from a mirror site nearby. The compressed tar archive in this directory can be downloaded using a web browser or a command- line program such as wget: #wget --no-directories --retr-symlinks http://www.kernel.org/pub/linux/kernel/v2.4/linux-2.x.x.tar.gz 2) Copy the package into a directory that you have writes permission and unpack kernel: #cp linux-2.x.x.tar.gz /usr/src #cd /usr/src/ #tar –jxvf linux-2.x.x.tar.bz2 (This command is for .bz2 kernel) #tar –zxvf linux-2.x.x.tar.gz (This command is for .gz kernel) 3) Configure your kernel: Change into your kernel source directory. #cd linux-2.x.x #make menuconfig Then you would be provided with a graphic user interface to configure your kernel.
Recommended publications
  • Oracle RDBMS on AIX, HP-UX, Solaris, Tru64
    QUICK REFERENCE (Color Coding) ---------------------------------------------------- Jump to: AIX HP Sun Tru64 Linux PURPOSE -------------- This bulletin is produced to provide a central source for all the primary installation settings for the various mainstream unix platforms, e.g. IBM AIX, HP-UX, Sun Solaris, Tru64, and Linux. Careful comparison of the Installation Guide and the applicable release note for an OS/Oracle version has been done to ensure that this bulletin provides the most complete source of data in hopes that it will save time for each researching analyst. NOTE: Pre-compilers requirements are no longer addressed in this note, for a single source note that addresses Pre-compiler/Compiler requirements, please refer to: <Note: 43208.1> Certified Compilers SCOPE & APPLICATION ------------------------------------- This focus of this bulletin is on assisting the Oracle Unix installation community in resolving installation issues of the RDBMS. This bulletin places in one document all the pertinent information related to installations that has been extracted from three different documents (Installation Guides, Release Notes, and SRNs) A script to verify that the system has been configured correctly according to the Installation Guide can be found on Metalink <Note: 189256.1> "UNIX: Script to Verify Installation Requirements for Oracle 9.x version of RDBMS" Corrections and updates are REQUESTED and EXPECTED (in the form of REMARKS or Metalink "Feedback" button) to ensure the accuracy and up-to-date status of this bulletin. Oracle
    [Show full text]
  • SCO Authentication Installation and Configuration Guide
    SCO Authentication Installation and Configuration Guide SCO Authentication Installation and Configuration Guide July 18, 2003 COPYRIGHT (c) Copyright 2003 The SCO Group All Rights Reserved. SCO documents (“SCO Documents”) are protected by the copyright laws of the United States and International Treaties. Permission to copy, view and print SCO documents is authorized provided that: It is used for non-commercial and informational purposes. It is not modified. The above copyright notice and this permission notice is contained in each SCO Document. Notwithstanding the above, nothing contained herein shall be construed as conferring any right or license under any copyright of SCO. RESTRICTED RIGHTS LEGEND When licensed to a U.S., State, or Local Government, all Software produced by SCO is commercial computer software as defined in FAR 12.212, and has been developed exclusively at private expense. All technical data, or Caldera commercial computer software/documentation is subject to the provisions of FAR 12.211 - “Technical Data”, and FAR 12.212 - “Computer Software” respectively, or clauses providing SCO equivalent protections in DFARS or other agency specific regulations. Manufacturer: SCO Operations Inc., 355 South 520 West Suite #100, Lindon, Utah 84042. DISCLAIMER THE SCO DOCUMENTS ARE PROVIDED “AS IS” AND MAY INCLUDE TECHNICAL INACCURACIES OR TYPOGRAPHICAL ERRORS. CALDERA INTERNATIONAL, INC. RESERVES THE RIGHT TO ADD, DELETE, CHANGE OR MODIFY THE SCO DOCUMENTS AT ANY TIME WITHOUT NOTICE. THE DOC- UMENTS ARE FOR INFORMATION ONLY. SCO MAKES NO EXPRESS OR IMPLIED REPRESENTA- TIONS OR WARRANTIES OF ANY KIND. TRADEMARKS SCO, the SCO logo, SCO Volution, OpenLinux, SCO OpenServer, AND Skunkware, are trademarks or registered trademarks of Caldera International, Inc.
    [Show full text]
  • Linux Standard Base and Debian
    Linux Standard Base and Debian Matt Taggart <[email protected]> debconf2 July 7, 2002 Matt Taggart 06/08/2004 Standards ● 'Standards are great! There are so many to choose from.' ● Show of hands: How many have looked at the LSB? Matt Taggart 06/08/2004 Disclaimer ● Brief introduction targeted at a Debian audience ● Not enough time to cover in depth ● Time for questions, ask as we go Matt Taggart 06/08/2004 Overview ● Standards, Who needs 'em? ● LSB background ● Debian Involvement ● lsb-futures ● questions Matt Taggart 06/08/2004 Standards ● Why should Free Software Developers care? – Limited interest from Debian so far – Most assume it doesn't affect them – Early mistakes upset most Debian people – Free Standards are actually just as important to Debian than other distributions(if not more) Matt Taggart 06/08/2004 The Rest of the World ● Linux has a minority of OS users ● Debian has a minority of Linux users ● We can't abandon the majority of computer users ● We need to be stay in tune with the world around us and do what we can to provide an alternative ● Similar compromise to non-free, LGPL, and GPL not restricting usage on a propriatary system Matt Taggart 06/08/2004 Friend or Foe? ● With commercialization we're starting to see, – traditional propriatary software companies embrace free software – traditional free software companies embrace propriatary software – letter of the law, not spirit – grey areas – "enterprise" editions of software – United Linux - unclear Matt Taggart 06/08/2004 Positive Benefits ● Commercialization not all
    [Show full text]
  • Perspectives on Free and Open Source Software.Pdf
    Perspectives on Free and Open Source Software Perspectives on Free and Open Source Software edited by Joseph Feller, Brian Fitzgerald, Scott A. Hissam, and Karim R. Lakhani The MIT Press Cambridge, Massachusetts London, England © 2005 Massachusetts Institute of Technology All rights reserved. No part of this book may be reproduced in any form by any electronic or mechanical means (including photocopying, recording, or information storage and retrieval) without permission in writing from the publisher. MIT Press books may be purchased at special quantity discounts for business or sales promotional use. For information, please e-mail [email protected] or write to Special Sales Department, The MIT Press, 5 Cambridge Center, Cambridge, MA 02142. This book was set in Stone sans and Stone serif by SNP Best-set Typesetter Ltd., Hong Kong. Printed and bound in the United States of America. Library of Congress Cataloging-in-Publication Data Perspectives on free and open source software / edited by Joseph Feller . [et al.]. p. cm. Includes bibliographical references and index. ISBN 0-262-06246-1 (alk. paper) 1. Shareware (Computer software) 2. Open source software. 3. Computer software—Development. I. Feller, Joseph, 1972– QA76.76.S46P47 2005 005.36—dc22 2004064954 10987654321 My love, thanks and humble apologies go to my very patient and supportive family: Carol, Caelen, Damien, and Dylan. JF Arís as Gaeilge: Buíochas mór le mo chlann, Máire, Pól agus Eimear. Is mór agam an iarracht a rinne sibh ar mo shon. BF With heartfelt warmth, I dedicate this book to my wife, Jacqueline, and my two sons, Derek and Zachery, who bring meaning to everything I do.
    [Show full text]
  • The Progress Company Platform & Product Availability
    The Progress Company Platform & Product Availability Guide Update: May 6, 2003 Introduction The Platform & Product Availability Guide reflects the current commercial releases for the Progress Company’s products. This document does NOT address future product release plans. The information contained in this document is updated on a regular basis and is subject to change without notice. Please note: Edits made since February 17th 2003 have been consolidated with new changes shown in red, bold font. Change Summary • United Linux certification added for Version 9 OpenEdge platforms (Caldera OpenLinux Intel, SuSE Linux Intel & TurboLinux Intel) • SuSe Linux 8.1 Certification added • Table of tested Linux Kernel and glibc versions added • Product Availability sections for V8 and V9 updated to accommodate BI-Reporting Development and Deployment Products • Product Availability sections for Progress V9 updated to include PeerDirect Development and Deployment Products • Minimum patch requirement for Progress version 9 on IBM AIX increased from V9.1C04 to V9.1D04 (grammatical correction) • Certification level of Progress version 9 changed from AIX 5.1 to AIX 5.1L (grammatical correction) • Fathom Clusters certification of Sun Cluster version 3 for Sun Solaris SPARC 9 added • PA-RISC added to HP platforms to clarify that Itanium (IPF) is not supported • Solaris 7 support removed form SUN Solaris SPARC 64-Bit Table of Contents INTRODUCTION.........................................................................................................................................................................................................
    [Show full text]
  • THE TOTAL ENTERPRISE SOLUTION IBM DB2 Universal Database Cluster on Linux and IBM ^ Xseries
    THE TOTAL ENTERPRISE SOLUTION IBM DB2 Universal Database cluster on Linux and IBM ^ xSeries The Total Enterprise Solution The Challenge SMART database Organizations today face the The benefits of Linux clusters, challenging job of integrating including superior performance technologies to pull together a at a low cost, are well known. comprehensive solution that fits When you add to the mix the their business needs and IT built-in clustering capabilities of ® budgets. IBM DB2 Universal Database™ for Linux, you get a rock-solid A complete data center solution foundation for all your enterprise e-business data processing consists of enterprise class applications, databases, needs. management tools, network infrastructure and server Powerful hardware hardware. Until recently such IBM has extensive and proven ® solutions were based on experience with clustered UNIX proprietary systems and involved computers. IBM ^ significant investment in capital, xSeries™ has applied that time and resources to assemble, knowledge to produce servers integrate, test, manage and that are armor-plated for Linux, support. This scenario has optimized for database changed dramatically with Linux® workloads, and deliver clusters and best-of-breed tremendous power at a fraction software, hardware and services of the price. from IBM and its partners. Demanding applications This demonstration is a proof of The combination of DB2 and how even the strictest Linux on xSeries, with the latest ® ® requirements can easily be Intel and AMD processors – satisfied, with the right 32 and 64bit technologies alike, combination of products, to is powerful enough to run highly implement a total data demanding business ® management solution. applications, including SAP R/3, mySAP Customer Relationship Management (CRM), mySAP Business Intelligence (BI) and IBM Websphere Application Server.
    [Show full text]
  • Intel(R) C++ Compiler 8.0 for Linux Release Notes
    Intel® C++ Compiler 8.0 for Linux Release Notes Contents Overview New Features System Requirements Installation Notes Known Limitations Technical Support Documentation Additional Information Copyright and Legal Information Overview The Intel® Compilers help make your software run at top speeds on all Intel® 32-bit processors and the Intel® Itanium® processors. Optimizations include support for Streaming SIMD Extensions 2 (SSE2) in the Intel® Pentium® 4 and Pentium® M processors, Streaming SIMD Extensions 3 (SSE3) in the Intel® Pentium® Processor 4 with Streaming SIMD Extensions 3 (SSE3) instruction support and software pipelining in the Intel Itanium 2 processor. Inter- procedural optimization (IPO) and profile-guided optimization (PGO) can provide greater application performance. Intel Compilers support multi-threaded code development through autoparallelism and OpenMP* support. The following components are included in the installation package: ● The Intel® C++ Compiler version 8.0 for IA-32 based applications: icc. ● The Intel® C++ Compiler version 8.0 for Itanium-based applications: icc. ● The Intel® Debugger version 7.3 for IA-32 and Itanium-based applications: idb. ● The Intel® Itanium Assembler version 7.0 to produce Itanium-based applications: ias. ● The Intel® Compiler code-coverage tool ● The Intel® Compiler test-prioritization tool ● Documentation and documentation index that can be found at <install-dir>/doc/ ccompindex.htm The paper, Optimizing Applications with the Intel C++ and Fortran Compilers for Windows* and Linux*, explains how to use the Intel compilers to optimize for the Pentium 4 and Itanium processors and is available at http://www.intel.com/software/products/compilers/ . Additional information on the Intel Software Development Products is available at http://www.intel.com/ software/products/ .
    [Show full text]
  • Many-To-Many Contracts
    Seattle University School of Law Digital Commons Faculty Scholarship 1-1-2012 Many-to-Many Contracts Heidi S. Bond Follow this and additional works at: https://digitalcommons.law.seattleu.edu/faculty Part of the Contracts Commons Recommended Citation Heidi S. Bond, Many-to-Many Contracts, 86 TUL. L. REV. 519 (2012). This Article is brought to you for free and open access by Seattle University School of Law Digital Commons. It has been accepted for inclusion in Faculty Scholarship by an authorized administrator of Seattle University School of Law Digital Commons. For more information, please contact [email protected]. TULANE LAW REVIEW VOL. 86 FEBRUARY 2012 No. 3 Many-to-Many Contracts Heidi S. Bond* In classical contract law the concept of one-to-one negotiations is familiar contracts where one party negotiates with the other ant eventually terms air offered and then accepted Mom modern times have made us comfortable with the notion of one-to-many contracts: contractstypically drafledbylarge corporationsand then disturbutedona take-it-or-leave-itbasis to the masses. ThisArticle dhscusses a thrd and ofcontract: a many-to-many contract which may look like the standard one-to-many contract in that it is composed of nonnegotiable language But when the arrangements between the partiesare further considered we will see that thepoint ofthe contractis not for oneparty to imposeits terms on anotherwithout question, but fora series ofparties to determine the best way to facilitate interchange. In such situations, inposig standarddoctrines of contractinterprrtation may frustrate the purpose of the contract entrely and for that reason, courts should appmach the interpretation of these contracts with Cam.
    [Show full text]
  • Novell's Motion for a More Definite Statement Was Also Scheduled to Be Heard at the Court's Hearing. but the Parties Inform
    Case 2:04-cv-00139-DAK Document 139 Filed 08/21/2006 Page 1 of 9 ______________________________________________________________________________ IN THE UNITED STATES DISTRICT COURT FOR THE DISTRICT OF UTAH CENTRAL DIVISION THE SCO GROUP, INC., Plaintiff, MEMORANDUM DECISION vs. AND ORDER NOVELL, INC., Defendant. Civil Case No. 2:04CV139DAK This matter is before the court on Defendant Novell, Inc.’s Motion to Stay Claims Raising Issues Subject to Arbitration. The court held a hearing on the motion on July 17, 2006.1 At the hearing, Defendant was represented by Michael A. Jacobs and Thomas R. Karrenberg, and Plaintiff was represented by Stuart H. Singer, William Dzurilla, and Brent O. Hatch. The court took the motion under advisement. The court has considered the memoranda submitted by the parties as well as the law and facts relating to the motion. Now being fully advised, the court renders the following Memorandum Decision and Order. BACKGROUND In January 2004, this case originated in state court as a single claim for slander of title. Novell removed SCO’s state court action to this court. After this court’s ruling on SCO’s 1 Novell’s Motion for a More Definite Statement was also scheduled to be heard at the court’s hearing. But the parties informed the court at the hearing that they had reached an agreement that had resolved the motion. Therefore, the motion is moot. 1 Case 2:04-cv-00139-DAK Document 139 Filed 08/21/2006 Page 2 of 9 motion to remand and Novell’s motion to dismiss, SCO filed its First Amended Complaint.
    [Show full text]
  • New News About Linux on Z.PRZ
    IBM IT Education Services L02 Klaus Goebel [email protected] New News about Linux on zSeries zSeries Expo November 10 - 14, 2003 | Hilton, Las Vegas, NV © 2003 IBM Corporation 1 Linux on zSeries Linux on zSeries Trademarks The following are trademarks of the International Business Machines Corporation in the United States and/or other countries. DB2* IBM logo* Tivoli Storage Manager DB2 Connect IMS TotalStorage DB2 Universal Database iSeries VSE/ESA DRDA* MQSeries WebSphere* e-business logo* pSeries xSeries HiperSockets S/390* z/OS IBM* SecureWay* z/VM IBM eServer Tivoli* zSeries * Registered trademarks of IBM Corporation The following are trademarks or registered trademarks of other companies. Intel is a trademark of the Intel Corporation in the United States and other countries. Java and all Java-related trademarks and logos are trademarks or registered trademarks of Sun Microsystems, Inc., in the United States and other countries. Lotus, Notes, and Domino are trademarks or registered trademarks of Lotus Development Corporation. Linux is a registered trademark of Linus Torvalds. Microsoft, Windows and Windows NT are registered trademarks of Microsoft Corporation. SET and Secure Electronic Transaction are trademarks owned by SET Secure Electronic Transaction LLC. UNIX is a registered trademark of The Open Group in the United States and other countries. * All other products may be trademarks or registered trademarks of their respective companies. Notes: Performance is in Internal Throughput Rate (ITR) ratio based on measurements and projections using standard IBM benchmarks in a controlled environment. The actual throughput that any user will experience will vary depending upon considerations such as the amount of multiprogramming in the user's job stream, the I/O configuration, the storage configuration, and the workload processed.
    [Show full text]
  • How to Utilize Open Source Software in the Commercial Environment
    Janne Hemilä HOW TO UTILIZE OPEN SOURCE SOFTWARE IN THE COMMERCIAL ENVIRONMENT Aalto School of Science Instructor and supervisor: Professor Ilkka Kauranen HOW$TO$UTILIZE$OPEN$SOURCE$SOFTWARE$IN$THE$COMMERCIAL$ENVIRONMENT$ 2! Abstract AALTO UNIVERSITY ABSTRACT OF THE MASTER’S THESIS SCHOOL OF SCIENCE PO Box 12100, FI-00076 AALTO http://www.aalto.fi AUTHOR: Janne Hemilä TITLE: How to utilize open source software in the commercial environment SCHOOL: School of Science DEPARTMENT: Department of industrial engineering and management PROFESSORSHIP: Strategic management CODE: TU-91 SUPERVISOR: Professor Ilkka Kauranen INSTRUCTOR: Professor Ilkka Kauranen My experience working with open source software exposed a lack of comprehensive, easily graspable, introductory articles suitable for non-technical readers. The objective of this study is to provide the reader with a comprehensive understanding on how to utilize open source software in a commercial environment. Through a literature review this study identifies common patterns among open source projects and related companies. Patterns have been organized into four identified domains: legal, social, technological and business. Real life examples of the patterns are provided to assist understanding. In conclusion, this thesis argues that open source can be utilized to build successful commercial operations. Open source can be used to improve software development, software quality, to gain feedback, to expand the user base, to influence the direction of technological progress and to benefit from
    [Show full text]
  • La Dynamique Des Réseaux Coopératifs. L'exemple Des Logiciels
    La dynamique des r´eseauxcoop´eratifs.L'exemple des logiciels libres et du projet d'encyclop´edielibre et ouverte Wikip´edia. Benjamin Grassineau To cite this version: Benjamin Grassineau. La dynamique des r´eseauxcoop´eratifs.L'exemple des logiciels libres et du projet d'encyclop´edielibre et ouverte Wikip´edia..Sociologie. Universit´eParis Dauphine - Paris IX, 2009. Fran¸cais. <tel-00395335> HAL Id: tel-00395335 https://tel.archives-ouvertes.fr/tel-00395335 Submitted on 15 Jun 2009 HAL is a multi-disciplinary open access L'archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destin´eeau d´ep^otet `ala diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publi´esou non, lished or not. The documents may come from ´emanant des ´etablissements d'enseignement et de teaching and research institutions in France or recherche fran¸caisou ´etrangers,des laboratoires abroad, or from public or private research centers. publics ou priv´es. Université Paris Dauphine École Doctorale EDOSSOC Centre de Recherche CERSO N° Attribué par la bibliothèque __ __ __ __ __ __ __ __ __ __ La dynamique des réseaux coopératifs L'exemple des logiciels libres et du projet d'encyclopédie libre et ouverte Wikipédia Thèse Pour l'obtention du titre de Docteur en Sociologie (Arrêté du 7 août 2006) Présentée et soutenue publiquement par Benjamin GRASSINEAU Jury Directeur de thèse : Monsieur Michel LIU Professeur Émérite à l'Université Paris Dauphine. Rapporteurs : Monsieur Jacques PRADES Maître de Conférence à l'Université Toulouse II Le Mirail. Monsieur Jan SPURK Professeur à l'Université Paris V Descartes.
    [Show full text]