Free Essay

Nt 1430 Final Review

In:

Submitted By tparker77
Words 1334
Pages 6
NT1430 Final Review

1. Know what a swap partition is used for.
a. The swap partition is an independent section of the hard disk used solely for swapping; no other files can reside there. Swap partition is used to turn the hard drive into extra RAM.
2. Know what an architecture is, and which are supported by Fedora.
a. 32 and 64 bit
b. Fedora CDs and DVDs hold programs compiled to run on a specific processor architecture (class of processors, or CPUs)
c. There are several that Fedora supports:
i. EM64T/AMD64 ii. A 64 bit distribution allows each process to address more than 4 gigabytes of RAM. iii. I383/i686 (Intel x86) iv. X86_64 (AMD64 and Intel EM64T)
v. Mac PowerPC (PPC)
3. Know how the root of the file system is represented.
a. The root is represented by a /
b. Fedora uses the Filesystem Hierarchy Standard (FHS) file system structure, which defines the names, locations, and permissions for many file types and directories.
c. The two most important elements of FHS compliance are:
i. Compatibility with other FHS-compliant systems ii. The ability to mount a /usr/ partition as read-only. This is especially crucial, since /usr/ contains common executables and should not be changed by users. In addition, since /usr/ is mounted as read-only, it should be mountable from the CD-ROM drive or from another machine via a read-only NFS mount.

4. Know what the cp command is used for.
a. The Linux cp command is usually used to copy files and copy directory in Linux operating system. The cp command also can be used to make a link to other file in the system.
5. Know what the mv command is used for.
a. The mv command is used to move files or rename to a different location or directory.
6. Know what the tail command does.
a. Tail prints the last N number of lines from given input. By default, it prints last 10 lines of each given file.
7. Know what the less and more commands do and know the difference between them.
a. Less and more do the same thing, they list the output of a file. The difference is that more lets you scroll forward only and less lets you scroll both ways.
8. Know how to use the grep command as a filter.
a. It lets you search through a text file or files for any given string.
9. Know all the possible ways to change directory to your users home directory.
a. Cd/ homeusername cd~/
10. Know the difference between an absolute path and a relative path.
a. An absolute path starts at the root of the drive
b. Relative path starts in the directory that you are in
11. Know what the ls command does.
a. Lists the files within a directory
12. Know how to make a file executable.
a. Chmod+x ./fx
13. Know what the pwd command does.
a. Print working directory- tells you what directory you are in
14. Know how to redirect input and output to and from files.
a. > >> |
15. Know what the pipe(|) character does when typing commands on the command line.
a. The pipe command redirects output from one command through another command
16. Know what a process id number is.
a. Is given to a process that is currently running
17. Know what the jobs, fg, and bg commands are used for.
a. Fg moves process to the foreground
b. Bg moves process to the background
c. Jobs is a series of commands that can be connected by pipes. It’s a job number, process ID number, single digit.
18. Know what commands can be used to configure a wireless NIC.
a. IWconfig and IWlist
19. Know what ssh is and what it is used for.
a. SSH is secure shell and is used to input commands into a remote machine to an encrypted one.
20. Know the different run levels.
a. rc0.d - System Halted
b. rc1.d - Single User Mode
c. rc2.d - Single User Mode with Networking
d. rc3.d - Multi-User Mode - boot up in text mode
e. rc4.d - Not yet Defined
f. rc5.d - Multi-User Mode - boot up in X Windows
g. rc6.d - Shutdown & Reboot
21. Know the best way to switch between run levels.
a. CNTRL ALT N is F1-F8
22. Know how DHCP works.
a. Dynamic Host Control Protocol assigns an IP address to each computer on the network from a specified range.
23. Know which “options” can be set in the dhcpd.conf file.
a. Subnet mask, and IP ranges.
b. Default gateway
24. Know how you would use rpm to install or upgrade a package from the command line.
a. –I to install –u to update
b. Rpm -i Software.rpm
c. Rpm -U Softwarev2.rpm
25. Know how to use the yum program to update a Fedora system.
a. Yum update -y
26. Know which printing protocols are supported by CUPS.
a. IPP, LDP and LPR
27. Know the three different ways to configure the CUPS server.
a. Web interface
b. Command interface
c. CUPS system config program, system-config-printer
28. Know the extension of Linux printer drivers.
a. PPD files
29. Know the syntax used for scp to copy files between systems.
a. Scp host1:file1 host2:file2
30. Know where ssh stores the list of servers it has connected to.
a. E: /etc/hosts.equiv or /etc/ssh/shosts.equiv
31. Know how to configure ssh to only allow access to specific users.
a. Edit the sshd_config file to include the line allow user or deny user(s)
b. SSHD_Config file to include the line AllowUser UserName
32. Know how to configure the ssh server.
a. Manually edit the configuration file or ssh_config for the client
33. Know how to make ssh tunnel the Xwindows protocol.
a. Configure the sshd_config file to allow xwindows on the server and the ssh_config file to allow xwindows on the client. Connect to the server and use the command “echo $DISPLAY localhost”
34. Know how to configure vsftp to run on its own without xinetd.
a. In the configuration file, if listen=NO it will use xinetd. If Listen= YES then vsftp will stand alone.
35. Know what an A record does in a DNS zone.
a. An A record gives you the IPv4 address of a domain
36. Know what a CNAME record is used for.
a. A CNAME record or Canonical Name record is a type of resource record in the Domain Name System (DNS) that specifies that the domain name is an alias of another, canonical domain name.
37. Know which file you would modify to change the configuration of sendmail on a Linux system.
a. /etc/mail/sendmail.mc
38. Know which service in Linux runs the POP and IMAP services.
a. Dovecot
39. Know which configuration file is used by the openLDAP server.
a. /usr/local/etc/openldap/slapd.conf
40. Know what a DSE entry is in an LDAP directory.
a. Root entry in the LDAP directory
41. Know which ports and LDAP server uses.
a. Port 389 not encrypted, Port 636 LDAP/ssh
42. Know how to configure NFS to share directories with other systems over a network.
a. System_config_NFS
b. Editing the add properties of GUI
c. To add a share click add on the toolbar properties
43. Know what the samba server is used for.
a. Samba is a SMB file server used to share and to access remote directories.
44. Know which files samba uses for its configuration.
a. SMB.conf
45. Know the path bind uses to store its zones when it is running in a chroot jail.
a. /chroot/named/etc/namedb
46. Know which chains are in the filter table in the iptables firewall.
a. Input, forward and output
47. What is the Document Root directive used for when configuring apache.
a. /var/www/html

