Chapter 9 Managing Software

Slides:



Advertisements
Similar presentations
January is Clean Up Your Computer Month! Here are some tips to make your computer run faster!
Advertisements

Software installation Chapter 7. Software installation Numerous software options Usually free Open source Several sources Installation CD Websites sourceforge.net.
Install Software in Ubuntu. Do you have Internet? Everything is on the Internet and Free!
Linux+ Guide to Linux Certification, Third Edition Chapter 11 Compression, System Backup, and Software Installation.
Documentation 1. User Documentation 2. Technical Documentation 3. Program Documentation.
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
Tutorial 11 Installing, Updating, and Configuring Software
Lesson 14: Installing and Uninstalling Programs how to install a new program what to do if the new program doesn’t work how to uninstall a program © CCI.
Welcome to the Tutorials of IRIS Chapter 1 Click To Continue.
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.
SUSE Linux Enterprise Desktop Administration Chapter 6 Manage Software.
Guide to Linux Installation and Administration1 Chapter 4 Running a Linux System.
XP Practical PC, 3e Chapter 3 1 Installing and Learning Software.
Chapter 3 Installing and Learning Software. 2Practical PC 5 th Edition Chapter 3 Getting Started In this Chapter, you will learn: − What is in an application.
Installation of packages Objectives –Using software packaging tools Contents –Application delivered as –Where to get commonly used rpm’s –Autofs on! –Getting.
Jodie Gaver Jodie Gaver Working with Configuration Manager since Working with Configuration Manager since MCTS: Administering and Deploying.
Installing SAS 1. Requirements If you do not have an old copy of SAS installed on your computer, go directly to Slide 6. Make sure you have uninstalled.
Introduction to Linux Server Setup Jonathan Hood CSE 4000 Practical Issues in Software Engineering.
Debian Package Management
ECE 544 Software Project 1 Kuo-Chun Huang (KC). Environment Linux (Ubuntu or others) Windows with Cygwin
XAMPP.
Upgrade on Windows 7. DownloadSoftware Download Software from link provided in Webliography: e/
System Administration Application Management. ● A common task for a system administrator is the installation, updating and removal of software. Several.
How To Uninstall AVG Antivirus?. Restart Your Computer And Log Into Windows As A User With Administrative Account Please restart your computer to make.
How To Silent-Install The AVG Antivirus 2017 Using The DOS Command.
HOW DO I RESTORE THE HOTKEYS ON A HP LAPTOP?. Hewlett Packard commonly famous as HP manufactures laptops with smart and most beneficial features. The.
How to know the status of updated version and protection of your PC when using Avast antivirus?
free number
Installing Windows 7 Lesson 2.
Installing Applications in FreeBSD
Backing Up Your System With rsnapshot
Installing and Learning Software
30 Tips and Tricks for Managing and Running Ubuntu/Bash/Windows Subsystem for Linux WIN321B Orin Thomas.
Click Once installation
Chapter 3 Installing and Learning Software
Installing and Learning Software
Software Packaging and Releasing
Installation and Configuration
1. Open any Office 2016 app, such as Word, and create a new document.
Chapter 7 Installing Program &Backup Tool
The Linux Operating System
Ubuntu Working in Terminal
June 2011 David Front Weizmann Institute
Lecture 13 RPM and its advantages.
The Linux Command Line Chapter 14
Updating Malwarebytes Tech Support and software support is important otherwise you shall come across some technical errors. If software is not updated.
f
Microsoft FrontPage 2003 Illustrated Complete
More Scripting & Chapter 11
Lenovo Tech Support Number. How to download BIOS? Method 1 There is a Lenovo tool- Lenovo System Update that can be used to easily download and install.
How to Resolve the “AVG Update Issues”
A Quick Guide To Fix QuickBooks Error QuickBooks is a leading accounting software that has assisted millions of small and mid-sized business in.
Call to Fix HP Printer Installation Error Code 1603
Lesson #7 MCTS Cert Guide Microsoft Windows 7, Configuring Chapter 7 Configuring Devices and Updates.
Install Ruby If you are running on Mac OS X, Ruby is preinstalled.
University of Texas Rio Grande Valley Systems Administration CSCI 6175
Figure 6-4: Installation and Patching
IS3440 Linux Security Unit 8 Software Management
OPS235 PACKAGE MANAGEMENT
Patents e-Commerce Update: Public and Private PAIR
Install MySQL Community Server and MySQL Workbench
Patents e-Commerce Update: Public and Private PAIR
The Linux Command Line Chapter 14
Carthage ios 8 onwards Dependency manager that streamlines the process of integrating the libraries into the project.
VERSION CONTROL SVN (SubVersioN)
Packages Maria Novosolov.
Executive Reports, Instructions and Documentation
Presentation transcript:

Chapter 9 Managing Software Ubuntu Unleashed Chapter 9 Managing Software

Ubuntu Software Center Graphical utility for package management Easy search, 1 click installs 3 options in left pane Get Software Installed Software History Synaptic – works like “Programs and Features” in Windows Allows you to mark for installation, re-installation, upgrade, and removal Click apply

Staying Up-to-Date Software Updater When run, it lists all available updates Refresh by clicking “check” Click “show details” to see the changes the update makes

Command Line Basics APT – why is it so cool? Before APT was RPM RPM has “dependencies” meaning you couldn't just install (for instance) VLC, you'd have to first install any additional software that VLC needed to run, but before you could install that, you might need to install a handful of other software that the additional software needed, and on and on. Very time consuming APT – properly handles dependencies – downloads and installs all dependency software APT – Advanced Package Tool

Using apt-get sudo apt-get update Contacts all servers that it uses Downloads a list of file updates sudo apt-get upgrade Lists available updates Do you want to continue [Y/n] ? sudo apt-get remove program_name Will uninstall the named program

Finding Software apt-cache search program_name Will find name of program & name of program in description apt-cache -n search program_name Will ignore program name in description

Tarballs When apt-get doesn't work Something you're looking for doesn't exist in your repositories You may find zipped software that will work for you Will usually be in program_name.tar.gz (or tar.bz) Use the command tar zxvf program_name.tar.gz -C ~/source Now go to /source/program_name and look for instructions Usually in a file called readme, install, or something similar Follow instructions to install

DOL and CCBY