Activant Acclaim AIX: Basic System Administration

Size: px
Start display at page:

Download "Activant Acclaim AIX: Basic System Administration"

Transcription

1 Activant Acclaim AIX: Basic System Administration AIX suite: course 1 of 3

2 Overview AIX backup Maintain AIX file systems Make new AIX users Troubleshoot Port Lockups System Shutdown

3 AIX backup Must be logged in as root Done through smit p21 #smit p21

4 AIX backup

5 AIX backup

6 AIX backup Cannot be done performed with users on the system Should have three tapes in rotation To check the date of last AIX backup #ls -l.p21aixrest Backup once a week!

7 AIX file systems View levels use the df command Display in 1 k blocks use the -k flag

8 AIX file levels /root /var Less than 80 % in the % used column Less than 50 % in the % used column Less than 50% in the % iused column Can cause printing problems

9 AIX file levels /tmp Have at least 12 MG in the free column May cause problems With AIX backup if there is not enough space In large Proseries reports if there is not enough free space

10 AIX file levels /home Less then 80 % in the % used column Can cause users login problems Regular users may not be able to Create a file Print to an AIX file in Prophet 21 application software

11 AIX file levels /usr/lpp/p21pro/db Less then 90 % used in the % used column Holds Proseries databases If it gets to 100 % used, Prophet 21 data may be lost Payables Receivables General ledger

12 AIX file maintenance /root Remove the smit.log and smit.script files #del smit.log smit.script Remove the dataserv.lg file #del dataserv.lg Clear the /etc/security/failedlogin file Failed login file is used to track failed logins #:> /etc/security/failedlogin

13 AIX file maintenance /var Clear the /var/ined.fatal.log file #:> /var/ined.fatal.log Clear the wtmp file Added to when a user logs in or out of AIX #:> /var/adm/wtmp

14 AIX file maintenance /var Check for large jobs in the AIX queue #ls -l /var/spool/qdaemon Let jobs run or cancel them Some may be lost or old print jobs Check the date on the file Delete it if needed To check the contents of the file #more /var/spool/qdaemon/filename

15 AIX file maintenance /var Check for users AIX mail Users may not be reading their mail #ls -l /var/spool/mail Have users read and delete their old mail

16 AIX file maintenance /home Check for large files in user directories #find /home -size exec ls -l {} \; find any file that is 1/2 MB or larger in size Check date on file Delete them if needed #del /home/userid/filename

17 AIX file maintenance /home Check for large mailbox files User may not have deleted AIX mail #find /home -name mbox -exec ls -l {} \; Have user read and delete mail

18 AIX file maintenance /home Check for large smit.log and smit.script file #find /home -name smit.log -exec ls -l {} \; #find /home -name smit.script -exec ls -l {} \; Remove the files from the users directories #del /home/username/smit.log #del /home/username/smit.script

19 AIX file maintenance /home Check for large.sh_history files All users will have this file #find /home -name.sh_history -exec ls -l {} \; Delete these files from user directories #del /home/username/.sh_history

20 AIX file maintenance /home Check for dataserv.lg files All Proseries or Acclaim users will have this file #find /home -name dataserv.lg -exec ls -l {} \; Remove these files #del /home/username/dataserv.lg

21 AIX file maintenance /tmp Check for user owned reports Call Prophet 21 if unsure about files

22 P21 clean P21 clean is a script that runs every month on the 6th and 22nd Cleans up specific files and directories that tend to fill up Checks last good AIX back up and displays if it is older then 6 days View the clean.log file #more /tmp/clean.log

23 Seizing the Command Console Can be seized from any terminal Must be at an AIX login Current terminal must be logged in as root #p21 -t tty0

24 Login to AIX Basic AIX login After you enter the user ID, the system will request a password.

25 Logout of AIX To exit AIX there are three commands exit logout [ctrl] [d]

26 AIX users Two types of users root All others

27 AIX users Root Known as the super user Able to bypass permissions Many system tasks can only be performed by root Prompt is a # sign

28 AIX users All other users Limited permissions Use a unique 8 character or less string Keep letters lowercase Prompt is a $ sign

29 Making AIX users Only root user has this ability Each user must have an account and password created for them Directory for each user Environment file called.profile /home/userid

30 Making AIX users Making an AIX user #mkuser larry

31 AIX user Passwords Each AIX user has a password on their account Unique 8 character or less string Only root can change other user passwords Each user can change THEIR OWN password

32 Making AIX users Password #passwd larry

33 Removing AIX users Removing a user does not remove the user home directory and files #rmuser -p larry -p flag with remove user password and other authentication information Remove user files and directory #cd /home #rm -ir username

34 Creating network users Network users need to be mapped effectively to be able to access p21 databases Must be logged into root to make the mappings #smit p21

35 Mapping network users

36 Mapping network users

37 Mapping network users Insert aix username

38 Mapping network users P21 port number