Similar Documents

Free Essay

Industrial Engineering

...McGraw-Hill Create™ Review Copy for Instructor Espinoza. Not for distribution. Course BBE 4505 Omar Espinoza University Of Minnesota NATURAL RESOURCES McGraw-Hill Create™ Review Copy for Instructor Espinoza. Not for distribution. http://create.mcgraw-hill.com Copyright 2012 by The McGraw-Hill Companies, Inc. All rights reserved. Printed in the United States of America. Except as permitted under the United States Copyright Act of 1976, no part of this publication may be reproduced or distributed in any form or by any means, or stored in a database or retrieval system, without prior written permission of the publisher. This McGraw-Hill Create text may include materials submitted to McGraw-Hill for publication by the instructor of this course. The instructor is solely responsible for the editorial content of such materials. Instructors retain copyright of these additional materials. ISBN-10: 1121789048 ISBN-13: 9781121789043 McGraw-Hill Create™ Review Copy for Instructor Espinoza. Not for distribution. Contents 1. Preface 1 2. Methods, Standards, and Work Design: Introduction 7 Problem-Solving Tools 27 3. Tex 29 4. Operation Analysis 79 5. Manual Work Design 133 6. Workplace, Equipment, and Tool Design 185 7. Work Environment Design 239 8. Design of Cognitive Work 281 9. Workplace and Systems Safety 327 10. Proposed Method Implementation 379 11. Time Study 413 12. Performance Rating and Allowances 447 13. Standard Data and Formulas 485 14. Predetermined Time Systems 507...

Words: 294686 - Pages: 1179

Premium Essay

Financial Incusion

...EXECUTIVE SUMMARY: Finance is the life blood of trade, commerce and industry. Now-a-days, banking sector acts as the backbone of modern business. Development of any country mainly depends upon the banking system. Every bank in India has to compulsorily concentrate on Financial Inclusion as it is one of the developing sectors of Indian Economy. It is one of the segments that have a major impact on Indian Economy. The main purpose of this study is to understand the impact of Financial Inclusion on Indian Economy. The study focuses on the financial exclusion and inclusion. It concentrates on the various reasons, causes and consequences of financial exclusion. It also focuses on the initiatives taken by the Government and RBI to expand the coverage of financial inclusion. The various policy been developed with respect to the financial inclusion. The study has majorly focused on 4 objectives: * To understand the reasons for Financial Exclusion in India * To analyze the extent of financial inclusion coverage in India * To list the various measures & initiatives of state / central government with respect to financial inclusion * To understand the link between Industry growth and financial inclusion With the upcoming years there is a strong hope that the vision and mission of financial inclusion will be successful and a large group of customers would enjoy the benefits of banking services. The financial illiteracy of rural masses will no more be a hindrance in...

Words: 18206 - Pages: 73

Premium Essay

Maxwell Report

...OCCUPATIONAL HEALTH AND SAFETY ACT REVIEW March 2004 Chris Maxwell © State of Victoria Printed by State of Victoria, March 2004 ISBN 1920921044 This work is copyright. Apart from any use permitted under the Copyright Act 1968, no part may be reproduced by any process without prior written permission from State of Victoria. Disclaimer: The content in this report is provided for information purposes only. The views expressed herein are those of the author and do not purport to represent the position of the State of Victoria. Neither the author nor the State of Victoria accept any liability to any persons for the information (or the use of such information) which is provided in this review or incorporated into it by reference. The information in this Review is provided on the basis that all persons having access to it undertake responsibility for assessing the relevance and accuracy of its content. OCCUPATIONAL HEALTH AND SAFETY ACT REVIEW March 2004 Chris Maxwell TABLE OF CONTENTS TABLE OF CONTENTS ABBREVIATIONS ACKNOWLEDGEMENTS EXECUTIVE SUMMARY INTRODUCTION CHAPTER 1: A CONSULTATIVE INQUIRY CHAPTER 2: THE SAFETY CONSENSUS PART 1: NEW CHALLENGES FOR OHS 1 3 5 6 15 15 20 24 24 29 46 46 54 60 71 96 96 100 110 120 135 141 159 163 169 177 177 186 192 192 215 222 227 233 233 258 272 284 284 293 328 347 350 354 354 357 360 363 383 387 392 392 397 ...

