A Smart Way to Manage Packages in Yocto Project

Size: px
Start display at page:

Download "A Smart Way to Manage Packages in Yocto Project"

Transcription

1 A Smart Way to Manage Packages in Yocto Project Mar 11th, 2016 Fan Xin, Fujitsu Computer Technologies Limited 1378ka02

2 whoami Fan Xin, Fujitsu Computer Technologies Ltd. Embedded Linux Developer In-House Embedded Linux Distributor of Fujitsu Our Distribution includes LTSI Kernel and is built with Yocto Project Our Distribution is used for IVI, Server System Controller, Storage System, Network Equipment, Printer, etc. IVI:In-Vehicle Infotainment 1

3 Fujitsu s contribution for Yocto Project meta-openembedded.git top contributors by employer ( to ) None 625 (46.1%) Wind River 309 (22.8%) Fujitsu 160 (11.8%) Intel 82 (6.0%) Mentor Graphics 34 (2.5%) O.S. Systems 24 (1.8%) National Instruments 19 (1.4%) MontaVista 16 (1.2%) OpenDreambox 12 (0.9%) Freescale 9 (0.7%) Linaro 8 (0.6%) ENEA AB 5 (0.4%) Leica 5 (0.4%) Aker Security Solutions 4 (0.3%) BMW 3 (0.2%) 2

4 Agenda Package Manager Comparison Package Management Problem Analysis in Yocto Project Introduction of Smart Package Manager Fujitsu s Contribution and Next Step 3

5 Package Manager Comparison 4

6 Package Manager Package Manager A collection of software tools that automates the process of installing, upgrading, configuring, and removing computer programs Deals with packages, distributions of software and data in archive files Maintain a database of software dependencies and package information Common Package Management System rpm, deb, ipkg, opkg base of package manager Common Package Managers Advanced Packaging Tool (APT) Yellowdog Updater Modified (YUM) Dandified Yum (DNF) 5

7 Advanced Packaging Tool (APT) APT ( Advanced Packaging Tool ) The Advanced Package Tool, or APT, is a free software user interface that works with core libraries to handle the installation and removal of software Used on Debian Linux distribution and its variants. Depends on deb package format Works with repositories, which are collections of packages, 6

8 Yellowdog Updater Modified (YUM) A package manager for automatic install, updates, uninstall package and dependency management. Originally developed to manage Red Hat Linux systems at Duke University's Physics department Used on RPM-based distributions, such as RedHat Yum depends on RPM Works with repositories, which are collections of packages, 7

9 Dandified Yum (DNF) Next generation version of the Yellowdog Updater Modified (yum) Using RPM, libsolv and hawkey libraries Introduced in Fedora 18 and become the default package manager for Fedora since version

10 Comparison of Package Managers Items Apt Yum DNF Latest Version Support Package Format.deb.rpm (apt-rpm) Distribution Debian Ubuntu RHEL CentOS Fedora OpenSUSE Fedora (Since version 22) License GNU GPL GPL v2 GPL v2 Website yum.baseurl.org dnf.baseurl.org

11 Comparison of Package Management Systems Items rpm deb opkg ipkg Check Package License Information File format Used by OpenEmbedded.rpm.deb.udeb Develop Status Active Active.ipk Active ( fork from ipkg ).ipk Discontinued License GPL GPL GPL v2 GPL v2 Website g git.yoctoprojec t.org/cgit/cgit.c gi/opkg/ s.org/moin/moi n.cgi/ipkg

12 Present Situation in Yocto Project Recipe files Build Build Build Build Packages Deploy Deploy Deploy Deploy Embedded Devices Flexibility Flex to select package before building Efficiency Create root file system, binary packages (rpm, ipkg, opkg) Optimization Easy to optimize for each distribution 11

13 Package Management Problem Analysis in Yocto Project 12

14 Problems Yocto creates a custom one for you The Advantage of custom embedded Linux The value of custom The balance between custom and minimize fragmentation 13

15 Problems Can not know what package is built due to the packages dependence. Have to rebuild the root file system every time when have some updates or modifications for some packages. Produce fragmentation Flexibility : Prefer graphical interface and detailed info Efficiency : Inefficiency, in some degree Optimization : Produce fragmentation 14

16 Image Build Deploy Build Deploy Build Deploy Build Deploy Build and Deploy for Each Targets These cars use same architecture and own individual build directory. 15

17 Image Build Deploy Build Deploy Build Deploy Build Deploy Build and Deploy for Each Targets 16

18 Image Build Deploy Build Deploy Build Deploy Build Deploy Build and Deploy for Each Targets Using Package Manager Build Deploy Build Once, Deploy Anywhere Simulation Full build time: 5~6 hours Deploy time: 1 hour Target Type: 50 Before: Cost = (5+1)*50=300 hours After: Cost = 5+1*50= 55 hours 17

19 Cost Comparison Build glibc package and deploy for car A Build glibc package and deploy for car B Build glibc package and deploy for car C Build glibc package and deploy for car A, B, C Feb 17 th, glibc publics critical security flaw. This vulnerability should be fixed in all targets immediately. For each kind of target, the glibc package has to been builded and deployed. Simulation Cost = ( Build Time + Deploy Time ) * Device Number = ( ) * 50 = 60 hours Cost = Build Time + Deploy Time * Device Number = * 50 = 11 hours Glibc Build Time: 1 hours Deploy Time: 0.2 hours Device Number: 50 kinds 18

20 What we should do Rebuild the root file system and redeploy them into production every time? Use the package manager to manage individual package efficiently? 19

