Unix Commands PowerPoint

Slides:



Advertisements
Similar presentations
By: Tony Andrews.  Linux directory ordering system  Navigating and creating directories ◦ Listing directories and files ◦ Creating directories ◦ Changing.
Advertisements

CIS 240 Introduction to UNIX Instructor: Sue Sampson.
Web Pages Publishing your page on ASUWlink. Unix Directory Commands ls –la –will show all directories and files –will show directory and file permissions.
UNIX Chapter 00 A “ Quick Start ” into UNIX Operating System Mr. Mohammad Smirat.
UNIX By Darcy Tatlock. 1. Successful Log Into Unix To actively manipulate your website you need to be logged in. Without being logged in you cannot enter.
2 $ command Command Line Options ls –a –l hello hi Command Arguments.
7/17/2009 rwjBROOKDALE COMMUNITY COLLEGE1 Unix Comp-145 C HAPTER 2.
A crash course in njit’s Afs
L INUX C OMMAND L INE I NTERFACE G UNAANBAN.G
Learning basic Unix command IT 325 operating system.
A FIRST BOOK OF C++ UNIX PRIMER. LOGGING IN From the PC's in 301, 302, or 303 If the Command Prompt icon is not on the desktop or the Start menu, navigate.
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.
Chapter 9 Part II Linux Command Line Access to Linux Authenticated login using a Linux account is required to access a Linux system. The Linux prompt will.
Unix Command Project Justin Rogers for LS 560 Spring 2015.
CPSC203 Introduction to Computers Lab 69 By Jie Gao.
Command Line Unix for Information Professionals In web administration or information management work, I may be called upon, as an Information Professional,
Title Slide CSS 404/504 The UNIX Operating System (2) By Ralph B. Bisland, Jr.
File Permissions. What are the three categories of users that apply to file permissions? Owner (or user) Group All others (public, world, others)
AN INTRO TO UNIX/LINUX COMMANDS BY: JIAYANG WANG.
ECT 250: Survey of E-Commerce Technology FrontPage Publishing pages Unix.
CPSC203 Introduction to Computers Lab 33 By Jie Gao.
1 Day 5 Additional Unix Commands. 2 Important vs. Not Often in Unix there are multiple ways to do something. –In this class, we will learn the important.
Publishing Your Web Pages Ann Emmanuel SIUE Web Administrator
Second edition Your UNIX: The Ultimate Guide Das © 2006 The McGraw-Hill Companies, Inc. All rights reserved. UNIX Commands cal – will print a calendar.
Log-in to the Unix Server A successful log-in allows access to the server through the Secure Shell. SSH, also known as Secure Shocket Shell, is a Unix.
Unix Commands PowerPoint Presentation developed for LS 560 Information Technology online class - University of Alabama by Debey Sklenar TENacious Cohort.
Agenda Basic Unix Commands (Chapters 2 & 3) Miscellaneous Commands: whereis, which, whoami, finger, passwd, cal, date Working with Files: cat, more, less.
1May 16, 2005 Week 2 Lab Agenda Command Line FTP Commands Review More UNIX commands to learn File name expansion - * Introduction of vi.
File Systems, telnet and ftp Sources and Resources: 1. A Students Guide to UNIX, by Hahn 2. Paula Davidson’s Handout on UNIXHandout on UNIX.
Makefiles1 MAKEFILES Purpose: contain UNIX commands and will run them in a specified sequence. Syntax Definition : { Section-name: {unix command #1} …
AN INTRO TO UNIX/LINUX COMMANDS BY: JIAYANG WANG.
Linux Stuff Last Update Copyright 2014 Kenneth M. Chipps Ph.D. 1.
1 Introduction to Unix. 2 What is UNIX?  UNIX is an Operating System (OS).  An operating system is a control program that helps the user communicate.
 Last lesson, the Windows Operating System was discussed along with the Windows command shell  Unix is a computer operating system, that similarly manages.
1 CS3695 – Network Vulnerability Assessment & Risk Mitigation – Introduction to Unix & Linux.
ICE UNIX TUTORIAL. File System Commands cd – change directory cd – change directory ls – list contents ls – list contents rm – remove/delete rm – remove/delete.
Integrity Check As You Well Know, It Is A Violation Of Academic Integrity To Fake The Results On Any.
Linux Tutorial Lesson Two *Getting Help in Linux *Data movement and manipulation *Relative and Absolute path *Processes Note: see chapter 1,2,3 from Linux.
Login Being logged into a command line prompt allows a user to easily and simply execute multiple commands (one-by-one or at the same time) that would.
UNIX Basics Matt Hayward October 18, 2016 LS560 – Information Technology for information professionals.
1.1.2 OneOs Downloading Software Upgrade
UNIX To do work for the class, you will be using the Unix operating system. Once connected to the system, you will be presented with a login screen. Once.
Tutorial of Unix Command & shell scriptS 5027
CS1010: Intro Workshop.
Login The Login prompt provides access to the files located on the server.
Getting started with CentOS Linux
Commands Basic syntax of shell commands UNIX or shell commands have a basic structure command -options target command comes first (such as cd or ls) any.
Web Programming Essentials:
Linux 101 Training Module Linux Basics.
Linux Commands Help HANDS ON TRAINING Author: Muhammad Laique
Andy Wang Object Oriented Programming in C++ COP 3330
The Command Prompt Commands are the way to “do things” in Unix
Agenda Basic Unix Commands (Chapters 2 & 3) Miscellaneous Commands:
Eric Shook Department of Geography Kent State University
Part 3 – Remote Connection, File Transfer, Remote Environments
Editing, vi and Configuration Files
Ubuntu Working in Terminal
CSE 374 Programming Concepts & Tools
UNIX Basics Internet Technology.
Tutorial of Unix Command & shell scriptS 5027
Tutorial of Unix Command & shell scriptS 5027
FTP and UNIX TOPICS Exploring your Web Hosting Site FTP UNIX
Unix : Introduction and Commands
Web Programming Essentials:
Tutorial of Unix Command & shell scriptS 5027
UNIX Reference Sheets CSE 2031 Fall 2010.
Getting started with CentOS Linux
Tutorial Unix Command & Makefile CIS 5027
CIS 155 Lecture 10, Farewell to UNIX
Linux Shell Script Programming
Presentation transcript:

Unix Commands PowerPoint Davina Harrison LS560 February 17, 2017

Login: From the login screen I can access the server to view, manipulate or add files on the server. This can also be done with an FTP application, but the command line is more powerful than the FTP application.

List Folders: This command lists the folders in my root directory on the Unix space.

Change Directories: This command allows me to switch from the root to other directories.

Move to the Root Directory: This command allows me to return to the root directly efficiently. If I have changed directories multiple times, it saves me from entering the cd command multiple times.

Make a New Directory: This command creates a new directory.

Moving into the New Directory: Now I’m in the new directory called files.

history: This command is used to display my last 10 commands.

date: The date command will display the current date and time where the server is physically hosted.

who: This UNIX command shows that I am currently the only one logged onto this server.

cal: This UNIX command displays the current month calendar.

rmdir: This command is used to delete a directory.

ls –l: This command displays a list of directories and files than include information like permissions, date created and file size.

In the previous slide, the letters d r w x r meant the following: d = directory r = permission to read w = permission to write x = permission to execute

grep: This command is used to search for the occurrences of a keyword (in this case digitization) in a file.

rm: This command is used to remove a file rm: This command is used to remove a file. In this case I used it to delete an image called paper that I no longer needed in my public_html directory.

last yourusername: This command lists my last logins and how long I was logged on for.

exit: The exit command logs you off the server.

Why We are Learning UNIX Command Language It is more powerful than using a FTP program It gives you more knowledge about what’s going on in the background of the server. Also, when working on web development or as a systems head you’ll need to get into the background of the server.