OPS235 PACKAGE MANAGEMENT

Slides:



Advertisements
Similar presentations
Module 8 Linux Installation Procedures 8.1 Pre-Installation Tasks 8.2 Installing and Configuring Linux 8.3 X Server 8.4 Post Installation Configuration.
Advertisements

Linux+ Guide to Linux Certification, Third Edition Chapter 11 Compression, System Backup, and Software Installation.
The “R” Statistical Package Naomi Altman Dept. of Statistics PSU.
Installing Linux softwares Sirak Kaewjamnong. 2 Software packets  When Linux developers create their software they typically bundle all the executable.
Chapter 11 Compression, System Backup, and Software Installation.
1 SAMBA. 2 Module - SAMBA ♦ Overview The presence of diverse machines in the network environment is natural. So their interoperability is critical. This.
Downloading & Installing Software Chapter 13. Maintaining the System Yum Pirut BitTiorrent Rpm Keeping Software Up To Date Up2date Red Hat Network Wget.
Module 10 – Linux Installations. Wikipedia: Red Hat Package Manager or RPM Package Manager (RPM) is a package management system. The name RPM variously.
Managing Software using RPM. ♦ Overview In Linux, Red Hat Package Manager referred as RPM is a tool used for managing software packages and its main function.
Linux Operations and Administration
Linux+ Guide to Linux Certification
1 TAC2000/ IP Telephony Lab Advanced Linux Administration Language: Offered in English Instructor: Dr. Quincy Wu (
SUSE Linux Enterprise Server Administration (Course 3037) Chapter 4 Manage Software for SUSE Linux Enterprise Server.
HDVC & Client Reflector server SIP Server User management HDVC & Client.
COSC 4750 Customizing and maintenance. Installing software Redhat/Fedora (and linux in general) has a package installer, called rpm Many programs will.
October, Scientific Linux INFN/Trieste B.Gobbo – Compass R.Gomezel - T.Macorini - L.Strizzolo INFN - Trieste.
Installing Windows Vista Lesson 2. Skills Matrix Technology SkillObjective DomainObjective # Performing a Clean Installation Set up Windows Vista as the.
Isecur1ty training center Presented by : Eng. Mohammad Khreesha.
Linux+ Guide to Linux Certification Chapter Thirteen Compression, System Back-Up, and Software Installation.
A Practical Guide to Fedora and Red Hat Enterprise Linux Unit 8: Installing Software in Linux Chapter 13: Downloading and Installing Software By Fred R.
1 What is a Kernel The kernel of any operating system is the core of all the system’s software. The only thing more fundamental than the kernel is the.
EMT 2390L Lecture 6 Dr. Reyes Reference: The Linux Command Line, W.E. Shotts.
CHAPTER 2. Overview 1. Pre-Installation Tasks 2. Installing and Configuring Linux 3. X Server 4. Post Installation Configuration and Tasks.
IT320 OPERATING SYSTEM CONCEPTS Unit 3: Welcome to Linux September 2012 Kaplan University 1.
General rules 1. Rule: 2. Rule: 3. Rule: 10. Rule: Ask questions ……………………. 11. Rule: I do not know your skill. If I tell you things you know, please stop.
VMWare Workstation Installation. Starting Vmware Workstation Go to the start menu and start the VMware Workstation program. *Note: The following instructions.
Linux Overview Why Linux ? Not-so-ancient history –Torvalds, Linus Torvalds, 002 the Helsinki University, as a student, low budget, work home –rapid and.
© 2006 ITT Educational Services Inc. Linux Operating System :: Unit 3 :: Slide 1 Downloading and Installing Software yum pirut Bit Torrent rmp.
Packets and Protocols Chapter Three Obtaining and Installing Wireshark.
Sys Admin Course Package Management Fourie Joubert.
Linux Operations and Administration
RedHat Package Management RPM and YUM in RedHat Enterprise, Fedora, Suse and Centos.
Software Installation and Copyrights Basic Computer Concepts Installation Basics  Installation Process  Copy files from distribution disks.
Microsoft ® Official Course Module 6 Managing Software Distribution and Deployment by Using Packages and Programs.
Active-HDL Server Farm Course 11. All materials updated on: September 30, 2004 Outline 1.Introduction 2.Advantages 3.Requirements 4.Installation 5.Architecture.
APACHE INSTALL Linux: CentOS 6.5 WHAT IS APACHE Apache is an open source application which is governed by the GNU licensing for use and alteration of.
SCI-BUS is supported by the FP7 Capacities Programme under contract nr RI CloudBroker usage Zoltán Farkas MTA SZTAKI LPDS
Agenda The Linux File System (chapter 4 in text) Linking Files Hard Links / Symbolic Links Disk Storage Checking for Disk Space (df / du) Archiving (Backing.
System Administration Application Management. ● A common task for a system administrator is the installation, updating and removal of software. Several.
IT320 Operating System Concepts
Exercise #1: Exploring Open-Source Operating Systems with Virtual Machines J. H. Wang Sep. 20, 2016.
Chapter 9 Managing Software
Backing Up Your System With rsnapshot
OPS235: Week 2 Installing Linux
CSC227: Operating Systems
Linux Command RTFM: rpm(8) & yum(8)
COP 4343 Unix System Administration
BIF713 Managing Disk Space.
Operating Systems Overview
Managing Software.
Exercise #1: Exploring Open-Source Operating Systems with Virtual Machines J. H. Wang Sep. 19, 2017.
Ubuntu Working in Terminal
Lecture 13 RPM and its advantages.
More Scripting & Chapter 11
RedHat Package Management
DHCP, DNS, Client Connection, Assignment 1 1.3
Linux File Systems Partitioning Mounting File Systems
OPS235: Week 1 Installing Linux ( Lab1: Investigations 1-4)
Exercise #1: Exploring Open-Source Operating Systems with Virtual Machines J. H. Wang Sep. 21, 2018.
OPS235: Lab 2 Virtual Machines – Part I
OPS235 MANAGING LVMs – PART I
IS3440 Linux Security Unit 8 Software Management
OPS235 Lab4: Investigations 5 – 9
OPS235: Lab 2 Virtual Machines – Part II
COP 4343 Unix System Administration
OPS235: Week 1 Installing Linux ( Lab1: Investigations 1-4)
UM D0RACE STATION Status Report Chunhui Han June 20, 2002
Perl in RPM-Land Dave Cross Magnum Solutions Ltd YAPC::Europe
Tools and Explanations for Mac Beginners
System Administration (LTAT )
Presentation transcript:

OPS235 PACKAGE MANAGEMENT

Lab 3 - Topics Lab Time Package Management Purpose Install / Remove Packages Comparison of yum & rpm

Package Management Obviously, managing disk space or creating virtual machines is not the only job a system administrator performs. It is a necessary job for Unix, Linux system administrators to perform other routine tasks such as adding/removing software as well as adding/removing user accounts.

Package Management You will learn various methods to install software in this course: yum rpm Download zipped tarball and compile (in future lab) So far, you have used yum to install packages and to update packages. Yum is a very useful tool, but it is important to understand each type of install method and their associated strengths / limitations.

Package Management rpm (Redhat Package Manager) Tool to install, remove, and generate information regarding software. We can already used rpm with query-mode to obtain information. rpm command can also be used in select-mode (i.e. without -q (query) option. For example: rpm -i packagefilename (install) rpm -e package_name (remove) You will be learning to install software (rpm files) contained in your CENTOS FULL INSTALL DVD. rpm command is useful for queries, but difficult to install manually due to dependency issues.

Package Management yum (Yellowdog Update Modified) Yellowdog was a MAC-based Linux distribution. Created a neat command (using rpm command) to check for dependencies first, then downloading and installing application. The term for a program to use another program is called a “Wrapper”. Like a “candy wrapper”. Therefore, using yum command is like an easier automatic operation, whereby rpm is more manual. Although, rpm is useful for keeping track of software (e.g. performing “queries”)

Package Management Why is it important to query software with rpm? What types of additional options for an rpm query? How to add/remove applications with rpm? How to add/remove applications with yum? What are the differences with rpm and yum?