21 Introduction of Smart Package Manager 20

22 Smart Package Manager Overview Aim to create smart and portable algorithms for solving adequately the problem of managing software upgrading and installation. Homepage: smartpm.github.io/smart License: GPL v2 Works with APT, APT-RPM, YUM, etc. Started on May 4 th, 2004, and version 1.0 was released on Aug 14 th, 2008 The latest version is 1.5 Merged into Yocto Project 1.4 (dylan), but unavailable in Yocto Project so far

23 Features Modular Support PRM, DPKG, and Slackware package management systems Smart Transactions Thousands of packages and relations are being considered Not only find a solution, but find the best solution (install, remove, upgrade, etc). Channels Many different channel types are supported Priority Handing Hand integration of multiple channels and setup preferred package versions Downloading Mechanism Fast parallel downloading mechanism, multiple connections 22

24 Smart Usage Smart package manager uses the following command to manage packages. Usage: smart command Action commands update, install, reinstall, upgrade, remove, check, fix, download, clean Query commands search, query, newer, info, stats Setup commands config, channel, priority, mirror flag Run smart command help for more information 23

25 Project Statistics Statistics about Commit change by year month Commit change by year, author Commit change by author File change by year Tag Name Date Commits Copyright FUJITSU COMPUTER TECHNOLOGIES LIMITED

26 Problems Smart still has some problems needed to solve before using it. Problem #1 There is bug in the rpm and smart command in default toolchain. Send the patch to community to fix it Problem #2 Need to configure the environment before using smart, or it can not use normally Prepare the script to configure environment automatically 25

27 Problems Problem #3 Smart Package Manager uses GTK/Qt4 as the graphical framework, but GTK/Qt4 is disabled in toolchain Develop Text GUI with python to make smart user-friendly and easy to use 26

28 Smart Package Manager Usage Install toolchain./libc-x86-meta-toolchain-i586-toolchain.sh Initial environment. /opt/environment-setup-core2-64-linux Install package into root file system Command line interface Graphical interface We use this script to finish the environment initialization, such as environment variable setting smart --data-dir =${rootfs-dir}/var/lib/smart install smart --data-dir=${rootfs-dir}/var/lib/smart --interface=tgui 27

29 Select install type 28

30 Select packages 29

31 Search package 30

32 Select dbg packages 31

33 Installing 32

34 Created Root Filesystem 33

35 Demo Smart Package Manager 34

36 Conclusion and Next Step 35

37 License Management Packages Package Manager Recipe files Build SRPM packages Embedded Devices SPDX files Accompanied with the package files, SRPM packages and SPDX files are created to manage license information SRPM Packages are classified by license type 36

38 Community Activity Send our patches to community, but not accepted In order to solve the problem, need to active the community again 37

39 Conclusion Summary the current package managers and problems Compare the package managers Introduce package management problem in Yocto Project The package manager is necessary Contribution to Ycoto Project Introduce the Smart Package Manager Fix the bugs and make Smart Package Manager easy to use License management Not stick to Smart Package Manager, but want to solve package management problem 38

40 Next Step Continue to make contribution for Yocto Project The interface of Smart is not so smart currently. Fujitsu will improve the interface to make it easier to use. Remote access over a network connection like APT, YUM and DNF Add the option to create image automatically 39

41 Copyright 2015 FUJITSU COMPUTER TECHNOLOGIES LIMITED

Acronis Backup & Recovery 10 Server for Linux. Installation Guide

Acronis Backup & Recovery 10 Server for Linux. Installation Guide Acronis Backup & Recovery 10 Server for Linux Installation Guide Table of contents 1 Before installation...3 1.1 Acronis Backup & Recovery 10 components... 3 1.1.1 Agent for Linux... 3 1.1.2 Management

More information

Acronis Backup & Recovery 10 Server for Linux. Update 5. Installation Guide

Acronis Backup & Recovery 10 Server for Linux. Update 5. Installation Guide Acronis Backup & Recovery 10 Server for Linux Update 5 Installation Guide Table of contents 1 Before installation...3 1.1 Acronis Backup & Recovery 10 components... 3 1.1.1 Agent for Linux... 3 1.1.2 Management

More information

Acronis Backup & Recovery 10 Server for Linux. Quick Start Guide

Acronis Backup & Recovery 10 Server for Linux. Quick Start Guide Acronis Backup & Recovery 10 Server for Linux Quick Start Guide Table of contents 1 Supported operating systems...3 2 What you need to get started...3 3 Installing and starting to use the product...3 3.1

More information

Developing Embedded Linux Devices Using the Yocto Project

Developing Embedded Linux Devices Using the Yocto Project It s not an embedded Linux distribution It creates a custom one for you. Developing Embedded Linux Devices Using the Yocto Project David Stewart Intel Corporation October, 2011 Agenda What is the Yocto

More information

Dell System Update Version 1.0 Preview Guide

Dell System Update Version 1.0 Preview Guide Dell System Update Version 1.0 Preview Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your computer. CAUTION: A CAUTION indicates either

More information

Acronis Backup & Recovery 10 Server for Linux. Installation Guide

Acronis Backup & Recovery 10 Server for Linux. Installation Guide Acronis Backup & Recovery 10 Server for Linux Installation Guide Table of Contents 1. Installation of Acronis Backup & Recovery 10... 3 1.1. Acronis Backup & Recovery 10 components... 3 1.1.1. Agent for

More information

NETWORK OPERATING SYSTEMS. By: Waqas Ahmed (C.E.O at Treesol)

