Login The Login prompt provides access to the files located on the server.

Slides:



Advertisements
Similar presentations
NETW-240 Shells Last Update Copyright Kenneth M. Chipps Ph.D. 1.
Advertisements

ECT 250: Survey of e-commerce technology Publishing pages on a Unix system.
Exploring the UNIX File System and File Security
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.
1 Some basic Unix commands u Understand the concept of loggin into and out of a Unix shell u Interact with the system in a basic way through keyboard and.
2 $ command Command Line Options ls –a –l hello hi Command Arguments.
A Mini UNIX Tutorial. What’s UNIX?  An operating system run on many servers/workstations  Invented by AT&T Bell Labs in late 60’s  Currently there.
L INUX C OMMAND L INE I NTERFACE G UNAANBAN.G
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.
Unix Command Project Justin Rogers for LS 560 Spring 2015.
Command Line Unix for Information Professionals In web administration or information management work, I may be called upon, as an Information Professional,
– Introduction to the Shell 10/1/2015 Introduction to the Shell – Session Introduction to the Shell – Session 2 · Permissions · Users.
LIN Unix Lecture 3 Hana Filip. LIN UNIX Resources UNIX Tutorials UNIX help for.
File Permissions. What are the three categories of users that apply to file permissions? Owner (or user) Group All others (public, world, others)
Copyright (c) by CNAPTICS Corporation. All rights reserved.1 INFO Oracle Database 11g: Administration II Presented By: Marc S. Paller,
1 N305 C Programming. 2 Objectives for the Lab ä Learn problem solving strategies ä Achieve intermediate knowledge of C Programming Language ä Gain experience.
Chapter Two Exploring the UNIX File System and File Security.
Lesson 2-Touring Essential Programs. Overview Development of UNIX and Linux. Commands to execute utilities. Communicating instructions to the shell. Navigating.
BIF713 Basic Unix/Linux Commands Getting Help with Commands.
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 and Samba By: IC Labs (Raj Kidambi). What is Unix?  Unix stands for UNiplexed Information and Computing System. (It was originally spelled "Unics.")
FTP Server API Implementing the FTP Server Registering FTP Command Callbacks Data and Control Port Close Callbacks Other Server Calls.
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.
Linux+ Guide to Linux Certification, Third Edition
Linux+ Guide to Linux Certification, Third Edition
Λειτουργικά Συστήματα – Lab2 Γιάννης Πετράκης. Directory Navigation and Control  The Unix file system is set up like a tree branching out from the root.
CSE 374 Programming Concepts & Tools Hal Perkins Fall 2015 Lecture 2a – A Unix Command Sampler (Courtesy of David Notkin, CSE 303)
Unix Servers Used in This Class  Two Unix servers set up in CS department will be used for some programming projects  Machine name: eustis.eecs.ucf.edu.
Makefiles1 MAKEFILES Purpose: contain UNIX commands and will run them in a specified sequence. Syntax Definition : { Section-name: {unix command #1} …
Unix Environment Basics CSCI-1302 Lakshmish Ramaswamy.
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.
Learning basic Unix command It 325 operating system.
Chapter 2: Exploring the UNIX File System (For Tuesday Section) File and File Systems.
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.
CMSC 104, Version 9/011 Operating Systems and Using Linux Topics What is an Operating System? Linux Overview Frequently Used Linux Commands Reading None.
UNIX Basics Matt Hayward October 18, 2016 LS560 – Information Technology for information professionals.
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.
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
Unix Commands PowerPoint
Some Linux Commands.
Shell Script Assignment 1.
Welcome to CSCI 230! Problem Solving using C
CSE 374 Programming Concepts & Tools
Tutorial of Unix Command & shell scriptS 5027
Tutorial of Unix Command & shell scriptS 5027
Introduction to UNIX UNIX developed at Bell Labs in 70s
Exploring the UNIX File System and File Security
Web Programming Essentials:
Tutorial of Unix Command & shell scriptS 5027
UNIX Reference Sheets CSE 2031 Fall 2010.
Operating Systems and Using Linux
Andy Wang Object Oriented Programming in C++ COP 3330
UNIX/LINUX Commands Using BASH Copyright © 2017 – Curt Hill.
Tutorial Unix Command & Makefile CIS 5027
CIS 155 Lecture 10, Farewell to UNIX
Operating Systems and Using Linux
Operating Systems and Using Linux
Linux Shell Script Programming
Operating Systems and Using Linux
Module 6 Working with Files and Directories
What is Unix? A multi-user networked operating system
Presentation transcript:

Login The Login prompt provides access to the files located on the server.

Root Directory The “ls” command is important because it shows the root directory file that can be accessed on the server

Change Directory The “cd” command is important to change to a different directory other than the root directory.

List Directory The “ls” command is important because it allows the user to move in and out of different directories and return to the previous menu, eventually ending back to the root directory, if one so desires.

New Directory The “mkdir” command is important because it allows the user to create a new directory on the server where additional files can be placed.

Moved into New Directory Using the command “cd test47” allows the user to change directories and move into the newly created file

History Directory Typing “history” displays the last 10 commands that were access within the server.

Date Directory Typing “date” on the command line will display the current date and time that the server is being accessed.

Who is using the server Typing the word “who” on the command line shows the names of other people using the server at that time.

Calendar Typing the word “calendar” will allow the user access to be able to make appointments if necessary for that month.

Deleting a Directory Using the “rmdir” command is an important function that allows the removal of a file that was previously created.

Long List Using the “ls –l” command is important because it allows the user access to the privileges of a file, the date it was created, and the size of files on the server.

What do the letters d r w x r mean? D- In the Unix command, the letter “d” represents “directory.” R- In the Unix command, the letter “r” represents the “read” permission. W- In the Unix command, the letter “w” represents the “write” permission. X- In the Unix command, the letter “x” represents the “execute” permission. R- In the Unix command, the second “r” represents rather or not the reader has “read” permission.

Grep Directory Using the Grep command is important because it allows the user to find specific words within a directory or file. If someone wants to know how many external files there are, they can use the Grep command.

Exit The “exit” command is used to allow user to log out of there present session.

The Importance of a Unix Command Line We live in the age of information technology. Obtaining general knowledge and mastery of a command line in Unix is an important skill for information professionals simply because it allows the creation, transferring and updating of webpages that will be conducive to accuracy for the public viewing.

Who Am I The “whoami” command is important to Unix because it allows one to see the username of the person that is logged onto the system.

WC Command Using the “wc” command allows the user to see how many lines, words, and characters are in a particular file.