End of Unit 1

• Questions and Answers

• Summary

• Open source and the right to modify

• The GNU Project and the Free Software Foundation

• Linus Torvalds and the Linux kernel

• Red Hat Enterprise Linux and the Fedora Project

• Basic Linux Principles

End of Unit 2

• Questions and Answers

• Summary

• Login name and password

startx

gnome-terminal

passwd

su

nano

End of Unit 3

• Questions and Answers

• Summary

• Running Commands

• Getting Help

End of Unit 4

• Questions and Answers

• Summary

• The Linux filesystem hierarchy

• Command-line file management tools

• The Nautilus file manager

End of Unit 5

• Questions and Answers

• Summary

• All files are owned by one user and one group

• The mode of a file is made up of three permissions: those of the user, the

group and all others

• Three permissions may be granted or denied: read, write and execute

End of Unit 6

• Questions and Answers

• Summary

• Command expansion: $()

• History recall: !string, !num

• Inhibition: '', \

End of Unit 7

• Questions and Answers

• Summary

• Standard I/O channels

• File redirection

• Standard input (<)

• Standard Output (>)

• Standard Error (2>)

• Pipes redirect standard output to standard input

for loops can perform commands on items from a program's standard output

or an explicit list

© 2007 Red Hat, Inc.

All rights reserved

RH033-RHEL5-en-2-20070602

Unit 8 Page 151

End of Unit 8

• Questions and Answers

• Summary

• Extracting Text

cat, less, head, tail, grep, cut

• Analyzing Text

wc, sort, uniq, diff, patch

• Manipulating Text

tr, sed

• Special Search Characters

^, $, [abc], [^abc], [[:alpha:]], [^[:alpha:]], etc

End of Unit 9

• Questions and Answers

• Summary

• Use the three primary modes of vi and vim

• Move the cursor and enter Insert mode

• Change, delete, yank, and put text

• Undo changes

• Search a document

• Save and exit

End of Unit 10

• Questions and Answers

• Summary

system-config-network