NETWORK OPERATING SYSTEMS. By: Waqas Ahmed (C.E.O at Treesol) NETWORK OPERATING SYSTEMS By: Waqas Ahmed (C.E.O at Treesol) Locating, Finding Installing, Upgrading and Deleting Packages SEARCHING To find a program commands where they are: [root@tecmint ~]# which ls

More information

IBM Endpoint Manager Version 9.1. Patch Management for Red Hat Enterprise Linux User's Guide

IBM Endpoint Manager Version 9.1. Patch Management for Red Hat Enterprise Linux User's Guide IBM Endpoint Manager Version 9.1 Patch Management for Red Hat Enterprise Linux User's Guide IBM Endpoint Manager Version 9.1 Patch Management for Red Hat Enterprise Linux User's Guide Note Before using

More information

Installation & Upgrade Guide

Installation & Upgrade Guide Installation & Upgrade Guide Document Release: September 2012 SnapLogic, Inc. 71 East Third Avenue San Mateo, California 94401 U.S.A. www.snaplogic.com Copyright Information 2011-2012 SnapLogic, Inc. All

More information

Acronis Backup & Recovery 10 Server for Linux. Installation Guide

Acronis Backup & Recovery 10 Server for Linux. Installation Guide Acronis Backup & Recovery 10 Server for Linux Installation Guide Table of Contents 1. Installation of Acronis Backup & Recovery 10... 3 1.1. Acronis Backup & Recovery 10 components... 3 1.1.1. Agent for

More information