Words: 160731 - Pages: 643

Premium Essay

Pmda Handbook New Product Developme

...THE PDMA HANDBOOK OF NEW PRODUCT DEVELOPMENT T HIRD E DITION Kenneth B. Kahn, Editor Associate Editors: Sally Evans Kay Rebecca J. Slotegraaf Steve Uban JOHN WILEY & SONS, INC. Cover image: © Les Cunliffe/iStockphoto Cover design: Elizabeth Brooks This book is printed on acid-free paper. Copyright © 2013 by John Wiley & Sons, Inc. All rights reserved Published by John Wiley & Sons, Inc., Hoboken, New Jersey Published simultaneously in Canada No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic, mechanical, photocopying, recording, scanning, or otherwise, except as permitted under Section 107 or 108 of the 1976 United States Copyright Act, without either the prior written permission of the Publisher, or authorization through payment of the appropriate per-copy fee to the Copyright Clearance Center, 222 Rosewood Drive, Danvers, MA 01923, (978) 750-8400, fax (978) 646-8600, or on the web at www.copyright.com. Requests to the Publisher for permission should be addressed to the Permissions Department, John Wiley & Sons, Inc., 111 River Street, Hoboken, NJ 07030, (201) 748-6011, fax (201) 7486008, or online at www.wiley.com/go/permissions. Limit of Liability/Disclaimer of Warranty: While the publisher and author have used their best efforts in preparing this book, they make no representations or warranties with the respect to the accuracy or completeness of the contents of...

Words: 165678 - Pages: 663

Free Essay

The Origins and Development of the English Language (Textbook)

...THE ORIGINS AND DEVELOPMENT OF THE ENGLISH LANGUAGE This page intentionally left blank THE ORIGINS AND DEVELOPMENT OF THE ENGLISH LANGUAGE SIXTH EDITION ± ± John Algeo ± ± ± ± ± Based on the original work of ± ± ± ± ± Thomas Pyles Australia • Brazil • Japan • Korea • Mexico • Singapore • Spain • United Kingdom • United States The Origins and Development of the English Language: Sixth Edition John Algeo Publisher: Michael Rosenberg Development Editor: Joan Flaherty Assistant Editor: Megan Garvey Editorial Assistant: Rebekah Matthews Senior Media Editor: Cara Douglass-Graff Marketing Manager: Christina Shea Marketing Communications Manager: Beth Rodio Content Project Manager: Corinna Dibble Senior Art Director: Cate Rickard Barr Production Technology Analyst: Jamie MacLachlan Senior Print Buyer: Betsy Donaghey Rights Acquisitions Manager Text: Tim Sisler Production Service: Pre-Press PMG Rights Acquisitions Manager Image: Mandy Groszko Cover Designer: Susan Shapiro Cover Image: Kobal Collection Art Archive collection Dagli Orti Prayer with illuminated border, from c. 1480 Flemish manuscript Book of Hours of Philippe de Conrault, The Art Archive/ Bodleian Library Oxford © 2010, 2005 Wadsworth, Cengage Learning ALL RIGHTS RESERVED. No part of this work covered by the copyright herein may be reproduced, transmitted, stored, or used in any form or by any means graphic, electronic, or mechanical, including...

Words: 164520 - Pages: 659

Free Essay

Photoelectrochemistry

...1 1 Fundamentals of Semiconductor Electrochemistry and Photoelectrochemistry Krishnan Rajeshwar The University of Texas at Arlington, Arlington, Texas 1.1 1.2 1.3 1.3.1 1.3.2 1.3.3 1.3.4 1.4 1.4.1 1.4.2 1.4.3 1.5 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.6 1.7 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 Introduction and Scope . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Electron Energy Levels in Semiconductors and Energy Band Model . The Semiconductor–Electrolyte Interface at Equilibrium . . . . . . . . The Equilibration Process . . . . . . . . . . . . . . . . . . . . . . . . . . . . . The Depletion Layer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Mapping of the Semiconductor Band-edge Positions Relative to Solution Redox Levels . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Surface States and Other Complications . . . . . . . . . . . . . . . . . . . Charge Transfer Processes in the Dark . . . . . . . . . . . . . . . . . . . . Current-potential Behavior . . . . . . . . . . . . . . . . . . . . . . . . . . . . Dark Processes Mediated by Surface States or by Space Charge Layer Recombination . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Rate-limiting Steps in Charge Transfer Processes in the Dark . . . . . Light Absorption by the Semiconductor Electrode and Carrier Collection . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Light Absorption...

Words: 180197 - Pages: 721