• /etc/sysconfig/network-scripts/*

ifup, ifdown

lpr sends text to the printer

date configures date/time from CLI

system-config-date configures date/time from GUI

read VAR sets variable from STDIN

$1, $2, etc map to command-line arguments

$# represents the number of arguments to a script

End of Unit 11

• Questions and Answers

• Summary

• A process is any set of instructions in memory

• Processes are managed with: ps, kill, top, gnome-system-monitor

• Suspend jobs with Ctrl-z, manage with fg, bg

End of Unit 12

• Questions and Answers

• Summary

• local and environment variables

• command line parsing

• configuring the shell environment

• positional parameters and the read command

End of Unit 13

• Questions and Answers

• Summary

• Use locate to quickly find files that are not new

• Use find to search based on very specific criteria and optionally run

commands on matching files

• Use the Gnome Search Tool for an intuitive, but powerful GUI search tool.

End of Unit 14

• Questions and Answers

• Summary

• Firefox, Evolution and Mutt

• Basic network diagnostic tools

• The importance of secure network clients

End of Unit 15

• Questions and Answers

• Summary

• User information is stored in /etc/passwd

• Group information is stored in /etc/group

• Special Permissions: Sticky Bit, SetUID, SetGID

End of Unit 16

• Questions and Answers

• Summary

• Linux filesystem structure

• Using removable media

• Using unformatted floppies

• Archiving and compression

End of Unit 17

• Questions and Answers

• Summary

• System Installation Process

• Managing Services

• Software Installation Tools

• System Security

RH033读书笔记(17) - Summary的更多相关文章

  1. 进入保护模式(三)——《x86汇编语言:从实模式到保护模式》读书笔记17

    (十)保护模式下的栈 ;以下用简单的示例来帮助阐述32位保护模式下的堆栈操作 mov cx,00000000000_11_000B ;加载堆栈段选择子 mov ss,cx mov esp,0x7c00 ...

  2. RH033读书笔记(16)-Lab 17 Installation and Administration Tools

    Lab 17 Installation and Administration Tools Goal: Become familiar with system configuration tools a ...

  3. RH033读书笔记(15)-Lab 16 The Linux Filesystem

    Lab 16 The Linux Filesystem Goal: Develop a better understanding of Linux filesystem essentials incl ...

  4. RH033读书笔记(7)-Lab 8 Introduction to String Processing

    Lab 8 Introduction to String Processing Sequence 1: Exercises in string processing 1. Other than the ...

  5. 『TCP/IP详解——卷一:协议』读书笔记——17

    2013-08-27 15:37:42 6.5 ICMP端口不可达差错 端口不可达报文是ICMP差错报文的一种,它是ICMP不可达报文中的一种,以此来看一看ICMP差错报文中所附加的信息.使用UDP来 ...

  6. OCA读书笔记(17) - 移动数据

    Sql*load 1. sql*loader的文件有哪些? 日志文件:概述了作业的成功与失败以及所有相关错误的细节 错误文件(bad file):从输入文件中抽取的行可能会被sqlldr丢弃(原因可能 ...

  7. OCP读书笔记(17) - 计划任务

    轻量级作业: 也称为持久性轻量级作业,如果当我们的数据库每秒钟需要创建.删除或修改数十个或数百个作业时,使用轻量级作业是降低开销的最佳方法 常规作业:是由oracle 11g Scheduler 所支 ...

  8. RH033读书笔记(2)-Lab 3 Getting Help with Commands

    Lab 3 Getting Help with Commands Sequence 1: Using the Help Tools 1. man -f keyword whatis keyword l ...

  9. RH033读书笔记(5)-Lab 6 Exploring the Bash Shell

    Lab 6 Exploring the Bash Shell Sequence 1: Directory and file organization 1. Log in as user student ...

随机推荐

  1. c语言,数据类型转换

    在执行算术运算时,计算机比C语言的限制更多.为了让计算机执行算术运算,通常要求操作数有相同的大小(即位的数量相同),并且要求存储的方式也相同.计算机可能可以直接将两个16位整数相加,但是不能直接将16 ...

  2. Swift - 设置应用程序图标的提醒个数(右上角小红圈)

    使用UILocalNotification除了可以实现本地消息的推送功能(可以设置推送内容,推送时间,提示音),还可以设置应用程序右上角的提醒个数. 下面演示如何设置,效果图如下: --- AppDe ...

  3. Qt入门-字符串类QString

    原地址:http://blog.csdn.net/xgbing/article/details/7770854 QString是Unicode字符的集合,它是Qt API中使用的字符串类. QStri ...

  4. QT在构造函数中退出程序

    原地址:http://www.tuicool.com/articles/RZnYze 在QT的界面类的构造过程中,如果想退出整个程序,暴力的做法是调用exit(-1)进行,另外一种不是那么暴力的方式如 ...

  5. 用DELPHI的RTTI实现数据集的简单对象化

    在<强大的DELPHI RTTI--兼谈需要了解多种开发语言>一文中,我说了一下我用DELPHI的RTTI实现了数据集的简单对象化.本文将详细介绍一下我的实现方法.     首先从一个简单 ...

  6. Spring Boot 分布式Session状态保存Redis

    在使用spring boot做负载均衡的时候,多个app之间的session要保持一致,这样负载到不同的app时候,在一个app登录之后,而打到另外一台服务器的时候,session丢失. 常规的解决方 ...

  7. Swift - 从ALAsset中获取照片的原图并转换成NSData

    ALAsset类代表相册中的每个资源文件,可以通过它获取照片的相关信息,及其对应的原图,全屏图,缩略图等. 当我们想通过一个照片的ALAsset对象,来获取这张照片的原图并将其转换成NSData数据, ...

  8. Java设计模式---外观模式

    外观模式(Facade) 外观模式的意图是:为子系统提供一个接口,便于它的使用.   解释: 简单的说,外观模式就是封装多个上层应用需要的方法,使得上层调用变得简单,为上层提供简单的接口,是设计模式中 ...

  9. winform基础——实现简易赈灾物资发放登记系统

    using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threa ...

  10. ASP.NET - List<> 绑定 DropDownList

    代码: //声明泛型 List<category> inof = new List<category>();//二级分类 //声明类使用的对象类 public class ca ...