Download presentation
Presentation is loading. Please wait.
Published byKevin Nicholson Modified over 9 years ago
1
EMT 2390L Lecture 6 Dr. Reyes Reference: The Linux Command Line, W.E. Shotts
2
Outline Repositories Networking Files Archiving and Backup
3
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
4
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
5
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
6
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
7
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
8
Assignments Check the class OpenLab site for new Labs Check Blackboard for new Quizzes Work on your Project
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.