39 Mapping network users Change to effective

40 Mapping network users P21 device mapping

41 Troubleshooting-Ports Ensure there is a current list of port configurations #lstty

42 Troubleshooting-Ports What was the user doing when they locked up? Locked up/never logged in Locked up in AIX Locked up in Prophet 21 software

43 Troubleshooting-Ports Port locked up Is the terminal turned on? Is the cable secure? Try control codes on terminal [CTRL] [Q] [Shift] [?] [CTRL] [C] Turn terminal off then on Ensure terminal set ups match TTY listing

44 Troubleshooting-Ports You can try to Run the flow/flush command #clocal -flow /dev/tty5& #clocal -flush /dev/tty5& Disable and enable port #pdisable tty5 #penable tty5

45 Troubleshooting-Ports Killing processes Done as a last resort Determine the child and parent process with the ps -f command and kill the child and then the parent process Kill -8 is the highest kill signal that should be used

46 Troubleshooting-Ports Check for processes with the ps command #ps -ft tty5

47 Troubleshooting-Ports Kill command sends a signal to terminate a running process Never kill a parent process until the spawned children processes are terminated! Kill signal number not required #kill #kill Never use the kill -9 flag!

48 Troubleshooting-Ports Swap equipment to check for failing component Terminal Adapter Cable Port

49 Troubleshooting-Users Try control codes on terminal [CTRL] [Q] [Shift] [?] [CTRL] [C] Check for user processes #ps -fu username All regular users can kill their own processes Never kill the init (PID 1) process!

50 System reboot CPU must be taken down properly Get users to log off P21 system Shutdown Proseries servers: JUMP-TO.PROSHUTDOWN Prophet 21 must be stopped and offline UTILITY COMMAND- ST UTILITY COMMAND- OFF NEVER simply power the system down!

51 Shutdowns Two types of shutdowns Shutdown with automatic reboot #shutdown -Fr Shutdown with power down #shutdown -F

52 Summary Back up AIX Maintain AIX file systems Make new AIX users Troubleshoot port lockups Shutdown system

53 For More Information Acclaim Help Files Visit Activant on the web: View Educational Services course offerings Browse Documentation Search the Solutions database Submit a Support case Consulting Services consult-sales@activant.com Professional Services Sales pss@activant.com

Prophet 21 Array System Operations I

Prophet 21 Array System Operations I Prophet 21 Array System Operations I System Operations suite: course 1 of 3 This class is designed for Array AIX - System Administrators Objectives Sign on to the Operating system Knowledge of Basic system

More information

Activant Prophet 21. Prophet 21 System Administration

Activant Prophet 21. Prophet 21 System Administration Activant Prophet 21 Prophet 21 System Administration This class is designed for System Administrators Backup System Administrators Objectives Perform manual backups Restore the system Upload database and

More information

Backup System Administrators

Backup System Administrators Activant Prophet 21 Prophet 21 System Administration This class is designed for System Administrators Backup System Administrators Objectives Perform manual backups Restore the system Upload database and

More information

Activant Acclaim Managing AIX Print Queues

Activant Acclaim Managing AIX Print Queues Activant Acclaim Managing AIX Print Queues AIX suite: course 2 of 3 Overview What is an AIX queue? Concept behind AIX print queue Specific AIX print queue commands Basic AIX printer problem troubleshooting

More information

W717 Keeping the Array System Up-to-Date

W717 Keeping the Array System Up-to-Date W717 Keeping the Array System Up-to-Date Pre-requisites: None This session should prove invaluable for Array system administrators. Discussion will center around keeping your hardware and software up-to-date,

More information

Activant Acclaim. Taking Control of Your Activant Data with Acclaim s Import/Export Feature

Activant Acclaim. Taking Control of Your Activant Data with Acclaim s Import/Export Feature Activant Acclaim Taking Control of Your Activant Data with Acclaim s Import/Export Feature This class is designed for Acclaim users who are: Familiar with Acclaim functionality responsible for maintaining

More information

Linux System Administration

Linux System Administration System Processes Objective At the conclusion of this module, the student will be able to: Describe and define a process Identify a process ID, the parent process and the child process Learn the PID for

More information

Unix Processes. What is a Process?

