Command Line Interface for Beginners

Slides:



Advertisements
Similar presentations
RH030 Linux Computing Essentials
Advertisements

By: Tony Andrews.  Linux directory ordering system  Navigating and creating directories ◦ Listing directories and files ◦ Creating directories ◦ Changing.
5 Basic utilities When a user logs in to the Linux operating system the directory that they will start in is their home directory. Most users will have.
It's a binary file kept under specific directory.
ATS Programming Short Course I INTRODUCTORY CONCEPTS Tuesday, Jan. 27 th, 2009 Essential Unix Commands.
Exploring the UNIX File System and File Security
Introducing the Command Line CMSC 121 Introduction to UNIX Much of the material in these slides was taken from Dan Hood’s CMSC 121 Lecture Notes.
Linux Linux File System.
CSE 303 Lecture 2 Introduction to bash shell
Guide To UNIX Using Linux Third Edition
UNIX Command-line Introduction Terence Parr. Navigating  cd  pwd  ls  pushd/pod  cd  pwd  ls  pushd/pod.
Chapter-3 Introduction to Unix: Fundamental Commands.
1 SEEM3460 Tutorial Unix Introduction. 2 Introduction What is Unix? An operation system (OS), similar to Windows, MacOS X Why learn Unix? Greatest Software.
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
Linux Installation and Administration Lesson 2 Tutor: George Papamarkos.
Using Macs and Unix Nancy Griffeth January 6, 2014 Funding for this workshop was provided by the program “Computational Modeling and Analysis of Complex.
Guide To UNIX Using Linux Fourth Edition
1 THE UNIX FILE SYSTEM By Chokechai Chuensukanant ID COSC 513 Operating System.
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.
1 Lecture 2 Working with Files and Directories COP 3344 Introduction to UNIX.
HKOI 2012 TRAINING INTRO TO LINUX /CUHK/SHB123]$ date Sat Feb 18 13:00:00 HKT 2012.
Chapter Two Exploring the UNIX File System and File Security.
INTRODUCTION TO LINUX Jacob Chan. GNU/Linux Consists of Linux kernel, GNU utilities, and open source and commercial applications Works like Unix –Multi-user.
Chapter 0 A “Quick-Start” into the UNIX Operating System.
Introduction to UNIX Road Map: 1. UNIX Structure 2. Components of UNIX 3. Process Structure 4. Shell & Utility Programs 5. Using Files & Directories 6.
Chapter Two Exploring the UNIX File System and File Security.
E X C E E D I N G E X P E C T A T I O N S Basic LINUX Linux System Administration Dr. Hoganson Kennesaw State University Operating Systems Directory structure:
CSE 374 Programming Concepts & Tools Hal Perkins Fall 2015 Lecture 2a – A Unix Command Sampler (Courtesy of David Notkin, CSE 303)
Linux Commands C151 Multi-User Operating Systems.
CS 245 – Part 1 Using Operating Systems and Networks for Programmers Jiang Guo Dept. of Computer Science California State University Los Angeles.
1 Lecture 2 Working with Files and Directories COP 3353 Introduction to UNIX.
Basic Unix Commands & GCC Saurav Karmakar Spring 2007.
UNIX filesystem CS 2204 Class meeting 2 *Notes by Doug Bowman and other members of the CS faculty at Virginia Tech. Copyright
The Kernel At a high level, the kernel in an operating system serves as the bridge between applications and the actual data processing of the hardware.
A Brief Overview of Unix Brandon Bohrer. Topics What is Unix? – Quick introduction Documentation – Where to get it, how to use it Text Editors – Know.
The Unix File sytem. Introduction Tree structure …
Basic Unix Commands. Listing files and directories ● ls:command is used to list the files and ● directories in present working directory ● ls command.
Learning basic Unix command It 325 operating system.
File Management commands cat Cat command cat cal.txt cat command displays the contents of a file here cal.txt on screen (or standard out).
LINUX Zhengli Zhu, School of Life Sciences. Outline 1. ABC of Linux 2. Basic orers of Linux 3. Bash Programming.
INTRODUCTION TO SHELL SCRIPTING By Byamukama Frank
1 Linux Commands. 2 Path You specify a file or directory by its path name:  the full, or absolute, path name or the one relative to a location. The full.
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.
A “Quick-Start” into the UNIX Operating System
Getting started with CentOS Linux
Linux 101 Training Module Linux Basics.
Linux Commands Help HANDS ON TRAINING Author: Muhammad Laique
Andy Wang Object Oriented Programming in C++ COP 3330
Basic Commands ls cp ls –l (in detail format) echo ls –a
Lecture 2 Working with Files and Directories
C151 Multi-User Operating Systems
Basic knowledge about Linux
Introduction to Unix: Fundamental Commands
9 Linux on the Desktop.
Introduction to GNU/Linux (Fedora) Command Line Interface
CSE 374 Programming Concepts & Tools
Linux Basic Commands Visit to more Learning Resources.
Basic UNIX OLC Training.
Introduction to UNIX.
Exploring the UNIX File System and File Security
Introduction to Linux Week 0 - Thursday.
Unix : Introduction and Commands
The Unix File System.
Getting started with CentOS Linux
Working with Mac OS and Linux
Module 6 Working with Files and Directories
Lab 2: Terminal Basics.
January 26th, 2004 Class Meeting 2
Presentation transcript:

Command Line Interface for Beginners GNU/Linux Command Line Interface for Beginners By: - Ahmed El-Mekkawy AKA linuxawy - Mohammed El-Sayed AKA Broken Arrow

File System Hierarchy: / /bin /boot /etc /home /var /lib , /lib64 /sbin /proc /dev /mnt , /media /root /tmp

Navigation: ls : list directory contents. cd : change directory. pwd : print name of current/working directory. tree : draws the file system tree.

Getting Help: man : an interface to the on-line reference manuals --help : a parameter to (almost) any command to provide basic help whatis : display a one-line description for the command.

Managing files and directories: mkdir : make new directories. touch : create an empty file. rm (-rf) : remove files or directories cp (-arf) : copy files and directories. mv : move (rename) files.

Dealing with file contents: cat : print files on the standard output. file : determine file type. head : output the first part of files. tail : output the last part of files. grep : get a text from a file. less : view a text file.

System Information: free : Display amount of free and used memory in the system. date : print or set the system date and time. uptime : Tell how long the system has been running. df (-h) : report file system disk space usage. du (-sh) : estimate file space usage. whoami : print effective userid. apt-get : APT package handling utility - command-line interface. passwd : change user password.

Thank You,, EGLUG Team http://eglug.org