How To Run A Password Manager On A 32 Bit Computer (For 64 Bit) On A 64 Bit Computer With A Password Logger (For 32 Bit) (For Linux) ( For 64 Bit (Foramd64) (Amd64 (For Pc

How To Run A Password Manager On A 32 Bit Computer (For 64 Bit) On A 64 Bit Computer With A Password Logger (For 32 Bit) (For Linux) ( For 64 Bit (Foramd64) (Amd64 (For Pc SafeNet Authentication Client (Linux) Administrator s Guide Version 8.1 Revision A Copyright 2011, SafeNet, Inc. All rights reserved. All attempts have been made to make the information in this document

More information

Of Penguins and Wildebeest. Anthony Rodgers VA7IRL

Of Penguins and Wildebeest. Anthony Rodgers VA7IRL Of Penguins and Wildebeest Anthony Rodgers VA7IRL The Penguin Linux was created by a Swedish-speaking Finn called Linus Torvalds Version 0.01 was released in September 1991 We are now on version 2.6 It

More information

Linux Distributions. What they are, how they work, which one to choose. avix@br.ibm.com> +55-11-2132-2327. Avi Alkalay <avix@br.ibm.

Linux Distributions. What they are, how they work, which one to choose. avix@br.ibm.com> +55-11-2132-2327. Avi Alkalay <avix@br.ibm. Linux Distributions What they are, how they work, which one to choose Avi Alkalay +55-11-2132-2327 Linux, Open Standards Consultant IBM Corporation Before You Start...

More information

How Bigtop Leveraged Docker for Build Automation and One-Click Hadoop Provisioning

How Bigtop Leveraged Docker for Build Automation and One-Click Hadoop Provisioning How Bigtop Leveraged Docker for Build Automation and One-Click Hadoop Provisioning Evans Ye Apache Big Data 2015 Budapest Who am I Apache Bigtop PMC member Software Engineer at Trend Micro Develop Big

More information

Application Management A CFEngine Special Topics Handbook

Application Management A CFEngine Special Topics Handbook Application Management A CFEngine Special Topics Handbook CFEngine AS CFEngine is able to install, update and uninstall services and applications across all managed nodes in a platform-independent manner.

More information

Developing Embedded Linux Devices Using the Yocto Project

Developing Embedded Linux Devices Using the Yocto Project It s not an embedded Linux distribu2on It creates a custom one for you. Developing Embedded Linux Devices Using the Yocto Project Mark Hatle mark.hatle@windriver.com Wind River Systems September, 2012

More information

Week Overview. Installing Linux Linux on your Desktop Virtualization Basic Linux system administration

Week Overview. Installing Linux Linux on your Desktop Virtualization Basic Linux system administration ULI101 Week 06b Week Overview Installing Linux Linux on your Desktop Virtualization Basic Linux system administration Installing Linux Standalone installation Linux is the only OS on the computer Any existing

More information

How to Build an RPM OVERVIEW UNDERSTANDING THE PROCESS OF BUILDING RPMS. Author: Chris Negus Editor: Allison Pranger 09/16/2011

How to Build an RPM OVERVIEW UNDERSTANDING THE PROCESS OF BUILDING RPMS. Author: Chris Negus Editor: Allison Pranger 09/16/2011 How to Build an RPM Author: Chris Negus Editor: Allison Pranger 09/16/2011 OVERVIEW You have created some software that you want to install on Red Hat Enterprise Linux systems. Now that it is done, the

More information

nitrobit update server

nitrobit update server nitrobit update server Administrator's Guide 2011 analytiq consulting gmbh. All rights reserved. Page 2 nitrobit update server Administrator's Guide Content I. Introduction... 4 Overview... 4 Components

More information

Dynamic Kernel Module Support. Matt Domsch, Software Architect Dell, Inc.

Dynamic Kernel Module Support. Matt Domsch, Software Architect Dell, Inc. Dynamic Kernel Module Support Matt Domsch, Software Architect Dell, Inc. Product Timelines v3 v4 v5 Which one(s) are your customers using today? Scheduled Updates / Service Pack 2 Driver Management Challenges

More information

MontaVista Linux 6. Streamlining the Embedded Linux Development Process

MontaVista Linux 6. Streamlining the Embedded Linux Development Process MontaVista Linux 6 WHITE PAPER Streamlining the Embedded Linux Development Process Using MontaVista Linux 6 to get the most out of open source software and improve development efficiencies ABSTRACT: The

More information

How To Install Acronis Backup & Recovery 11.5 On A Linux Computer

How To Install Acronis Backup & Recovery 11.5 On A Linux Computer Acronis Backup & Recovery 11.5 Server for Linux Update 2 Installation Guide Copyright Statement Copyright Acronis International GmbH, 2002-2013. All rights reserved. Acronis and Acronis Secure Zone are

More information

Package Management. Michael Tsai 2016/4/27

Package Management. Michael Tsai 2016/4/27 Package Management Michael Tsai 2016/4/27 PXEBoot Diskless host operation Boot ROM on your network interface card uses DHCP to get the initial network setting Including the location of the boot file at

More information

Kaspersky Endpoint Security 8 for Linux INSTALLATION GUIDE

Kaspersky Endpoint Security 8 for Linux INSTALLATION GUIDE Kaspersky Endpoint Security 8 for Linux INSTALLATION GUIDE A P P L I C A T I O N V E R S I O N : 8. 0 Dear User! Thank you for choosing our product. We hope that this documentation will help you in your

More information

How to Install and Run Tibia on Linux Using Wine without Windows Contents

How to Install and Run Tibia on Linux Using Wine without Windows Contents How to Install and Run Tibia on Linux Using Wine without Windows Contents 1 Disclaimer 2 Overview/Background Information 3 Pre-requirements 4 Installing Wine 4.1 Get to know the environment 4.2 The easiest

More information

Eddy Integrated Development Environment, LemonIDE for Embedded Software System Development

Eddy Integrated Development Environment, LemonIDE for Embedded Software System Development Introduction to -based solution for embedded software development Section 1 Eddy Real-Time, Lemonix Section 2 Eddy Integrated Development Environment, LemonIDE Section 3 Eddy Utility Programs Eddy Integrated

More information

Understanding RPM Package Management Tutorial

Understanding RPM Package Management Tutorial Understanding RPM Package Management Tutorial Author Name: Chris Negus 08/31/2012 OVERVIEW Red Hat Enterprise Linux, Fedora, and many other Linux distributions group their software together in packages

More information

VMware Tools Installation Guide For Operating System Specific Packages

VMware Tools Installation Guide For Operating System Specific Packages VMware Tools Installation Guide For Operating System Specific Packages ESXi 5.0 or later VMware Tools This document supports the version of each product listed and supports all subsequent versions until

More information

CS197U: A Hands on Introduction to Unix

CS197U: A Hands on Introduction to Unix CS197U: A Hands on Introduction to Unix Lecture 4: My First Linux System J.D. DeVaughn-Brown University of Massachusetts Amherst Department of Computer Science jddevaughn@cs.umass.edu 1 Reminders After

More information

Net/FSE Installation Guide v1.0.1, 1/21/2008

Net/FSE Installation Guide v1.0.1, 1/21/2008 1 Net/FSE Installation Guide v1.0.1, 1/21/2008 About This Gu i de This guide walks you through the installation of Net/FSE, the network forensic search engine. All support questions not answered in this

More information

McAfee Firewall for Linux 8.0.0

McAfee Firewall for Linux 8.0.0 Release Notes McAfee Firewall for Linux 8.0.0 Contents About this release Features Installation Known issues Find product documentation About this release This document contains important information about

More information

Parallels Virtuozzo Containers 4.7 for Linux Readme

Parallels Virtuozzo Containers 4.7 for Linux Readme Parallels Virtuozzo Containers 4.7 for Linux Readme This document provides the first-priority information about Parallels Virtuozzo Containers 4.7 for Linux and supplements the included documentation.

More information

Software Deployment and Configuration

Software Deployment and Configuration www.dcs.ed.ac.uk/~paul/publications/deployment.pdf Software Deployment and Configuration Paul Anderson Division of Informatics University of Edinburgh

More information

Backing Up Your System With rsnapshot

Backing Up Your System With rsnapshot Roberto C. Sánchez Dayton Linux Users Group InstallFest Saturday, March 1, 2014 Overview About the Presenter About and Alternatives Installing Options in Configuring Other Operating Systems (e.g., Windows,

More information

Embedded Linux development with Buildroot training 3-day session

Embedded Linux development with Buildroot training 3-day session Embedded Linux development with training 3-day session Title Overview Duration Trainer Language Audience Embedded Linux development with training Introduction to Managing and building the configuration

More information

3.14. 3.14 Training on Linux System Administration, LPI Certification Level 1

3.14. 3.14 Training on Linux System Administration, LPI Certification Level 1 165 3.14 Training on Linux System Administration, LPI Certification Level 1 Name of the Tool: Source: Usage: Description: GIZ This training has been designed for IT experts and institutions desired to

More information

Unbreakable Linux Network An Overview

Unbreakable Linux Network An Overview An Oracle White Paper September 2011 Unbreakable Linux Network An Overview Introduction... 1 The Update Agent (yum)... 2 Channels Descriptions and Usage... 2 Switching from Red Hat Network (RHN) to ULN...

More information

Server Monitoring. AppDynamics Pro Documentation. Version 4.1.7. Page 1

Server Monitoring. AppDynamics Pro Documentation. Version 4.1.7. Page 1 Server Monitoring AppDynamics Pro Documentation Version 4.1.7 Page 1 Server Monitoring......................................................... 4 Standalone Machine Agent Requirements and Supported Environments............

More information

RED HAT DEVELOPER TOOLSET Build, Run, & Analyze Applications On Multiple Versions of Red Hat Enterprise Linux

RED HAT DEVELOPER TOOLSET Build, Run, & Analyze Applications On Multiple Versions of Red Hat Enterprise Linux RED HAT DEVELOPER TOOLSET Build, Run, & Analyze Applications On Multiple Versions of Red Hat Enterprise Linux Dr. Matt Newsome Senior Engineering Manager, Tools RED HAT ENTERPRISE LINUX RED HAT DEVELOPER

More information

Copyright 1999-2011 by Parallels Holdings, Ltd. All rights reserved.

Copyright 1999-2011 by Parallels Holdings, Ltd. All rights reserved. Parallels Virtuozzo Containers 4.0 for Linux Readme Copyright 1999-2011 by Parallels Holdings, Ltd. All rights reserved. This document provides the first-priority information on Parallels Virtuozzo Containers

More information

SECURE YOUR NETWORK WITH FIREWALL BUILDER

SECURE YOUR NETWORK WITH FIREWALL BUILDER SECURE YOUR NETWORK WITH FIREWALL BUILDER firewall isolates a trusted, secure internal network from another network like the Internet, which is not regarded as either trusted or secure. Firewall Builder

More information

Continuous security audit automation with Spacewalk, Puppet, Mcollective and SCAP

Continuous security audit automation with Spacewalk, Puppet, Mcollective and SCAP Continuous security audit automation with Spacewalk, Puppet, Mcollective and SCAP Vasileios A. Baousis (Ph.D) Network Applications Team Slide 1 Agenda Introduction Background - SCAP - Puppet &Mcollective

More information

Objectives 102.4 & 102.5 Linux Package Handling by Christine Bresnahan: Christine-Bresnahan.com

Objectives 102.4 & 102.5 Linux Package Handling by Christine Bresnahan: Christine-Bresnahan.com Objectives 102.4 & 102.5 Linux Package Handling by Christine Bresnahan: Christine-Bresnahan.com What is a package? A package is typically an archive (a single file containing many files) along with additional

More information

An Oracle Technical Article October 2014. Certification with Oracle Linux 5

An Oracle Technical Article October 2014. Certification with Oracle Linux 5 An Oracle Technical Article October 2014 Certification with Oracle Linux 5 Introduction... 1 Comparing Oracle Linux 5 and Red Hat Enterprise Linux (RHEL) 5.. 2 Checking the /etc/ File... 2 Checking for

More information

OpenGeo Suite for Linux Release 3.0

OpenGeo Suite for Linux Release 3.0 OpenGeo Suite for Linux Release 3.0 OpenGeo October 02, 2012 Contents 1 Installing OpenGeo Suite on Ubuntu i 1.1 Installing OpenGeo Suite Enterprise Edition............................... ii 1.2 Upgrading.................................................

More information

Zend Server 4.0 Beta 2 Release Announcement What s new in Zend Server 4.0 Beta 2 Updates and Improvements Resolved Issues Installation Issues

Zend Server 4.0 Beta 2 Release Announcement What s new in Zend Server 4.0 Beta 2 Updates and Improvements Resolved Issues Installation Issues Zend Server 4.0 Beta 2 Release Announcement Thank you for your participation in the Zend Server 4.0 beta program. Your involvement will help us ensure we best address your needs and deliver even higher

More information

Yocto Project Eclipse plug-in and Developer Tools Hands-on Lab

Yocto Project Eclipse plug-in and Developer Tools Hands-on Lab Yocto Project Eclipse plug-in and Developer Tools Hands-on Lab Yocto Project Developer Day San Francisco, 2013 Jessica Zhang Introduction Welcome to the Yocto Project Eclipse plug-in

More information

Setting up VMware Server v1 for 2X VirtualDesktopServer Manual

Setting up VMware Server v1 for 2X VirtualDesktopServer Manual Setting up VMware Server v1 for 2X VirtualDesktopServer Manual URL: www.2x.com E-mail: info@2x.com Information in this document is subject to change without notice. Companies, names, and data used in examples

More information

Installation Guide. McAfee VirusScan Enterprise for Linux 1.9.0 Software

Installation Guide. McAfee VirusScan Enterprise for Linux 1.9.0 Software Installation Guide McAfee VirusScan Enterprise for Linux 1.9.0 Software COPYRIGHT Copyright 2013 McAfee, Inc. Do not copy without permission. TRADEMARK ATTRIBUTIONS McAfee, the McAfee logo, McAfee Active

More information

The Red Hat Enterprise Linux advantages over Oracle Linux

The Red Hat Enterprise Linux advantages over Oracle Linux The Red Hat Enterprise Linux advantages over Oracle Linux 1 RED HAT CONTINUES TO LEAD THE LINUX MARKET WORLDWIDE LINUX SERVER OPERATING ENVIRONMENT NEW LICENSE PAID SHIPMENTS/SUBSCRIPTIONS AND NONPAID

More information

An Oracle Technical Article November 2015. Certification with Oracle Linux 6

An Oracle Technical Article November 2015. Certification with Oracle Linux 6 An Oracle Technical Article November 2015 Certification with Oracle Linux 6 Oracle Technical Article Certification with Oracle Linux 6 Introduction... 1 Comparing Oracle Linux 6 and Red Hat Enterprise

More information

Tivoli Endpoint Manager for Remote Control Version 8 Release 2. User s Guide

Tivoli Endpoint Manager for Remote Control Version 8 Release 2. User s Guide Tivoli Endpoint Manager for Remote Control Version 8 Release 2 User s Guide Tivoli Endpoint Manager for Remote Control Version 8 Release 2 User s Guide Note Before using this information and the product

More information

Partek Flow Installation Guide

Partek Flow Installation Guide Partek Flow Installation Guide Partek Flow is a web based application for genomic data analysis and visualization, which can be installed on a desktop computer, compute cluster or cloud. Users can access

More information

Site Configuration SETUP GUIDE. Windows Hosts Single Workstation Installation. May08. May 08

Site Configuration SETUP GUIDE. Windows Hosts Single Workstation Installation. May08. May 08 Site Configuration SETUP GUIDE Windows Hosts Single Workstation Installation May08 May 08 Copyright 2008 Wind River Systems, Inc. All rights reserved. No part of this publication may be reproduced or transmitted

More information

Desktop Central Managing Windows Computers in WAN

Desktop Central Managing Windows Computers in WAN Overview ManageEngine Desktop Central is Web-Based windows desktop administration software that helps administrators to effectively manage the desktops from a central point. It provides Software Deployment,

More information

Kaspersky Anti-Virus 8.0 for Linux File Server Installation Guide

Kaspersky Anti-Virus 8.0 for Linux File Server Installation Guide Kaspersky Anti-Virus 8.0 for Linux File Server Installation Guide A P P L I C A T I O N V E R S I O N : 8. 0 M P 2 C F 2 Dear User! Thank you for choosing our product. We hope that this documentation will

More information

Netop Remote Control for Linux Installation Guide Version 12.22

Netop Remote Control for Linux Installation Guide Version 12.22 Netop Remote Control for Linux Installation Guide Version 12.22 Copyright 1981-2016 Netop Business Solutions A/S. All Rights Reserved. Portions used under license from third parties. Please send any comments

More information

PHP in RPM distribution

PHP in RPM distribution PHP in RPM distribution Why things get better Presented by Remi Collet Senior Software Engineer, Red Hat Inc. License Licensed under Creative Commons Attribution Share Alike CC-BY-SA Today's Topics 1.

More information

What s New in Propalms VPN 3.5?

What s New in Propalms VPN 3.5? What s New in Propalms VPN 3.5? Contents Improved Management Console Interface... 2 Inline Help on Management Console... 2 Graphical Dashboard on Management Console... 2 Multiple Authentication Server

More information

WebApp S/MIME Manual. Release 7.2.1. Zarafa BV

WebApp S/MIME Manual. Release 7.2.1. Zarafa BV WebApp S/MIME Manual Release 7.2.1 Zarafa BV January 06, 2016 Contents 1 Introduction 2 2 Installation 3 2.1 RPM based distributions............................................. 3 2.2 DEB based distributions.............................................

More information

AMD Catalyst Installer Notes for Linux

AMD Catalyst Installer Notes for Linux AMD Catalyst Installer Notes for Linux The AMD Catalyst installer for Linux makes installing the AMD Catalyst proprietary driver a much simpler and user friendly experience. The AMD Catalyst installer

More information

Copyright 2014, SafeNet, Inc. All rights reserved. http://www.safenet-inc.com

Copyright 2014, SafeNet, Inc. All rights reserved. http://www.safenet-inc.com Ve Version 3.4 Copyright 2014, SafeNet, Inc. All rights reserved. http://www.safenet-inc.com We have attempted to make these documents complete, accurate, and useful, but we cannot guarantee them to be

More information

IBM Endpoint Manager Version 9.2. Patch Management for SUSE Linux Enterprise User's Guide

IBM Endpoint Manager Version 9.2. Patch Management for SUSE Linux Enterprise User's Guide IBM Endpoint Manager Version 9.2 Patch Management for SUSE Linux Enterprise User's Guide IBM Endpoint Manager Version 9.2 Patch Management for SUSE Linux Enterprise User's Guide Note Before using this

More information

An Oracle Technical Article March 2015. Certification with Oracle Linux 7

An Oracle Technical Article March 2015. Certification with Oracle Linux 7 An Oracle Technical Article March 2015 Certification with Oracle Linux 7 Oracle Technical Article Certification with Oracle Linux 7 Introduction...1 Comparing Oracle Linux 7 and Red Hat Enterprise Linux

More information

NoMachine (free version) Installation Guide

NoMachine (free version) Installation Guide pproved by: NoMachine (free version) Installation Guide Page 1 of 10 pproved by: Table of Contents 1. NoMachine Installation Guide 3 1.1. Resources on the Web 3 1.2. Prerequisites 3 1.3. Compatibility

More information

DTC & DTC-Xen Running a VPS business with Xen Thomas Goirand, GPLHost CEO. Xen Summit Asia at Intel 2009

DTC & DTC-Xen Running a VPS business with Xen Thomas Goirand, GPLHost CEO. Xen Summit Asia at Intel 2009 , GPLHost CEO Xen Summit Asia at Intel 2009 Overview 1/ Global VPS hosting market & GPLHost 2/ Why an open source panel makes sense 3/ technical briefing 4/ Challenges to overcome Xen Summit Asia 2009

More information

Computer Science and Engineering Linux Cisco VPN Client Installation and Setup Guide

Computer Science and Engineering Linux Cisco VPN Client Installation and Setup Guide Computer Science and Engineering Linux Cisco VPN Client Installation and Setup Guide Contents Installation: Ubuntu Linux 7.10 Gusty Gibbon:... 2 Installation: Redhat Enterprise 5 and Fedora 8 Linux:...

More information

SIP-DECT Knowledge Base SIP-DECT System Update

SIP-DECT Knowledge Base SIP-DECT System Update SIP-DECT Knowledge Base SIP-DECT System Update MAI 2015 DEPL-2046 VERSION 1.6 KNOWLEDGE BASE TABLE OF CONTENT 1) Introduction... 2 2) Update (New Service Pack in the same Release)... 3 2.1 OMM HOSTED ON

More information

Release Notes for McAfee(R) VirusScan(R) Enterprise for Linux Version 1.9.0 Copyright (C) 2014 McAfee, Inc. All Rights Reserved.

Release Notes for McAfee(R) VirusScan(R) Enterprise for Linux Version 1.9.0 Copyright (C) 2014 McAfee, Inc. All Rights Reserved. Release Notes for McAfee(R) VirusScan(R) Enterprise for Linux Version 1.9.0 Copyright (C) 2014 McAfee, Inc. All Rights Reserved. Release date: August 28, 2014 This build was developed and tested on: -

More information

Nessus Agents. October 2015

Nessus Agents. October 2015 Nessus Agents October 2015 Table of Contents Introduction... 3 What Are Nessus Agents?... 3 Scanning... 4 Results... 6 Conclusion... 6 About Tenable Network Security... 6 2 Introduction Today s changing

More information

The FOSSology Project Overview and Discussion. » The Open Compliance Program. ... By Bob Gobeille, Hewlett-Packard

The FOSSology Project Overview and Discussion. » The Open Compliance Program. ... By Bob Gobeille, Hewlett-Packard » The Open Compliance Program The FOSSology Project Overview and Discussion By Bob Gobeille, Hewlett-Packard A White Paper By The Linux Foundation FOSSology (http://fossologyorg) is an open source compliance

More information

Policy on Device Drivers for Procurement of Hardware for e-governance

Policy on Device Drivers for Procurement of Hardware for e-governance Policy on Device Drivers for Procurement of Hardware for e-governance (Draft for Public Review) Government of India Department of Information Technology Ministry of Communications and Information Technology

More information

How Linux distros became boring

How Linux distros became boring How Linux distros became boring...and Fedora's plan to put boring in its place Presented by Matthew Miller Fedora Project Leader Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)

More information

Acronis Monitoring Service

Acronis Monitoring Service Acronis Monitoring Service USER GUIDE Table of contents 1 About the Acronis Monitoring Service...4 2 Software Requirements...4 3 Understanding basic concepts...5 4 Getting started...7 4.1 Setting up website

More information

Systems Management Tools And Documentation Version 8.1 Installation Guide

Systems Management Tools And Documentation Version 8.1 Installation Guide Systems Management Tools And Documentation Version 8.1 Installation Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your computer. CAUTION:

More information

insync Installation Guide

insync Installation Guide insync Installation Guide 5.2 Private Cloud Druva Software June 21, 13 Copyright 2007-2013 Druva Inc. All Rights Reserved. Table of Contents Deploying insync Private Cloud... 4 Installing insync Private

More information

System administration basics

System administration basics Embedded Linux Training System administration basics Michael Opdenacker Thomas Petazzoni Free Electrons Copyright 2009, Free Electrons. Creative Commons BY SA 3.0 license Latest update: Dec 20, 2010, Document

More information

MySQL and Virtualization Guide

MySQL and Virtualization Guide MySQL and Virtualization Guide Abstract This is the MySQL and Virtualization extract from the MySQL Reference Manual. For legal information, see the Legal Notices. For help with using MySQL, please visit

More information

Using Red Hat Network Satellite Server to Manage Dell PowerEdge Servers

Using Red Hat Network Satellite Server to Manage Dell PowerEdge Servers Using Red Hat Network Satellite Server to Manage Dell PowerEdge Servers Enterprise Product Group (EPG) Dell White Paper By Todd Muirhead and Peter Lillian July 2004 Contents Executive Summary... 3 Introduction...

More information

TUT19344 Managing RH/CentOS with SUSE Manager

TUT19344 Managing RH/CentOS with SUSE Manager TUT19344 Managing RH/CentOS with SUSE Manager Don Vosburg Systems Engineer dvosburg@suse.com Gokhan Cetinkaya Systems Engineer gcetinkaya@suse.com Agenda SUSE Manager overview SUSE Manager and non-suse

More information

The Linux System. o Updating without touching the user's files and configurations.

The Linux System. o Updating without touching the user's files and configurations. Backups In Linux The Linux System Many Linux distros set up seperate "/home" and "/" (root) partitions. User configuration files are hidden with a "." (period) in the front of the name. Separate partitions

More information

Windows Template Creation Guide. How to build your own Windows VM templates for deployment in Cloudturk.

Windows Template Creation Guide. How to build your own Windows VM templates for deployment in Cloudturk. Windows Template Creation Guide How to build your own Windows VM templates for deployment in Cloudturk. TABLE OF CONTENTS 1. Preparing the Server... 2 2. Installing Windows... 3 3. Creating a Template...

More information

Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012

Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012 Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012 1 The person installing the VC is knowledgeable of the Linux file system

More information

FleSSR Project: Installing Eucalyptus Open Source Cloud Solution at Oxford e- Research Centre

FleSSR Project: Installing Eucalyptus Open Source Cloud Solution at Oxford e- Research Centre FleSSR Project: Installing Eucalyptus Open Source Cloud Solution at Oxford e- Research Centre Matteo Turilli, David Wallom Eucalyptus is available in two versions: open source and enterprise. Within this

More information

Best Practices for Deploying and Managing Linux with Red Hat Network

Best Practices for Deploying and Managing Linux with Red Hat Network Best Practices for Deploying and Managing Linux with Red Hat Network Abstract This technical whitepaper provides a best practices overview for companies deploying and managing their open source environment

More information

Ansible. Configuration management tool and ad hoc solution. Marcel Nijenhof <marceln@pion.xs4all.nl>

Ansible. Configuration management tool and ad hoc solution. Marcel Nijenhof <marceln@pion.xs4all.nl> Ansible Configuration management tool and ad hoc solution Marcel Nijenhof Index Introduction Installing & configuration Playbooks Variables Roles Ansible galaxy Configuration management

More information

Preparing Your Computer for LFS101x. July 11, 2014 A Linux Foundation Training Publication www.linuxfoundation.org

Preparing Your Computer for LFS101x. July 11, 2014 A Linux Foundation Training Publication www.linuxfoundation.org Preparing Your Computer for LFS101x July 11, 2014 A Linux Foundation Training Publication www.linuxfoundation.org This class is intended to be very hands-on: in order to learn about Linux you must use

More information

Parallels Server Bare Metal 5.0

Parallels Server Bare Metal 5.0 Parallels Server Bare Metal 5.0 Getting Started Guide Copyright 1999-2011 Parallels Holdings, Ltd. and its affiliates. All rights reserved. Parallels Holdings, Ltd. c/o Parallels International GMbH. Parallels

More information

Version 1.0. File System. Network Settings

Version 1.0. File System. Network Settings Factory Default Settings LAN 1 IP Address: 192.168.2.127 Login: root or guest ( telnet guest only) Password: root or guest ( telnet guest only) Serial Console Port: Baud rate: 115200 Data format: 8 Bits,

More information

More Efficient Virtualization Management: Templates

More Efficient Virtualization Management: Templates White Paper More Efficient Virtualization Management: Templates Learn more at www.swsoft.com/virtuozzo Published: November 2006 Revised: November 2006 Table of Contents Table of Contents... 2 OS, Middleware

More information

Basic Linux & Package Management. Original slides from GTFO Security

Basic Linux & Package Management. Original slides from GTFO Security Basic Linux & Package Management Original slides from GTFO Security outline Linux What it is? Commands Filesystem / Shell Package Management Services run on Linux mail dns web central authentication router

More information

Red Hat Enterprise Linux and management bundle for HP BladeSystem TM

Red Hat Enterprise Linux and management bundle for HP BladeSystem TM HP and Red Hat are announcing a specially priced software bundle for customers deploying Red Hat Linux on HP BladeSystem servers. HP will offer Red Hat Enterprise Linux and management bundle that combines

More information

Linux+ Guide to Linux Certification, Third Edition. Chapter 11 Compression, System Backup, and Software Installation

Linux+ Guide to Linux Certification, Third Edition. Chapter 11 Compression, System Backup, and Software Installation Linux+ Guide to Linux Certification, Third Edition Chapter 11 Compression, System Backup, and Software Installation Objectives Outline the features of common compression utilities Compress and decompress

More information

System management with Spacewalk

System management with Spacewalk Motivation Tips for managing Linux and http://www.stankowic-development.net, @stankowic_devel OpenRheinRuhr, 2014 whoami Motivation $ whoami VMware, UNIX, Linux administrator Messer Information Services

More information

Implementing Red Hat Enterprise Linux 6 on HP ProLiant servers

Implementing Red Hat Enterprise Linux 6 on HP ProLiant servers Technical white paper Implementing Red Hat Enterprise Linux 6 on HP ProLiant servers Table of contents Abstract... 2 Introduction to Red Hat Enterprise Linux 6... 2 New features... 2 Recommended ProLiant

More information

QuickStart Guide for Managing Computers. Version 9.2

QuickStart Guide for Managing Computers. Version 9.2 QuickStart Guide for Managing Computers Version 9.2 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF Software

More information

Installation Guide. Help Desk Manager. Version v12.1.0

Installation Guide. Help Desk Manager. Version v12.1.0 Installation Guide Help Desk Manager Version v12.1.0 Documentation published: March 12, 2014 Contents Introduction to Help Desk Manager 3 Help Desk Manager Key Features 3 Do-It-Yourself Installation and

More information

Parallels Cloud Server 6.0

Parallels Cloud Server 6.0 Parallels Cloud Server 6.0 Templates Management Guide Copyright 1999-2013 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Parallels IP Holdings GmbH. Vordergasse 59 CH8200 Schaffhausen

More information

Installation Guide. Copyright (c) 2015 The OpenNMS Group, Inc. OpenNMS 17.0.0-SNAPSHOT Last updated 2015-09-22 05:19:20 EDT

Installation Guide. Copyright (c) 2015 The OpenNMS Group, Inc. OpenNMS 17.0.0-SNAPSHOT Last updated 2015-09-22 05:19:20 EDT Installation Guide Copyright (c) 2015 The OpenNMS Group, Inc. OpenNMS 17.0.0-SNAPSHOT Last updated 2015-09-22 05:19:20 EDT Table of Contents 1. Basic Installation of OpenNMS... 1 1.1. Repositories for

More information