Unix Processes. What is a Process? Unix Processes Process -- program in execution shell spawns a process for each command and terminates it when the command completes Many processes all multiplexed to a single processor (or a small number

More information

Activant Acclaim. JCM Tips, Tricks and Troubleshooting

Activant Acclaim. JCM Tips, Tricks and Troubleshooting Activant Acclaim JCM Tips, Tricks and Troubleshooting This class is designed for Acclaim system administrators and other employees responsible for creating and maintaining JCMs Objectives Employ tips to

More information

Booting a Galaxy Instance

Booting a Galaxy Instance Booting a Galaxy Instance Create Security Groups First time Only Create Security Group for Galaxy Name the group galaxy Click Manage Rules for galaxy Click Add Rule Choose HTTPS and Click Add Repeat Security

More information

MDS - UNIX SYSTEM ADMINISTRATOR MANUAL. INTRODUCTION... i

MDS - UNIX SYSTEM ADMINISTRATOR MANUAL. INTRODUCTION... i MDS - UNIX SYSTEM ADMINISTRATOR MANUAL INTRODUCTION........................... i SUPER USER MENU.......................... 1 1 SET USER PRIVILEGE..................... 2 2 MAKE USER.........................

More information

Introduction to SQL 2000: Installation and Implementation. SQL Server Administration suite: course 1 of 4

Introduction to SQL 2000: Installation and Implementation. SQL Server Administration suite: course 1 of 4 Introduction to SQL 2000: Installation and Implementation SQL Server Administration suite: course 1 of 4 This class is designed for Beginner SQL/Prophet 21 (CC) Users who are responsible for SQL Administration

More information

Activant Acclaim Improving Company Communication with Activant Acclaim and Workflow

Activant Acclaim Improving Company Communication with Activant Acclaim  and Workflow Activant Acclaim Improving Company Communication with Activant Acclaim E-mail and Workflow Acclaim System Administration suite: course 6 of 7 This class is designed for System administrators and other

More information

First of all, these notes will cover only a small subset of the available commands and utilities, and will cover most of those in a shallow fashion.

First of all, these notes will cover only a small subset of the available commands and utilities, and will cover most of those in a shallow fashion. Warnings 1 First of all, these notes will cover only a small subset of the available commands and utilities, and will cover most of those in a shallow fashion. Read the relevant material in Sobell! If

More information

Read the relevant material in Sobell! If you want to follow along with the examples that follow, and you do, open a Linux terminal.

Read the relevant material in Sobell! If you want to follow along with the examples that follow, and you do, open a Linux terminal. Warnings 1 First of all, these notes will cover only a small subset of the available commands and utilities, and will cover most of those in a shallow fashion. Read the relevant material in Sobell! If

More information

About This Book. Who Should Use This Book. Highlighting. Case Sensitivity in AIX. iii

About This Book. Who Should Use This Book. Highlighting. Case Sensitivity in AIX. iii About This Book The AIX 5L Version 5.2 Operating System Installation: Getting Started guide provides system administrators with information about how to install and configure the AIX operating system on

More information

UNIT V. Dr.T.Logeswari. Unix Shell Programming - Forouzan

UNIT V. Dr.T.Logeswari. Unix Shell Programming - Forouzan UNIT V UNIX SYSTEM COMMUNICATION Dr.T.Logeswari 1 Electronic mail or email is easiest way of communication on unix. Fast and cheap Used to exchange graphics, sound and video files 2 3 Elements of a communication

More information

IBM AIX Basic Operations V5.

IBM AIX Basic Operations V5. IBM 000-190 AIX Basic Operations V5 http://killexams.com/exam-detail/000-190 QUESTION: 122 Which of the following options describes the rm -i command? A. It removes and reports the file names it removes.

More information

Performing Maintenance Operations

Performing Maintenance Operations This chapter describes how to back up and restore Cisco Mobility Services Engine (MSE) data and how to update the MSE software. It also describes other maintenance operations. Guidelines and Limitations,

More information

Answers to Even- Numbered Exercises

Answers to Even- Numbered Exercises Answers to Even- 17 Numbered Exercises from page 1077 1. What option should you use with fsck if you want to review the status of your filesystems without making any changes to them? How does fsck determine

More information

Presented by Bill Genske Gary Jackson

Presented by Bill Genske Gary Jackson Quintessential School Systems Session C Linux Presented by Bill Genske Gary Jackson Copyright Quintessential School Systems, 2009 All Rights Reserved 867 American Street --- Second Floor --- San Carlos,

More information

Xcalenets Console Setup Guide. Xcalenets Console Setup Guide (Standalone version)

Xcalenets Console Setup Guide. Xcalenets Console Setup Guide (Standalone version) Xcalenets Console Setup Guide Xcalenets Console Setup Guide (Standalone version) 1 Content CONTENT... 2 Getting Started to Xcalenets Console Setup... 3 Account Level Introduction... 3 Login Console Setup...

More information

Activant Solutions Inc. SQL 2005: Server Management

Activant Solutions Inc. SQL 2005: Server Management Activant Solutions Inc. SQL 2005: Server Management SQL Server 2005 suite Course 3 of 4 This class is designed for Beginner/Intermediate SQL Server 2005 System Administrators Objectives Create Maintenance

More information

Guide to All Saints College Edumate Parent Portal

Guide to All Saints College Edumate Parent Portal Guide to All Saints College Edumate Parent Portal Logging In 1. Enter the Edumate address into your browser (https://edumate.saints.nsw.edu.au/) 2. Enter your username and password and click Login Dashboard

More information

Prophet 21 Acclaim. Understanding Acclaim Databases

Prophet 21 Acclaim. Understanding Acclaim Databases Prophet Acclaim Understanding Acclaim Databases Overview P Acclaim databases File Layout Browse Common Questions What tables to use How do these tables relate to each other linking tables Handling unexpected

More information

5/20/2007. Touring Essential Programs

5/20/2007. Touring Essential Programs Touring Essential Programs Employing fundamental utilities. Managing input and output. Using special characters in the command-line. Managing user environment. Surveying elements of a functioning system.

More information

More Raspian. An editor Configuration files Shell scripts Shell variables System admin

More Raspian. An editor Configuration files Shell scripts Shell variables System admin More Raspian An editor Configuration files Shell scripts Shell variables System admin Nano, a simple editor Nano does not require the mouse. You must use your keyboard to move around the file and make

More information

(Self-Study) Identify How to Back Up and Restore NetWare Systems

(Self-Study) Identify How to Back Up and Restore NetWare Systems SECTION 18 (Self-Study) Identify How to Back Up and Restore NetWare Systems The following objective will be tested: Develop a Network Backup Strategy In this section you learn how you can back up and restore

More information

Level 23 Eagle Software Conversion Guide. Please see page 5 for changes made to Special Security

Level 23 Eagle Software Conversion Guide. Please see page 5 for changes made to Special Security Level 23 Eagle Software Conversion Guide Please see page 5 for changes made to Special Security Publication No. EL1035 Publication Date: January 2002 This manual contains reference information about CCITRIAD

More information

eftp Application User Guide

eftp Application User Guide Team A eftp User Guide 1/30 eftp Application User Guide Table of Contents Page 1. Acknowledgement 2 2. Introduction a. Welcome eftp Audience 3 b. What s in this manual 3 c. Manual Conventions 3 d. Getting

More information

Prophet 21 Turns. Getting Around Turns. This class is designed for. New Turns users

Prophet 21 Turns. Getting Around Turns. This class is designed for. New Turns users Prophet 21 Turns Getting Around Turns This class is designed for New Turns users Objectives Use Basic FacetTerm Commands Use Common Screen Prompts Use the Print Options Stop a Print Job Use the MiniSpooler

More information

INTRODUCTION TO LINUX

INTRODUCTION TO LINUX INTRODUCTION TO LINUX REALLY SHORT HISTORY Before GNU/Linux there were DOS, MAC and UNIX. All systems were proprietary. The GNU project started in the early 80s by Richard Stallman Goal to make a free

More information

Perl and R Scripting for Biologists

Perl and R Scripting for Biologists Perl and R Scripting for Biologists Lukas Mueller PLBR 4092 Course overview Linux basics (today) Linux advanced (Aure, next week) Why Linux? Free open source operating system based on UNIX specifications

More information

Operating Systems Lab 1 (Users, Groups, and Security)

Operating Systems Lab 1 (Users, Groups, and Security) Operating Systems Lab 1 (Users, Groups, and Security) Overview This chapter covers the most common commands related to users, groups, and security. It will also discuss topics like account creation/deletion,

More information

IRONKEY D300S SECURE USB 3.0 FLASH DRIVE

IRONKEY D300S SECURE USB 3.0 FLASH DRIVE IRONKEY D300S SECURE USB 3.0 FLASH DRIVE User Guide Document No. 48000130-001.A01 D300S Page 1 of 27 Table of Contents About This Manual... 3 System Requirements...3 Recommendations...3 Setup (Windows

More information

IMPORTANT: Logging Off LOGGING IN

IMPORTANT: Logging Off LOGGING IN These are a few basic Unix commands compiled from Unix web sites, and printed materials. The main purpose is to help a beginner to go around with fewer difficulties. Therefore, I will be adding to this

More information

Unit 2 System startup and shutdown

Unit 2 System startup and shutdown Unit 2 System startup and shutdown Course materials may not be reproduced in whole or in part without the prior written permission of IBM. 5.2 Unit objectives After completing this unit, you should be

More information

commands exercises Linux System Administration and IP Services AfNOG 2015 Linux Commands # Notes

commands exercises Linux System Administration and IP Services AfNOG 2015 Linux Commands # Notes Linux System Administration and IP Services AfNOG 2015 Linux Commands # Notes * Commands preceded with "$" imply that you should execute the command as a general user not as root. * Commands preceded with

More information

CSC 101 Spring 2010 Lab #8 Report Gradesheet

CSC 101 Spring 2010 Lab #8 Report Gradesheet CSC 101 Spring 2010 Lab #8 Report Gradesheet Name WFU Username Lab Section: A B C D Partner s Name (if you had one): Topic Points Notes Pre-lab questions 20 total - 5 at 4 points each Lab report questions

More information

FOR NETWARE. Tested and. Approved

FOR NETWARE. Tested and. Approved 7 v e r s i o n TM FOR NETWARE Tested and Approved Introduction This guide is designed to help you install Backup Exec for NetWare from the Backup Exec Installation CD. It is intended for administrators

More information

Linux Kung Fu. Stephen James UBNetDef, Spring 2017

Linux Kung Fu. Stephen James UBNetDef, Spring 2017 Linux Kung Fu Stephen James UBNetDef, Spring 2017 Introduction What is Linux? What is the difference between a client and a server? What is Linux? Linux generally refers to a group of Unix-like free and

More information

Certification. System Initialization and Services

Certification. System Initialization and Services Certification System Initialization and Services UNIT 3 System Initialization and Services UNIT 3: Objectives Upon completion of this unit the student should be able to: Describe BIOS functions with respect

More information

Chapter-3. Introduction to Unix: Fundamental Commands

Chapter-3. Introduction to Unix: Fundamental Commands Chapter-3 Introduction to Unix: Fundamental Commands What You Will Learn The fundamental commands of the Unix operating system. Everything told for Unix here is applicable to the Linux operating system

More information

Please note that CNE 216 is a brand new course that has never been taught on the George campus; it will be taught for the first time in the fall of

Please note that CNE 216 is a brand new course that has never been taught on the George campus; it will be taught for the first time in the fall of Please note that CNE 216 is a brand new course that has never been taught on the George campus; it will be taught for the first time in the fall of 2015. The materials for this course are still being developed.

More information

Password Changer User Guide

Password Changer User Guide Active@ Password Changer User Guide Copyright 1999-2017, LSOFT TECHNOLOGIES INC. All rights reserved. No part of this documentation may be reproduced in any form or by any means or used to make any derivative

More information

Roadmap. Tevfik Ko!ar. CSC Operating Systems Spring Lecture - III Processes. Louisiana State University. Virtual Machines Processes

Roadmap. Tevfik Ko!ar. CSC Operating Systems Spring Lecture - III Processes. Louisiana State University. Virtual Machines Processes CSC 4103 - Operating Systems Spring 2008 Lecture - III Processes Tevfik Ko!ar Louisiana State University January 22 nd, 2008 1 Roadmap Virtual Machines Processes Basic Concepts Context Switching Process

More information

Commands are in black

Commands are in black Starting From the Shell Prompt (Terminal) Commands are in black / +--------+---------+-------+---------+---------+------ +------ +------ +------ +------ +------ +-- Bin boot dev etc home media sbin bin

More information

MTU Computer Structure

MTU Computer Structure 1 MTU Computer Structure Home directory: h drive Same for Suns & PC s Location to store files Organize files by creating appropriate directories (folders) Subdirectory - any directory within in another

More information

File system links. Week Overview. Hard and symbolic links Process management

File system links. Week Overview. Hard and symbolic links Process management ULI101 Week 08 File system links Week Overview Hard and symbolic links Process management What is a file system Link? A link is a pointer to a file. This pointer associates a file name with a number called

More information

Performing Administrative Tasks

Performing Administrative Tasks This chapter describes how to perform administrative tasks using Cisco CMX. Users who are assigned administration privileges can perform administrative tasks. Cisco CMX User Accounts, page 1 Backing Up

More information

Bamuengine.com. Chapter 7. The Process

Bamuengine.com. Chapter 7. The Process Chapter 7. The Process Introduction A process is an OS abstraction that enables us to look at files and programs as their time image. This chapter discusses processes, the mechanism of creating a process,

More information

Updating E2 Controller Firmware Using UltraSite32

Updating E2 Controller Firmware Using UltraSite32 TECHNICAL BULLETIN Updating E2 Controller Firmware Using UltraSite32 Scope This bulletin outlines the steps necessary to use UltraSite32 to update E2 units. If multiple E2 units are present at a site,

More information

Essential Unix (and Linux) for the Oracle DBA. Revision no.: PPT/2K403/02

Essential Unix (and Linux) for the Oracle DBA. Revision no.: PPT/2K403/02 Essential Unix (and Linux) for the Oracle DBA Revision no.: PPT/2K403/02 Architecture of UNIX Systems 2 UNIX System Structure 3 Operating system interacts directly with Hardware Provides common services

More information

Installing the Product Software

Installing the Product Software CHAPTER 1 The Cisco Configuration Engine is a network management software that acts as a configuration service for automating the deployment, management, and upgrading of network devices and services.

More information

BizMail Manual for Administrator

BizMail Manual for Administrator BizMail Manual for Administrator English Version: 2.0 Page 1 of 7 1 GETTING START Go to http://mailmanagement.ksc.net, fill in the following information to log in; Username: Your username is your domain

More information

StormTracker EMS 2.3 Installation Instructions. Contents. Document Number EMS-A2-GN10-00 July 2002

StormTracker EMS 2.3 Installation Instructions. Contents. Document Number EMS-A2-GN10-00 July 2002 StormTracker EMS 2.3 Installation Instructions Document Number EMS-A2-GN10-00 July 2002 Contents Overview... 2 Basic StormTracker EMS Functionality... 2 Oware and StormTracker EMS... 2 Supported Systems...

More information

idirect Technical Note 1. INTRODUCTION 2. DIFFERENCES BETWEEN INFINITI AND NETMODEM II+ SERIES

idirect Technical Note 1. INTRODUCTION 2. DIFFERENCES BETWEEN INFINITI AND NETMODEM II+ SERIES idirect Technical Note Subject: Recovering infiniti Remotes Date: March 10, 2006 Applies To: Version 6.0.1 and Later 1. INTRODUCTION This technical note contains information and procedures pertaining to:

More information

Whole genome assembly comparison of duplication originally described in Bailey et al

Whole genome assembly comparison of duplication originally described in Bailey et al WGAC Whole genome assembly comparison of duplication originally described in Bailey et al. 2001. Inputs species name path to FASTA sequence(s) to be processed either a directory of chromosomal FASTA files

More information

h/w m/c Kernel shell Application s/w user

h/w m/c Kernel shell Application s/w user Structure of Unix h/w m/c Kernel shell Application s/w. user While working with unix, several layers of interaction occur b/w the computer h/w & the user. 1. Kernel : It is the first layer which runs on

More information

NetWare Configuration with Client 32

NetWare Configuration with Client 32 NetWare Configuration with Client 32 This document covers the use of BiAdmin for Novell NetWare configuration when NetWare Client 32 is installed on your PC. Overview With NetWare Client 32 installed on

More information

First of all, these notes will cover only a small subset of the available commands and utilities, and will cover most of those in a shallow fashion.

First of all, these notes will cover only a small subset of the available commands and utilities, and will cover most of those in a shallow fashion. Warnings Linux Commands 1 First of all, these notes will cover only a small subset of the available commands and utilities, and will cover most of those in a shallow fashion. Read the relevant material

More information

Chapter 02 Linux Installation and Usage

Chapter 02 Linux Installation and Usage Chapter 02 Linux Installation and Usage TRUEFALSE 1. A swap partition contains a filesystem. 2. When a user interacts with his computer, he interacts directly with the kernel of the computer's operating

More information

Oracle AD Controller

Oracle AD Controller Oracle AD Controller AD Controller is ad utilities used to monitor/ control the workers execution. How to run AD controller. Step 1 : Login as Applications Tier user & run the environment file. su applmgr

More information

Lab Authentication, Authorization, and Accounting

Lab Authentication, Authorization, and Accounting Objectives Given a scenario, select the appropriate authentication, authorization, or access control Install and configure security controls when performing account management, based on best practices

More information

Unix Introduction to UNIX

Unix Introduction to UNIX Unix Introduction to UNIX Get Started Introduction The UNIX operating system Set of programs that act as a link between the computer and the user. Developed in 1969 by a group of AT&T employees Various

More information

Upgrading the Server Software

Upgrading the Server Software APPENDIXB This appendix describes how to upgrade or reinstall the Cisco PAM server software, desktop client software, and Gateway module firmware. Contents Upgrade Notes for Release 1.5.0, page B-2 Obtaining

More information

ECE 550D Fundamentals of Computer Systems and Engineering. Fall 2017

ECE 550D Fundamentals of Computer Systems and Engineering. Fall 2017 ECE 550D Fundamentals of Computer Systems and Engineering Fall 2017 The Operating System (OS) Prof. John Board Duke University Slides are derived from work by Profs. Tyler Bletsch and Andrew Hilton (Duke)

More information

Welcome to getting started with Ubuntu Server. This System Administrator Manual. guide to be simple to follow, with step by step instructions

Welcome to getting started with Ubuntu Server. This System Administrator Manual. guide to be simple to follow, with step by step instructions Welcome to getting started with Ubuntu 12.04 Server. This System Administrator Manual guide to be simple to follow, with step by step instructions with screenshots INDEX 1.Installation of Ubuntu 12.04

More information

FIRST LOG IN / LOG OUT WARNING!

FIRST LOG IN / LOG OUT WARNING! Information Technology Department - San Diego Unified School District Welcome to Active Directory! Laptop User Experience Guide Congratulations! Your site has been migrated to the new Active Directory

More information

TruePort. User guide. Part number: Date: 10 July Navigating around this manual. Using this on-line manual. See page 4.

TruePort. User guide. Part number: Date: 10 July Navigating around this manual. Using this on-line manual. See page 4. TruePort User guide Part number: 5500030-19 Date: 10 July 2002 Navigating around this manual Using this on-line manual. See page 4. Fast Contents. See page 6. Contents. See page 7. Quick reference. See

More information

Introduction. What is Linux? What is the difference between a client and a server?

Introduction. What is Linux? What is the difference between a client and a server? Linux Kung Fu Introduction What is Linux? What is the difference between a client and a server? What is Linux? Linux generally refers to a group of Unix-like free and open-source operating system distributions

More information

Using RANCID. Contents. 1 Introduction Goals Notes Install rancid Add alias Configure rancid...

Using RANCID. Contents. 1 Introduction Goals Notes Install rancid Add alias Configure rancid... Using RANCID Contents 1 Introduction 2 1.1 Goals................................. 2 1.2 Notes................................. 2 2 Install rancid 2 2.1 Add alias............................... 3 2.2 Configure

More information

First of all, these notes will cover only a small subset of the available commands and utilities, and will cover most of those in a shallow fashion.

First of all, these notes will cover only a small subset of the available commands and utilities, and will cover most of those in a shallow fashion. Warnings 1 First of all, these notes will cover only a small subset of the available commands and utilities, and will cover most of those in a shallow fashion. Read the relevant material in Sobell! If

More information

Mailbox Manager Getting Started Guide. Licensing Installation Options System Requirements Installation Instructions

Mailbox Manager Getting Started Guide. Licensing Installation Options System Requirements Installation Instructions Mailbox Manager Getting Started Guide Licensing Installation Options System Requirements Installation Instructions Mailbox Manager Release 5.4 December 2006 Table of Contents Introduction... 1 Licenses...

More information

Introduction p. 1 Who Should Read This Book? p. 1 What You Need to Know Before Reading This Book p. 2 How This Book Is Organized p.

Introduction p. 1 Who Should Read This Book? p. 1 What You Need to Know Before Reading This Book p. 2 How This Book Is Organized p. Introduction p. 1 Who Should Read This Book? p. 1 What You Need to Know Before Reading This Book p. 2 How This Book Is Organized p. 2 Conventions Used in This Book p. 2 Introduction to UNIX p. 5 An Overview

More information

5/8/2012. Controlling User Processes Chapter 10

5/8/2012. Controlling User Processes Chapter 10 Controlling User Processes Chapter 10 To describe the concept of a process, and execution of multiple processes on a computer system with a single CPU To explain how a shell executes commands To discuss

More information

Processes. System tasks Campus-Booster ID : **XXXXX. Copyright SUPINFO. All rights reserved

Processes. System tasks Campus-Booster ID : **XXXXX.  Copyright SUPINFO. All rights reserved Processes System tasks Campus-Booster ID : **XXXXX www.supinfo.com Copyright SUPINFO. All rights reserved Processes Your trainer Presenter s Name Title: **Enter title or job role. Accomplishments: **What

More information

Installing Prime Optical

Installing Prime Optical 5 CHAPTER This section describes how to install Cisco Prime Optical 9.8 with an Oracle 11g database. To ensure a successful installation, use the checklist provided in the Installation Scenarios and Checklists,

More information

Managing WCS User Accounts

Managing WCS User Accounts CHAPTER 7 This chapter describes how to configure global e-mail parameters and manage WCS user accounts. It contains these sections: Adding WCS User Accounts, page 7-1 Viewing or Editing User Information,

More information

Set 1 MCQ Which command is used to sort the lines of data in a file in reverse order A) sort B) sh C) st D) sort -r

