使用 Perl实现系统管理自动化 第二版(影印版) mobi 下载 网盘 caj lrf pdf txt 阿里云

使用 Perl实现系统管理自动化 第二版(影印版)电子书下载地址
- 文件名
- [epub 下载] 使用 Perl实现系统管理自动化 第二版(影印版) epub格式电子书
- [azw3 下载] 使用 Perl实现系统管理自动化 第二版(影印版) azw3格式电子书
- [pdf 下载] 使用 Perl实现系统管理自动化 第二版(影印版) pdf格式电子书
- [txt 下载] 使用 Perl实现系统管理自动化 第二版(影印版) txt格式电子书
- [mobi 下载] 使用 Perl实现系统管理自动化 第二版(影印版) mobi格式电子书
- [word 下载] 使用 Perl实现系统管理自动化 第二版(影印版) word格式电子书
- [kindle 下载] 使用 Perl实现系统管理自动化 第二版(影印版) kindle格式电子书
内容简介:
《使用 Perl实现系统管理自动化(第2版)(影印版)》内容简介:如果你从事任何系统管理方面的工作,就必须应对日益复杂的工作环境以及对你的时间不断增加的需求。《使用Perl实现系统管理自动化 第二版》不仅提供了可用于工作的恰当工具,还给出了许多建议,帮助你解决特定问题以及安全地自动处理重复事务。这一版的“*书”经过更新和扩充,涵盖了*的操作系统、技术和Perl模块,将会帮助你:
* 管理用户账户
* 监测文件系统和进程
* 处理XML和YAML等格式的配置文件
* 使用DBI管理数据库,包括MySQL、MS SQL和Oracle
* 处理LDAP和Active Directory等目录服务
* 编写脚本管理电子邮件协议和垃圾邮件
* 高效地创建、处理和分析日志文件
* 管理网络名称和配置服务,包括NIS、DNS和DHCP
* 维护、监测和映射网络服务
* 提高文件系统、进程和网络的安全性
这一版的附录中还包含了额外内容,帮助你快速掌握XML/XPath、LDAP、SNMP和SQL等技术。《使用 Perl实现系统管理自动化(第2版)(影印版)》在手并结合Perl,你将花费更少的资源,付出更少的劳动,大大减少烦恼,让你事半功倍。
书籍目录:
Preface
1. Introduction
Automation Is a Must
How Perl Can Help You
This Book Will Show You How
What You Need
Some Notes About the Perl Versions Used for This Book
What About Perl 5.10?
What About Strawberry Perl?
What About Perl 6?
Some Notes About Using Vista with the Code in This Book
Locating and Installing Modules
Installing Modules on Unix
Installing Modules on Win32
It’s Not Easy Being Omnipotent
Don’t Do It
Drop Your Privileges As Soon As Possible
Be Careful When Reading Data
Be Careful When Writing Data
Avoid Race Conditions
.Enjoy
References for More Information
2. Filesystems
Perl to the Rescue
Filesystem Differences
Unix
Windows-Based Operating Systems
Mac OS X
Filesystem Differences Summary
Dealing with Filesystem Differences from Perl
Walking or Traversing the Filesystem by Hand
Walking the Filesystem Using the File::Find Module
Walking the Filesystem Using the File::Find::Rule Module
Manipulating Disk Quotas
Editing Quotas with edquota Trickery
Editing Quotas Using the Quota Module
Editing NTFS Quotas Under Windows
Querying Filesystem Usage
Module Information for This Chapter
References for More Information
3. User Accounts
Unix User Identities
The Classic Unix Password File
Changes to the Password File in BSD 4.4 Systems
Shadow Passwords
Windows-Based Operating System User Identities
Windows User Identity Storage and Access
Windows User ID Numbers
Windows Passwords Don’t Play Nice with Unix Passwords
Windows Groups
Windows User Rights
Building an Account System to Manage Users
The Backend Database
The Low-Level Component Library
The Process Scripts
Account System Wrap-Up
Module Information for This Chapter
References for More Information
Unix Password Files
Windows User Administration
4. User Activity
Process Management
Windows-Based Operating System Process Control
Unix Process Control
File and Network Operations
Tracking File Operations on Windows
Tracking Network Operations on Windows
Tracking File and Network Operations in Unix
Module Information for This Chapter
Installing Win32::Setupsup
References for More Information
5. TCP/IP Name and Configuration Services
Host Files
Generating Host Files
Error-Checking the Host File Generation Process
Improving the Host File Output
Incorporating a Source Code Control System
NIS, NIS+, and WINS
NIS+
Windows Internet Name Server (WINS)
Domain Name Service (DNS)
Generating DNS (BIND) Configuration Files
DNS Checking: An Iterative Approach
DHCP
Active Probing for Rogue DHCP Servers
Monitoring Legitimate DHCP Servers
Module Information for This Chapter
References for More Information
6. Working with Configuration Files
Configuration File Formats
Binary
Naked Delimited Data
Key/Value Pairs
Markup Languages
All-in-One Modules
Advanced Configuration Storage Mechanisms
Module Information for This Chapter
References for More Information
XML and YAML
7. SQL Database Administration
Interacting with a SQL Server from Perl
Using the DBI Framework
Using ODBC from Within DBI
Server Documentation
MySQL Server via DBI
Oracle Server via DBI
Microsoft SQL Server via ODBC
Database Logins
Monitoring Space Usage on a Database Server
Module Information for This Chapter
References for More Information
DBI
Microsoft SQL Server
ODBC
Oracle
8. Email
Sending Mail
Getting sendmail (or a Similar Mail Transport Agent)
Using the OS-Specific IPC Framework to Drive a Mail Client
Speaking the Mail Protocols Directly
Common Mistakes in Sending Email
Overzealous Message Sending
Subject Line Waste
Insufficient Information in the Message Body
Fetching Mail
Talking POP3 to Fetch Mail
Talking IMAP4rev1 to Fetch Mail
Processing Mail
Dissecting a Single Message
Dissecting a Whole Mailbox
Dealing with Spam
Support Mail Augmentation
Module Information for This Chapter
References for More Information
9. Directory Services
What’s a Directory?
Finger: A Simple Directory Service
The WHOIS Directory Service
LDAP: A Sophisticated Directory Service
LDAP Programming with Perl
The Initial LDAP Connection
Performing LDAP Searches
Entry Representation in Perl
Adding Entries with LDIF
Adding Entries with Standard LDAP Operations
Deleting Entries
Modifying Entry Names
Modifying Entry Attributes
Deeper LDAP Topics
Putting It All Together
Active Directory Service Interfaces
ADSI Basics
Using ADSI from Perl
Dealing with Container/Collection Objects
Identifying a Container Object
So How Do You Know Anything About an Object?
Searching
Performing Common Tasks Using the WinNT and LDAP Namespaces
Working with Users via ADSI
Working with Groups via ADSI
Working with File Shares via ADSI
Working with Print Queues and Print Jobs via ADSI
Working with Windows-Based Operating System Services via ADSI
Module Information for This Chapter
References for More Information
LDAP
ADSI
10. Log Files
Reading Text Logs
Reading Binary Log Files
Using unpack()
Calling an OS (or Someone Else’s) Binary
Using the OS’s Logging API
Structure of Log File Data
Dealing with Log File Information
Space Management of Logging Information
Log Parsing and Analysis
Writing Your Own Log Files
Logging Shortcuts and Formatting Help
Basic/Intermediate Logging Frameworks
Advanced Logging Framework
Module Information for This Chapter
References for More Information
11. Security
Noticing Unexpected or Unauthorized Changes
Local Filesystem Changes
Changes in Data Served Over the Network
Noticing Suspicious Activities
Local Signs of Peril
Finding Problematic Patterns
Danger on the Wire, or “Perl Saves the Day”
Preventing Suspicious Activities
Suggest Better Passwords
Reject Bad Passwords
Module Information for This Chapter
References for More Information
12. SNMP
Using SNMP from Perl
Sending and Receiving SNMP Traps, Notifications, and Informs
Alternative SNMP Programming Interfaces
Module Information for This Chapter
References for More Information
13. Network Mapping and Monitoring
Network Mapping
Discovering Hosts
Discovering Network Services
Physical Location
Presenting the Information
Textual Presentation Tools
Graphical Presentation Tools
Monitoring Frameworks
Extending Existing Monitoring Packages
What’s Left?
Module Information for This Chapter
References for More Information
14. Experiential Learning
Playing with Timelines
Task One: Parsing crontab Files
Task Two: Displaying the Timeline
Task Three: Writing Out the Correct XML File
Putting It All Together
Summary: What Can We Learn from This?
Playing with Geocoding
Geocoding from Postal Addresses
Geocoding from IP Addresses
Summary: What Can We Learn from This?
Playing with an MP3 Collection
Summary: What Can We Learn from This?
One Final Exploration
Part One: Retrieving the Wiki Page with WWW::Mechanize
Part Two: Extracting the Data
Part Three: Geocoding and Mapping the Data
Summary: What Can We Learn from This?
Remember to Play
Module Information for This Chapter
Source Material for This Chapter
A. The Eight-Minute XML Tutorial
B. The 10-Minute XPath Tutorial
C. The 10-Minute LDAP Tutorial
D. The 15-Minute SQL Tutorial
E. The Five-Minute RCS Tutorial
F. The Two-Minute VBScript-to-Perl Tutorial
G. The 20-Minute SNMP Tutorial
Index
作者介绍:
David N.Blank-Edelman是美国东北大学计算机与信息科学学院的技术主任,拥有25年在多种平台上的系统/网络管理员经验。
出版社信息:
暂无出版社相关信息,正在全力查找中!
书籍摘录:
FAT filesystems are case-insensitive. In Unix, an attempt to open a file using thewrong case (i.e., MYFAVORITEFILE versus myfavoritefile) will fail, but with FATor VFAT, this will succeed with no problem.
Instead of a forward slash, FAT uses the backward slash () as its path separator.This has a direct ramification for the Perl programmer, because the backslash is aquoting character in Perl. Paths written in single quotes with only single separators(e.g, Spathe' dirdirfilename') are just fine. However, situations in which youneed to place multiple backslashes next to each other (e.g, serverdirfile) arepotential trouble. In those cases, you have to be vigilant in doubling any multiplebackslashes. Some Perl functions and some Perl modules will accept paths withforward slashes, but you shouldn't count on this convention when programming.
It is better to bite the bullet and write winnttemp than to learn that yourcode breaks because the conversion hasn't been done for you.
FAT files and directories have special flags associated with them that are calledattributes. Example attributes include "Read-only" and "System."
The root of a FAT filesystem is specified starting with the drive letter on which thefilesystem resides. For instance, the absolute path for a file might be specified asc : homecindydocsresumecurrent.doc.
FAT32 and NTFS filesystems have the same semantics as VFAT filesystems. They sharethe same support for long filenames and use the same root designator. NTFS is moresophisticated in its name support, however, because it allows these names to be specified using Unicode. Unicode is a multibyte character encoding scheme that can be usedto represent all of the characters of all of the written languages on the planet.NTFS also has some functional differences that distinguish it from the other Windowsand basic Unix filesystems. Later in this chapter, we will write some code to take advantage of some of these differences, such as filesystem quotas. NTFS supports ACLs,which provide a fine-grained permission mechanism for file and directory access.
在线阅读/听书/购买/PDF下载地址:
原文赏析:
暂无原文赏析,正在全力查找中!
其它内容:
媒体评论
“直到系统管理员阅读本书前,存在太多的任务本可以(并且应该)自动化完成但却没有。Peri是一种强大的工具,David向我们展示了如何让系统管理员付出更少劳动就能将系统掌控得更好。” ——Peter Baer Galvin,Corporate Technologies 公司首席技术官、IT架构师
前言
.
书籍介绍
《使用 Perl实现系统管理自动化(第2版)(影印版)》内容简介:如果你从事任何系统管理方面的工作,就必须应对日益复杂的工作环境以及对你的时间不断增加的需求。《使用Perl实现系统管理自动化 第二版》不仅提供了可用于工作的恰当工具,还给出了许多建议,帮助你解决特定问题以及安全地自动处理重复事务。这一版的“水獭书”经过更新和扩充,涵盖了最新的操作系统、技术和Perl模块,将会帮助你:
* 管理用户账户
* 监测文件系统和进程
* 处理XML和YAML等格式的配置文件
* 使用DBI管理数据库,包括MySQL、MS SQL和Oracle
* 处理LDAP和Active Directory等目录服务
* 编写脚本管理电子邮件协议和垃圾邮件
* 高效地创建、处理和分析日志文件
* 管理网络名称和配置服务,包括NIS、DNS和DHCP
* 维护、监测和映射网络服务
* 提高文件系统、进程和网络的安全性
这一版的附录中还包含了额外内容,帮助你快速掌握XML/XPath、LDAP、SNMP和SQL等技术。《使用 Perl实现系统管理自动化(第2版)(影印版)》在手并结合Perl,你将花费更少的资源,付出更少的劳动,大大减少烦恼,让你事半功倍。
网站评分
书籍多样性:4分
书籍信息完全性:8分
网站更新速度:9分
使用便利性:8分
书籍清晰度:3分
书籍格式兼容性:7分
是否包含广告:9分
加载速度:4分
安全性:6分
稳定性:8分
搜索功能:4分
下载便捷性:3分
下载点评
- 体验满分(249+)
- 赞(451+)
- 在线转格式(372+)
- 推荐购买(659+)
- 服务好(175+)
- 内容完整(221+)
- 经典(207+)
- 四星好评(645+)
- 速度快(157+)
- 无颠倒(264+)
下载评价
- 网友 后***之:
强烈推荐!无论下载速度还是书籍内容都没话说 真的很良心!
- 网友 步***青:
。。。。。好
- 网友 宓***莉:
不仅速度快,而且内容无盗版痕迹。
- 网友 益***琴:
好书都要花钱,如果要学习,建议买实体书;如果只是娱乐,看看这个网站,对你来说,是很好的选择。
- 网友 堵***洁:
好用,支持
- 网友 马***偲:
好 很好 非常好 无比的好 史上最好的
- 网友 堵***格:
OK,还可以
- 网友 国***芳:
五星好评
- 网友 訾***雰:
下载速度很快,我选择的是epub格式
- 网友 芮***枫:
有点意思的网站,赞一个真心好好好 哈哈
- 网友 居***南:
请问,能在线转换格式吗?
- 网友 薛***玉:
就是我想要的!!!
- 网友 晏***媛:
够人性化!
喜欢"使用 Perl实现系统管理自动化 第二版(影印版)"的人也看了
剑桥商务英语初级学生用书 BENCHMARK:Student's Book(含盘)——新东方大愚英语学习丛书 mobi 下载 网盘 caj lrf pdf txt 阿里云
几何原本/世界经典科普读本 mobi 下载 网盘 caj lrf pdf txt 阿里云
自卑与超越 精装典藏版 (奥)A.阿德勒(Alfred Adler) 著 曹晚红 译 mobi 下载 网盘 caj lrf pdf txt 阿里云
全国职称计算机考试讲义 真题 预测三合一 中文Windows XP操作系统 2015年-2016年考试专用 mobi 下载 网盘 caj lrf pdf txt 阿里云
全国医学博士英语统考应试指导 mobi 下载 网盘 caj lrf pdf txt 阿里云
2010~2012三年高考真题研究-文科综合 mobi 下载 网盘 caj lrf pdf txt 阿里云
书籍设计/版式设计精品艺术丛书 mobi 下载 网盘 caj lrf pdf txt 阿里云
育人三部曲 苏霍姆林斯基 著,毕涉芝 等译 人民教育出版社【正版书】 mobi 下载 网盘 caj lrf pdf txt 阿里云
企业公司法竞争法教学法规 mobi 下载 网盘 caj lrf pdf txt 阿里云
(2016年版)一级注册消防工程师资格考试辅导教材:消防安全技术实务 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 凡尔纳科幻探险小说全集:金火山 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 9787562055327 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 2022注册公用设备工程师(给水排水)执业资格考试基础考试复习教程 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 意林少年励志馆 勇得天下怯失心 勇气系列3 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 电网工程建设施工安全百错图 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 口算+应用题一年级下册数学口算题卡天天练 乐学熊 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 尤斯伯恩偷偷看里面 花园 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 出国人员英语短训教程(附CD光盘一张) mobi 下载 网盘 caj lrf pdf txt 阿里云
- 英文原版 儿童纽伯瑞文学小说获奖书单12册套装 Newbery 时间的皱折 仙境之桥 手斧男孩 全英文版 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 测绘综合能力考点分析及真题详解(第3版) 人民交通出版社股份有限公司 mobi 下载 网盘 caj lrf pdf txt 阿里云
书籍真实打分
故事情节:9分
人物塑造:5分
主题深度:8分
文字风格:6分
语言运用:9分
文笔流畅:7分
思想传递:6分
知识深度:3分
知识广度:8分
实用性:5分
章节划分:5分
结构布局:3分
新颖与独特:5分
情感共鸣:8分
引人入胜:7分
现实相关:9分
沉浸感:4分
事实准确性:4分
文化贡献:7分