Linux.

Slides:



Advertisements
Similar presentations
Working Environment - - Linux - -.
Advertisements

Linux+ Guide to Linux Certification, Second Edition
UnixUnix Basic. Convention Italic text indicates text displayed by the computer system. For example, login: indicates a login prompt displayed by the.
Dayu Zhang 9/3/2014 Lab01. Lab Instructor: Dayu Zhang Office Hour Mon/Wed 10:40am – 11:10am Room A201 Lab Website
The Network Management Lab pc pc pc pc pc Virtual Servers Your Laptop.
1 Intro to Linux - getting around HPC systems Himanshu Chhetri.
Essential Unix at ACEnet Joey Bernard, Computational Research Consultant.
Potential Unix/Linux Questions March 25, 2014 Dr. Bob Mathis.
Cmsc 312 Operating Systems. UNIX? DOS – PC? VAX/VMS - mainframe Unix – PC, workstation, mainframe 1970 bell Lab For computer scientist? Why popular? Free.
CENT 305 Information Systems Security Linux Introduction.
1 SEEM3460 Tutorial Unix Introduction. 2 Introduction Unix-like system is everywhere Linux Android for smartphones Google Chrome OS for Chromebook Web.
AN INTRO TO UNIX/LINUX COMMANDS BY: JIAYANG WANG.
Operating System - Linux Ph. D. Course Work : PHYS 601 Statistics and Computer Applications Presented By: Sanjay Godara Dept. of Physics & Astrophysics.
Vim Editor and Unix Command gcc compiler Computer Networks.
LINUX Tuesday, 5 July :00 pm. Remote Login l Use Secure Shell (ssh) l Machine name/IP address E.g. ssh hydra.sma.nus.edu.sg Or ssh
1 Editing a C Program 01/16/15. 2 Objective Use Linux to edit, compile and execute a C program.
HKOI 2012 TRAINING INTRO TO LINUX /CUHK/SHB123]$ date Sat Feb 18 13:00:00 HKT 2012.
Agenda Link of the week Use of Virtual Machine Review week one lab assignment This week’s expected outcomes Review next lab assignments Break Out Problems.
1 Lab 2 “Hello world” in Unix/Linux #include "std_lib_facilities_4.h" int main(){ cout
UNIX Introduction CSCE 221H Texas A&M University.
Next Unix Topics Tuesday, 2/11 & 18/2014. Change Password (by 2/14/14) ssh to account on – faclinux.cse.ohio-state.edu – stdlinux.cse.ohio-state.edu passwd.
INCS Virtual Data Center Security using Linux.
L&T Infotech1 UNIX – Getting Started - Aneesh Ramani.
Tony Kombol.  Why text edit?  Many programs and features require configuration ▪ Configuration is kept in files ▪ Usually in the /etc directory  Changes.
1 GIT NOUN \’GIT\ A DISTRIBUTED REVISION CONTROL AND SOURCE CODE MANAGEMENT (SCM) SYSTEM WITH AN EMPHASIS ON SPEED. INITIALLY DESIGNED AND DEVELOPED BY.
1 Remote Access Telnet Telnet FTP FTP. 2 Applications and Communications Telnet Telnet  Program for accessing systems remotely.  Available on Windows.
Linux and Java Basics. What is Linux? Operating system by Linus Torvalds that was a clone of Unix (thus Linux) Free and open source – this is the reason.
Isecur1ty training center Presented by : Eng. Mohammad Khreesha.
Week Two Agenda Announcements Link of the week Use of Virtual Machine Review week one lab assignment This week’s expected outcomes Next lab assignments.
CS 245 – Part 1 Using Operating Systems and Networks for Programmers Jiang Guo Dept. of Computer Science California State University Los Angeles.
PTA Linux Series Copyright Professional Training Academy, CSIS, University of Limerick, 2006 © Workshop III - Part A Shell Commands Professional Training.
More on Using onyx 8/28/13. Program 1 Due a week from today. See website for details.
Practical Kinetics Exercise 0: Getting Started Objectives: 1.Install Python and IPython Notebook 2.print “Hello World!”
AN INTRO TO UNIX/LINUX COMMANDS BY: JIAYANG WANG.
Lab 8 Overview Apache Web Server. SCRIPTS Linux Tricks.
ICE UNIX TUTORIAL. File System Commands cd – change directory cd – change directory ls – list contents ls – list contents rm – remove/delete rm – remove/delete.
CS 120 Extra: The CS1 Server Tarik Booker CS 120.
Intro to GNU/Linux See, Stallman? I said GNU. Are you happy now?
INTRODUCTION TO SHELL SCRIPTING By Byamukama Frank
Bash Scripting CIRC Summer School 2016 Baowei Liu CIRC Summer School 2016 Baowei Liu.
Linux 101: Introduction To Linux Purdue Linux Users Group Speaker: Thor Smith.
By Jonathan Rinfret UNIX/LINUX By Jonathan Rinfret
GRID COMPUTING.
Introduction to the Command Line for Data Analysts Gus Cavanaugh
Class Projects and Environment
SEEM3460 Tutorial Unix Introduction.
EE516: Embedded Software Project 1
CS1010: Intro Workshop.
CIRC Winter Boot Camp 2017 Baowei Liu
CS306 Lab Workout 2 Fall 2017.
Getting started with CentOS Linux
IT244 - Introduction to Linux / Unix Instructor: Bo Sheng
By Jonathan Rinfret CREATING A BASH SCRIPT By Jonathan Rinfret
Shell Script Assignment 1.
Vi Introduction Tony Kombol.
VIM - Vi IMproved Bryce Handerson
The Linux Command Line Chapter 12
SEEM3460 Tutorial Unix Introduction Xinshi Lin & Zihao Fu
The Linux Command Line Chapter 24
Run Java file with Window cmd
Getting started with CentOS Linux
Command line.
Yung-Hsiang Lu Purdue University
Java Tutotrial for [NLP-AI] 2
Linux Operations and Administration
Lab 7 Shell Script Reference:
Input and Output Python3 Beginner #3.
The Linux Command Line Chapter 12
The Linux Command Line Chapter 24
DIBBs Brown Dog Tutorial Setup
Presentation transcript:

Linux

What is it? Linux Kernel Linux OS Distributions

Why Linux Free and Open Source (FOSS) Scalable Secure Fast

Linux Features Customization Package Management Fully functional terminal Quick Release Cycle Easy to run as a server

Intro To Learning Linux VIM Adventures: http://vim-adventures.com/ Linux in your browser: http://bellard.org/jslinux/ “ls” or “ls -l” to show files in the directory “cd” to change directory “top” is like task manager “vi” to open text editor -”i” to start writing -”:wq” to save and quit “cat $filename” (where $filename is the file) to print file “echo hello” to print the text “hello” Google more “common linux commands”