EMT 2390L Lecture 6 Dr. Reyes Reference: The Linux Command Line, W.E. Shotts.

Slides:



Advertisements
Similar presentations
Introduction of Unix/Linux Compiled by Anant Vishnoi.
Advertisements

EMT 2390L Lecture 4 Dr. Reyes Reference: The Linux Command Line, W.E. Shotts.
LINUX System : Lecture 3 (English-Only Lecture) Bong-Soo Sohn Assistant Professor School of Computer Science and Engineering Chung-Ang University Acknowledgement.
Installing Bioperl Perl and BioPerl are both open source projects
Software installation Chapter 7. Software installation Numerous software options Usually free Open source Several sources Installation CD Websites sourceforge.net.
Linux+ Guide to Linux Certification Chapter 12 Compression, System Backup, and Software Installation.
CS 497C – Introduction to UNIX Lecture 13: - The File System Chin-Chih Chang
Linux+ Guide to Linux Certification, Third Edition Chapter 11 Compression, System Backup, and Software Installation.
WORKING WITH COMMAND-LINE TOOLS Danielle Cunniff Plumer School of Information The University of Texas at Austin Summer 2014.
UNIX. find command ● The find command is used to locate files on a Unix or Linux system. find will search any set of directories you specify for files.
Free Powerpoint Templates Working on remote computers by Pedro Henriques June 1, 2012.
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.
Module 10 – Linux Installations. Wikipedia: Red Hat Package Manager or RPM Package Manager (RPM) is a package management system. The name RPM variously.
MCB Lecture #3 Sept 2/14 Intro to UNIX terminal.
Linux Operations and Administration
Linux+ Guide to Linux Certification
EMT 2390L Lecture 2 Dr. Reyes. Outline What is the Shell Basic commands Linux Filesystem System commands.
Help session: Unix basics Keith 9/9/2011. Login in Unix lab  User name: ug0xx Password: ece321 (initial)  The password will not be displayed on the.
Offline File Storage. Module 12 Offline File Storage ♦ Introduction Backup is usually done by first collecting all the data in a single archive file,
CIS 90 - Lesson 15 Lesson Module Status Slides – draft Properties - done Flash cards – 1 st Minute quiz – NA Web calendar summary – done Web book pages.
Linux Operations and Administration
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.
EMT1111 Logic and Problem Solving Dr. José M. Reyes Álamo Lecture 1.
Managing Software Patches 10/15/ Introducing Solaris OE Patches A patch contains collection of files and directories Patch replaces existing files.
CIS 90 - Lesson 15 Lesson Module Status Slides – Properties - Flash cards – No-stress quiz – Web calendar summary – Web book pages – Commands – Lab – done.
Network Security: Lab#3 Transport-Level Security Tools J. H. Wang May 12, 2011.
1 Lecture 5 Additional useful commands COP 3353 Introduction to UNIX.
EMT 2390L Lecture 8 Dr. Reyes Reference: The Linux Command Line, W.E. Shotts.
SUSE Linux Enterprise Desktop Administration Chapter 6 Manage Software.
Petteri Soininen Juhana Kraemer Jussi Vähämäki ”Group PJJ”
CSS Linux and Eclipse 1. CSS Account Log into your CSS account with the NoMachine client (NX client) 2.
EMT 2390L Lecture 5 Dr. Reyes Reference: The Linux Command Line, W.E. Shotts.
Installation of packages Objectives –Using software packaging tools Contents –Application delivered as –Where to get commonly used rpm’s –Autofs on! –Getting.
EMT 2390L Lecture 9 Dr. Reyes Reference: The Linux Command Line, W.E. Shotts.
Basic of UNIX For fresh members of SPARCS
File Transfer Protocol (FTP) FTP host stores files Client logs into host Client program sends command to get a file FTP host downloads the file with error.
Installation of packages Objectives –Using software packaging tools Contents –Application delivered as –Where to get commonly used rpm’s –Autofs on! –Getting.
Archive Utilities Learning Objectives: 1. To introduce different archive utilities for file compression with their usage 2. To compare & summarized different.
Sys Admin Course Package Management Fourie Joubert.
Software in the Data Protector Architecture
ATS Programming Short Course I INTRODUCTORY CONCEPTS Tuesday, Feb 3 rd, 2009 Essential Unix Commands …the second half.
The Power of PV ~ Pipeviewer By Ralph Figueroa. Pipeviewer, aka PV What is pv? From the developers website “PV is a terminal-based tool for monitoring.
Install CB 1.8 on Ubuntu. Steps Followed Install Ubuntu (Ubuntu LTS) on Virtual machine – (VMware Workstation) (
EMT 2390L Lecture 3 Dr. Reyes Reference: The Linux Command Line, W.E. Shotts.
Introduction to Linux Server Setup Jonathan Hood CSE 4000 Practical Issues in Software Engineering.
Week Seven Agenda Announcements Link of the week Review week six lab assignment This week’s expected outcomes Next lab assignment Upcoming deadlines Lab.
Software Management Linux Software Package File Extensions Extension File.rpm Software package created with the Red Hat Software Package Manager, used.
INTERNET APPLICATIONS CPIT405 Install a web server and analyze packets.
This slide deck is for LPI Academy instructors to use for lectures for LPI Academy courses. ©Copyright Network Development Group Module 7 Archiving.
ECMM6018 Enterprise Networking For Electronic Commerce Tutorial 1 Installing A Web Server.
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.
Unix Tools Tawatchai Iempairote November 22, 2011.
RASPBERRY PI WORKSHOP.
Chapter 9 Managing Software
Network Commands 2 Linux Ubuntu A.S.
Chapter 7 Installing Program &Backup Tool
The Linux Command Line Chapter 14
The Linux Command Line Chapter 16
The Linux Command Line Chapter 6
The Linux Command Line Chapter 18
OPS235 PACKAGE MANAGEMENT
Lecture 5 Additional useful commands COP 3353 Introduction to UNIX 1.
The Linux Command Line Chapter 17
Module 7 Archiving and Compression
The Linux Command Line Chapter 14
Lecture 5 Additional useful commands COP 3353 Introduction to UNIX 1.
Short Read Sequencing Analysis Workshop
Presentation transcript:

EMT 2390L Lecture 6 Dr. Reyes Reference: The Linux Command Line, W.E. Shotts

Outline Repositories Networking Files Archiving and Backup

Repositories Linux has repositories where you can download and install software/packages apt-get update – command used to update the system packages from the repository apt-get install package_name – command used to install new programs/packages apt-get remove package_name - command used to remove programs/packages

Networking ping – command used to determine if a remote location is reachable o ping linuxcommand.com o ping localhost netstat – command used to examine various network settings and statistics. o netstat –ie ftp – file transfer protocol wget – command used to downloading files o wget linuxcommand.com o ls o gedit index.html

Files locate - command that performs a search of pathnames and outputs those that matches the substring o locate bin/zip o locate zip o locate zip | grep bin You may also use the find command which has more options but it is more difficult

Archiving and Backup gzip – command used to compress one or more files o ls -l /etc > foo.txt o ls o gzip foo.txt o ls gunzip – command used to decompress files o ls o gunzip foo.txt o ls tar – command used for archiving files o ls o tar cf desktop.tar Desktop o ls o tar xvf desktop.tar

Archiving and Backup zip – command that is both a compression tool and an archiver o Usage: zip options zipfilename file1, file,2,..., filen unzip - command used to decompress a zip file o Usage: unzip options zipfilename

Assignments Check the class OpenLab site for new Labs Check Blackboard for new Quizzes Work on your Project