Set 1 MCQ Which command is used to sort the lines of data in a file in reverse order A) sort B) sh C) st D) sort -r 1. Which symbol will be used with grep command to match the pattern pat at the beginning of a line? A) ^pat B) $pat C) pat$ D) pat^ 2. Which command is used to sort the lines of data in a file in reverse

More information

Accessing the Online Application

Accessing the Online Application Accessing the Online Application The online application is available in the onboard community. Prospective families must have a username and password in order to access the community. Admissions Managers

More information

Virtual Data Center (vdc) Manual

Virtual Data Center (vdc) Manual Virtual Data Center (vdc) Manual English Version 1.0 Page 1 of 43 Content 1 HOW TO USE CLOUD PORTAL (VMWARE VIRTUAL DATA CENTER)... 3 2 VMWARE SYSTEM DETAILS... 5 3 HOW TO MANAGE VIRTUAL MACHINE... 6 Edit

More information

EMC SourceOne for Microsoft SharePoint Version 6.7

EMC SourceOne for Microsoft SharePoint Version 6.7 EMC SourceOne for Microsoft SharePoint Version 6.7 Administration Guide P/N 300-012-746 REV A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2011

More information

SAM Server Utility User s Guide

SAM Server Utility User s Guide SAM Server Utility User s Guide Updated July 2014 Copyright 2010, 2012, 2014 by Scholastic Inc. All rights reserved. Published by Scholastic Inc. PDF0157 (PDF) SCHOLASTIC, READ 180, SYSTEM 44, SCHOLASTIC

