Users and Accounts Lab 0.1. Users and Accounts Lab 0.1.

Slides:



Advertisements
Similar presentations
Litmus Learning Primer tests
Advertisements

Linux Users and Groups Management
LinuxChix Africa UNIX BASICS. To r00t or not to r00t ● Unix security is (in most cases) binary. Either you are root or you are not. – Effects on permissions.
Dayu Zhang 9/8/2014 Lab02. Example of Commands pwd --- show your current directory This is home of venus, not your home directory Tilde: means you are.
CIS 240 Introduction to UNIX Instructor: Sue Sampson.
Chapter 2 Accessing Your System and the Common Desktop Environment.
User Accounts and Permissions Chapter IV / Part II.
UnixUnix Basic. Convention Italic text indicates text displayed by the computer system. For example, login: indicates a login prompt displayed by the.
1 Using Editors Editors let you create and edit ASCII files UNIX normally includes two editors: vi and Emacs Vi and Emacs are screen editors: they display.
Dayu Zhang 9/3/2014 Lab01. Lab Instructor: Dayu Zhang Office Hour Mon/Wed 10:40am – 11:10am Room A201 Lab Website
Lecture 02CS311 – Operating Systems 1 1 CS311 – Lecture 02 Outline UNIX/Linux features – Redirection – pipes – Terminating a command – Running program.
Installing a New Windows Server 2008 Domain Controller in a New Windows Server 2008 R2.
Project Implementation for COSC 5050 Distributed Database Applications Lab1.
L INUX C OMMAND L INE I NTERFACE G UNAANBAN.G
1. This presentation covers :  User Interface Administration  Files System and Services Management 2.
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.
Managing User Accounts. Module 2 – Creating and Managing Users ♦ Overview ► One should log into a Linux system with a valid user name and password granted.
Grades Please hand in your homework Quizzes coming back today Current grade on back with missing assignments Anything missing can be turned in late There.
If you use Macromedia Flash Player 8 & your course folder not in the ‘Trusted Location’ list of Macromedia you have to follow the following steps to run.
1 Lab 2 “Hello world” in Unix/Linux #include "std_lib_facilities_4.h" int main(){ cout
Editing, vi and Configuration Files Introduction to Linux June 16, 2009 Papeete, French Polynesia Hervey Allen.
There are three types of users in linux  System users: ?  Super user: ?  Normal users: ?
Compiling a C Program. Before we can begin we must open a telnet session to phobos. There are a number of ways to do this, but the easiest is to click.
System Administration 1.  system administration  user and group management 2.
A Practical Guide to Fedora and Red Hat Enterprise Linux Unit 9: Basic Linux Administration Chapter 11: System Administration: Core Concepts Chapter 16:
Text editors Why should I use an editor ? It is very important to able to use at least one text mode editor a text mode editor is so useful on remote machines.
Tony Kombol.  Why text edit?  Many programs and features require configuration ▪ Configuration is kept in files ▪ Usually in the /etc directory  Changes.
Introduction to System Admin Sirak Kaewjamnong. 2 The system administration’s job  Adding a new user  Doing backup and restoring files from backups.
1 FreeBSD Installation AFNOG X Cairo, Egypt May 2009 Hervey Allen.
Chapter 9 Using Text Editors. vi Editor visual Editor, ASCII text editor, no formatting capabilities almost as powerful as MS Word, has 26 clipboards.
Getting Started with Linux Linux System Administration Editors.
Introduction to Unix (CA263) File Editing By Tariq Ibn Aziz.
Isecur1ty training center Presented by : Eng. Mohammad Khreesha.
PacNOG 6: Nadi, Fiji Editing, vi & Configuration Files Hervey Allen Network Startup Resource Center.
Manually Creating a New User Account Presented by Carl South.
Editing, vi and Configuration Files Unix/IP Preparation Course May 29, 2011 Dar es Salaam, Tanzania
SCSC 455 Computer Security Chapter 3 User Security.
Editing, vi and Configuration Files Introduction to Unix May 25, 2008 Rabat, Morocco Hervey Allen.
Editing, vi and Configuration Files Unix/IP Preparation Course July 19, 2009 Eugene, Oregon, USA
1 FreeBSD Installation AFNOG Chix 2011 Blantyre, Malawi 31 st Oct - 4 th Nov 2011 Dorcas Muthoni and Evelyn Namara.
PTA Linux Series Copyright Professional Training Academy, CSIS, University of Limerick, 2006 © Workshop III - Part A Shell Commands Professional Training.
Editing, vi and Configuration Files Unix/Linux Preparation Course June 27, 2010 Pago Pago, American Samoa
SUSE Linux Enterprise Desktop Administration Chapter 9 Manage Users, Groups, and Permissions.
Creating a Zip File with a Password. 1.Right Click on the File or Folder you want to Zip. 2.Choose “Add to Zip”
Word 2010 Headers and Footers You can make your document look professional and polished by utilizing headers and footers. The header is a section of the.
Getting Started with Linux Linux System Administration Editors.
Security Risk Assessment Determine how important your computer is to your group ● Mission critical? ● Sensitive information? ● Expensive hardware? ● Service.
Getting started with CentOS Linux
Chapter 11: Managing Users
User Access and User ID Commands in UNIX
Guide To UNIX Using Linux Third Edition
9 Linux on the Desktop.
Editing, vi and Configuration Files
Ubuntu Working in Terminal
Vi Introduction Tony Kombol.
Linux 104 Training Module File Editing.
Editing, vi and Configuration Files
Linux System Administration Editors
Unix Systems Administration
Ubuntu Working in Terminal
Linux Users and Groups Management
The Linux Command Line Chapter 12
COP 4343 Unix System Administration
OPS235 Lab4: Investigations 5 – 9
Run Java file with Window cmd
LAB 9 – INTRUSION DETECTION AND PREVENTION SYSTEMS
Getting started with CentOS Linux
Chapter 2 Basic vi Editor.
Adding New Users.
The Linux Command Line Chapter 12
Presentation transcript:

Users and Accounts Lab 0.1

useradd sudo useradd –c “Your Name” y.name Sudo passwd y.name Enter password at prompt then again at second prompt

Useradd Options

Add the user to sudo In order to make administrative changes the new user needs to become a “super user” with root like privileges. To do this add the user name to the sudo file Use the visudo editor for this task

sudo visudo Use the vi commands i for insert mode Navigate to the root run line Type in user name with ALL=(ALL) ALL options Press esc, :wq to save entries Remember this give root like privileges to this user

Questions & Discussion