More information

Activant Prophet 21. DynaChange Designer

Activant Prophet 21. DynaChange Designer Activant Prophet 21 DynaChange Designer This class is designed for System Administrators familiar with Prophet 21 modules and screens Objectives Create and assign user roles Assign rights to users Set

More information

Settings tab. User guide

Settings tab. User guide Settings tab User guide Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Settings overview... 2 2. Settings tab selections... 3 Backup user identity... 3 Email server settings... 4 Email

More information

How To Configure PowerAlert on Linux with the APC BackUPS Pro 280VA (v2.0, 5Sept2002)

How To Configure PowerAlert on Linux with the APC BackUPS Pro 280VA (v2.0, 5Sept2002) How To Configure PowerAlert on Linux with the APC BackUPS Pro 280VA (v2.0, 5Sept2002) This How-To explains the steps involved in setting up a Dell or Penguin computer system with Red Hat Linux v7.3 for

More information

Introduction to Linux

Introduction to Linux Introduction to Linux Mukesh Pund Principal Scientist, NISCAIR, New Delhi, India History In 1969, a team of developers developed a new operating system called Unix which was written using C Linus Torvalds,

More information

Getting Started with UNIX

Getting Started with UNIX Getting Started with UNIX What is UNIX? Boston University Information Services & Technology Course Number: 4000 Course Instructor: Kenny Burns Operating System Interface between a user and the computer

More information

V1.1. AIX 5L System Administration I: Implementation. (Course Code AU14) Student Exercises ERC 7.0. IBM Learning Services Worldwide Certified Material

V1.1. AIX 5L System Administration I: Implementation. (Course Code AU14) Student Exercises ERC 7.0. IBM Learning Services Worldwide Certified Material V1.1 AIX 5L System Administration I: Implementation (Course Code AU14) Student Exercises ERC 7.0 IBM Learning Services Worldwide Certified Material Student Exercises Trademarks The reader should recognize

More information

G54ADM Sample Exam Questions and Answers

G54ADM Sample Exam Questions and Answers G54ADM Sample Exam Questions and Answers Question 1 Compulsory Question (34 marks) (a) i. Explain the purpose of the UNIX password file. (2 marks) ii. Why doesn t the password file contain passwords? (2

More information

HR-Lite Database & Web Service Setup Guide

HR-Lite Database & Web Service Setup Guide HR-Lite Database & Web Service Setup Guide Version: 1.00 HR21 Limited All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical,

More information

Linux Kung Fu. Ross Ventresca UBNetDef, Fall 2017

Linux Kung Fu. Ross Ventresca UBNetDef, Fall 2017 Linux Kung Fu Ross Ventresca UBNetDef, Fall 2017 GOTO: https://apps.ubnetdef.org/ What is Linux? Linux generally refers to a group of Unix-like free and open source operating system distributions built

More information

MassTransit 6.0 Installation Guide for Enterprise and Professional Servers on Macintosh

MassTransit 6.0 Installation Guide for Enterprise and Professional Servers on Macintosh MassTransit 6.0 Installation Guide for Enterprise and Professional Servers on Macintosh March 11, 2009 Group Logic, Inc. 1100 North Glebe Road, Suite 800 Arlington, VA 22201 Phone: 703-528-1555 Fax: 703-528-3296

More information

technical bulletin Updating E2 Controller Firmware Using Ultrasite32

technical bulletin Updating E2 Controller Firmware Using Ultrasite32 Scope technical bulletin Updating E2 Controller Firmware Using Ultrasite32 This bulletin outlines the steps necessary to use UltraSite32 to update E2 units. If multiple E2 units are present at a site,

More information

Metastorm BPM Release 7.6

Metastorm BPM Release 7.6 Metastorm BPM Release 7.6 Administration Guide May 2008 Metastorm Inc. email: inquiries@metastorm.com http://www.metastorm.com Metastorm BPM Release 7.6 Copyrights and Trademarks 1996-2008 Metastorm Inc.

More information

Processes. Process Concept

Processes. Process Concept Processes These slides are created by Dr. Huang of George Mason University. Students registered in Dr. Huang s courses at GMU can make a single machine readable copy and print a single copy of each slide

More information

Users Manual September 24, 2006

Users Manual September 24, 2006 Users Manual September 24, 2006 Cirrata Basics: 1. Getting Started and Password Management a. Getting Started and System Requirements b. Confirming Your Login and Password(s) c. How to Change Your Cirrata

More information

UNIX System Administration

UNIX System Administration $!... 14:13 $$... 14:13.netrc...12:27-28 /etc/fstab... 6:25 /etc/hosts.equiv... 8:23 /etc/inittab Entries... 4:8 /etc/netmasks... 8:22 /etc/shells... 12:25 /home... 6:69 /tmp...6:61-67 /usr... 6:70 /var...

More information

Faculty Web Page Management System. Help Getting Started

Faculty Web Page Management System. Help Getting Started Faculty Web Page Management System Help Getting Started 2 Table of Contents Faculty Web Page Management System...1 Help Getting Started...1 Table of Contents...2 Manage My Personal Information...3 Creating

More information