Linux基础知识培训教材.ppt

上传人:xt****7 文档编号:14854296 上传时间:2020-07-31 格式:PPT 页数:51 大小:594KB
收藏 版权申诉 举报 下载
Linux基础知识培训教材.ppt_第1页
第1页 / 共51页
Linux基础知识培训教材.ppt_第2页
第2页 / 共51页
Linux基础知识培训教材.ppt_第3页
第3页 / 共51页
资源描述:

《Linux基础知识培训教材.ppt》由会员分享,可在线阅读,更多相关《Linux基础知识培训教材.ppt(51页珍藏版)》请在装配图网上搜索。

1、Linux基础知识培训,周建辉2017.09.22,2,本文档的目的,通过本次培训,对Linux操作系统有一个初步的了解,掌握Linux操作系统的相关基础知识及一些常用的命令,并对系统进行日常的维护。,3,课程目标,Linux系统介绍 Linux主要系统分区 文件系统管理 文件类型 文件结构 文件目录权限 常用的Linux命令 VI编辑器的使用 用户和组的管理 网络管理 登录Linux系统的常用工具 Linux系统性能监控工具介绍,4,Linux系统介绍,Linux是一套免费使用和自由传播的类Unix操作系统,是一个多用户、多任务、多线程、多CPU的操作系统,它能运行主要的UNIX工具软件、应

2、用程序和网络协议,它支持32位和64位硬件。Linux继承了Unix以网络为核心的设计思想,是一个性能稳定的多用户网络操作系统。 Linux操作系统诞生于1991 年10 月5 日(这是第一次正式向外公布时间)。Linux可安装在各种计算机硬件设备中,比如手机、平板电脑、路由器、视频游戏控制台、台式计算机、大型机和超级计算机。 Linux存在着许多不同的Linux版本,但它们都使用了Linux内核。,5,Linux系统介绍,Linux存在着许多不同的Linux版本,但它们都使用了Linux内核,系统操作命令基本一样,内部模块稍有不同,如ORACLE Linux,内部就增加对ORACLE数据库的

3、支持,很多操作系统层面的参数已按常规做了预先配置。 常用的Linux版本如下:,6,Linux系统介绍,登录Linux Linux是一个真正的多用户操作系统,允许多个用户同时登录 root是linux权限最大的用户,可以执行一切操作,7,Linux主要系统分区,8,Linux主要系统分区,/ 根目录 所有的目录、文件、设备都在/之下,/就是Linux文件系统的组织者,也是最上级的领导者。 /boot 引导分区 该目录放置系统内核及驱动模块引导程序,需要独立分区 /SWAP 交换分区 类似于Windows的虚拟内存,就是当内存不足的时候,把一部分硬盘空间虚拟成内存使用,操作系 统先把内存中暂时不

4、用的数据,存到硬盘的交换空间,腾出内存来让别的程序运行,从而解决内存容量不足的情况。 SWAP SPACE比内存要慢 在安装时,系统会尝试将交换分区安装到磁盘外端 当有多个磁盘控制器时,在每个磁盘上都建立交换分区 尽量将交换分区安装在访问最频繁的数据区附近,9,Linux主要系统分区,rootOEL64 # df -h Filesystem Size Used Avail Use% Mounted on /dev/sda3 19G 12G 5.3G 70% / -根分区 tmpfs 758M 88K 757M 1% /dev/shm /dev/sda1 97M 68M 25M 74% /boo

5、t -引导分区 rootOEL64 # free -m total used free shared buffers cached Mem: 1514 339 1174 0 101 124 -/+ buffers/cache: 113 1400 Swap: 1535 0 1535 -交换分区,10,文件类型,在linux中,所有东西都被当成文件 文件权限前的第一个字母用来标识文件类型: -:一般文件 d:目录文件 b:块设备文件 c:字符设备文件 l:连接文件 s:socket文件,11,文件类型,oracleOEL64 dev$ ls -al -rw-r-r-. 1 root root 88

6、3 Apr 30 2012 zshrc drwxr-xr-x. 3 root root 60 Sep 22 11:16 bus brw-rw-. 1 root floppy 2, 0 Sep 22 11:16 fd0 crw-rw-. 1 root video 10, 175 Sep 22 11:16 agpgart lrwxrwxrwx. 1 root root 3 Sep 22 11:16 cdrom - sr0 srw-rw-rw-. 1 root root 0 Sep 22 11:16 log,12,文件特点,Linux将每个文件系统mount在系统目录树中使用。 文件区分大小写。 文

7、件以”.”开头的文件为隐含文件 文件名称最多255个字符(所有字符有效,正斜杠除外) oracleOEL64 $ ls -al total 152 drwx-. 26 oracle oinstall 4096 Sep 19 15:59 . drwxr-xr-x. 6 root root 4096 Jun 27 2013 . -rw-r-r-. 1 oracle oinstall 685 Sep 18 17:35 .bash_profile,13,文件结构,/ 根目录 /root root用户主目录 /bin 存放最常用的操作命令 /boot 存放Linux启动的核心文件 /etc 存放各种配置

8、文件 /usr 用户程序 /opt 应用软件安装目录,如数据库等 /home 用户主目录 /mnt 设备/文件系统挂载点 /tmp 临时目录,存放临时文件 /var 可变信息存放区 /proc 虚拟文件系统,包含进程信息 /sbin 系统管理员命令存放目录 /dev 设备文件 /lib 最基本的动态链接共享库,14,文件目录权限,文件或目录的权限位由10位构成,如-rwxr-xr-x。 第一位代表文件/目录类型:d代表目录、-代表文件、l代表链接; 剩下的9位分成3组,每组3位;2-4位描述文件所有者的权限,5-7位描述与文件所有者同一用户组的权限,8-10位则是其它用户的权限。 rwx:每组

9、的3位分别是:读权限、写权限、执行权限,对应的数字分别为4,2,1;如果是-就代表没有这个权限。 例如: -rwxr-xr-x表示这是个普通文件,文件的所有者可以读、写、执行这个文件 ,与文件所有者同组的用户以及其他用户都可以读、执行这个文件,但没有写的权限。,15,文件目录权限,常用文件介绍 /etc/inittab 系统初始化配置文件,init进程需要读取的文件,init进程是所有进程的起点。 /etc/crontab 定时任务配置文件 /etc/shadow 、/etc/passwd 用户配置文件、用户密码配置文件 /etc/group 用户组配置文件 /etc/sysconfig/ne

10、twork-scripts/ifcfg-eth0 网络配置文件 /var/log/messages 系统错误信息 /etc/services 服务与端口信息,16,常用的Linux命令,绝对路径、相对路径 绝对路径 以/开头的完整的路径 oracleOEL64 oracle$ cd /u01/app/oracle oracleOEL64 oracle$ pwd /u01/app/oracle 相对路径 不以/开头 只相对于当前工作目录 oracleOEL64 oracle$ cd /u01/app oracleOEL64 app$ cd ./oracle oracleOEL64 oracle$

11、 pwd /u01/app/oracle,17,常用的Linux命令,. 表示当前目录的上一级目录,即父目录 rootOEL64 tmp# cd /u01/app/oracle rootOEL64 oracle# pwd /u01/app/oracle rootOEL64 oracle# cd . rootOEL64 app# pwd /u01/app . 表示当前目录 rootOEL64 app# pwd /u01/app rootOEL64 app# cd ./oracle rootOEL64 oracle# pwd /u01/app/oracle,18,常用的Linux命令,pwd 显示

12、当前路径 oracleOEL64 oracle$ cd /u01/app/oracle oracleOEL64 oracle$ pwd /u01/app/oracle cd 改变当前目录 oracleOEL64 oracle$ pwd /u01/app/oracle oracleOEL64 oracle$ cd /etc oracleOEL64 app$ pwd /etc,19,常用的Linux命令,ls 查看文件或目录 rootOEL64 u01# ls -al total 28 drwxrwxr-x. 4 oracle oinstall 4096 Sep 19 10:44 . dr-xr-

13、xr-x. 25 root root 4096 Sep 22 11:16 . drwxrwxr-x. 4 oracle oinstall 4096 Sep 19 10:45 app drwxrwxr-x. 2 oracle oinstall 16384 Sep 19 09:33 lost+found cp 复制文件 rootOEL64 oracle# cp /home/oracle/a.txt /tmp/. rootOEL64 oracle# cd /tmp rootOEL64 tmp# ls -al a.txt -rw-r-r-. 1 root root 0 Sep 22 16:27 a.t

14、xt,20,常用的Linux命令,mv 移动或重命名文件 rootOEL64 tmp# mv /tmp/b.txt /home/oracle/. rootOEL64 tmp# cd /home/oracle rootOEL64 oracle# ls -al b.txt -rw-r-r-. 1 root root 0 Sep 22 16:30 b.txt touch 创建空文件 rootOEL64 hanxi# cd /tmp rootOEL64 tmp# touch c.txt rootOEL64 tmp# ls -al c.txt -rw-r-r-. 1 root root 0 Sep 22

15、 16:36 c.txt file 检查文件类型 rootOEL64 tmp# file c.txt c.txt: ASCII text,21,常用的Linux命令,rm 删除文件和目录 rootOEL64 bin# cd /tmp rootOEL64 tmp# rm c.txt rm: remove regular file c.txt? Y 注意:此操作慎重使用,特别对于rm rf,文件和目录一并删除的操作! mkdir 创建新目录 rootOEL64 tmp# mkdir test rootOEL64 tmp# ls -al total 108 drwxrwxrwt. 26 root r

16、oot 4096 Sep 22 16:45 . dr-xr-xr-x. 25 root root 4096 Sep 22 11:16 . drwxr-xr-x. 2 root root 4096 Sep 22 16:45 test rmdir 删除空目录 rootOEL64 tmp# cd /tmp rootOEL64 tmp# rmdir test rootOEL64 tmp# ls -al test ls: cannot access test: No such file or directory,22,常用的Linux命令,cat 显示文件内容 rootOEL64 tmp# cat /t

17、mp/alert.log more 逐屏显示文件内容 rootOEL64 tmp# more /tmp/alert.log less 逐行显示文件内容 rootOEL64 tmp# less /tmp/alert.log,23,常用的Linux命令,date 显示当前时间 rootOEL64 tmp# date Fri Sep 22 17:03:47 CST 2017 cal 显示当前日历 rootOEL64 tmp# cal September 2017 Su Mo Tu We Th Fr Sa 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19

18、20 21 22 23 24 25 26 27 28 29 30,24,常用的Linux命令,head 显示文件开头部分内容 rootOEL64 tmp# head -5 alert.log Tue Sep 19 13:04:31 2017 Starting ORACLE instance (normal) LICENSE_MAX_SESSION = 0 LICENSE_SESSIONS_WARNING = 0 Shared memory segment for instance monitoring created tail 显示文件结尾部分内容 rootOEL64 tmp# tail -5

19、 alert.log Completed: ALTER DATABASE OPEN Fri Sep 22 16:55:43 2017 Starting background process CJQ0 Fri Sep 22 16:55:43 2017 CJQ0 started with pid=22, OS id=5644,25,常用的Linux命令,find 查找文件 rootOEL64 /# find /tmp -name alert.log /tmp/alert.log wc 作统计 rootOEL64 /# cd /tmp rootOEL64 tmp# ls -al *.txt -rw-

20、r-r-. 1 root root 0 Sep 22 16:27 a.txt rootOEL64 tmp# ls -al *.txt|wc -l 1,26,常用的Linux命令,chmod 文件或目录权限修改 rootOEL64 tmp# ls -l a1.txt -rw-r-r-. 1 root root 0 Sep 28 16:45 a1.txt rootOEL64 tmp# chmod +x a1.txt rootOEL64 tmp# ls -l a1.txt -rwxr-xr-x. 1 root root 0 Sep 28 16:45 a1.txt clear 清屏 rootOEL64

21、 tmp# clear chown 改变文件或目录的所有者和组 rootOEL64 tmp# ls -l a.txt -rw-r-r-. 1 root root 0 Sep 22 16:27 a.txt rootOEL64 tmp# chown oracle:oinstall a.txt rootOEL64 tmp# ls -l a.txt -rw-r-r-. 1 oracle oinstall 0 Sep 22 16:27 a.txt,27,常用的Linux命令,diff 比较文件内容 rootOEL64 hanxi# diff a.txt b.txt 2d1 bbbbbbbbbbbbbbb

22、bbbbbbbbbbbbbb grep 过滤文件关键字 rootOEL64 hanxi# ps -ef |grep ora oracle 5543 1 0 16:55 ? 00:00:00 ora_dbrm_orcl oracle 5545 1 0 16:55 ? 00:00:00 ora_dia0_orcl oracle 5547 1 0 16:55 ? 00:00:04 ora_mman_orcl oracle 5549 1 0 16:55 ? 00:00:01 ora_dbw0_orcl,28,常用的Linux命令,mount 加载一个硬件设备 rootOEL64 dev# mount

23、/dev/cdrom rootOEL64 dev# cd /mnt/cdrom su 在不退出登陆的情况下,切换到另外用户 rootOEL64 dev# su - oracle oracleOEL64 $ echo $ORACLE_HOME /u01/app/oracle/product/11.2.0/db_1,29,常用的Linux命令,whoami 显示你自己登陆的用户名 rootOEL64 tmp# whoami root whereis/which 查询命令所在目录以及帮助文档所在目录 rootOEL64 dev# whereis gzip gzip: /bin/gzip /usr/b

24、in/gzip /usr/share/man/man1/gzip.1.gz rootOEL64 dev# which gzip /bin/gzip id 显示用户的UID和GID rootOEL64 dev# su - oracle oracleOEL64 $ id uid=54321(oracle) gid=54321(oinstall) groups=54321(oinstall),54322(dba),30,常用的Linux命令,kill 可以杀死某个正在运行的进程 rootOEL64 dev# kill -9 30247 passwd 设置口令 rootOEL64 dev# passw

25、d oracle Changing password for user oracle. New password: Retype new password: passwd: all authentication tokens updated successfully. history 查询用户的历史命令 rootOEL64 dev# history 50 cd /mnt 51 ls 52 tar -zxvf VMwareTools-9.2.3-1031360.tar.gz ! 重复执行最近一次的命令,31,常用的Linux命令,gzip/gunzip linux标准的压缩/解压缩工具 root

26、OEL64 tmp# gzip alert.log rootOEL64 tmp# ls -ltr total 76 -rw-r-. 1 root root 5997 Sep 22 16:57 alert.log.gz rootOEL64 tmp# gunzip alert.log.gz rootOEL64 tmp# ls -al total 144 drwxrwxrwt. 25 root root 4096 Sep 22 17:44 . dr-xr-xr-x. 25 root root 4096 Sep 22 11:16 . -rw-r-. 1 root root 37568 Sep 22 1

27、6:57 alert.log,32,常用的Linux命令,bzip2/bunzip2 更新的标准压缩/解压缩工具,压缩比更高 rootOEL64 tmp# bzip2 alert.log rootOEL64 tmp# ls -al total 112 drwxrwxrwt. 25 root root 4096 Sep 22 17:45 . dr-xr-xr-x. 25 root root 4096 Sep 22 11:16 . -rw-r-. 1 root root 6594 Sep 22 16:57 alert.log.bz2 rootOEL64 tmp# bunzip2 alert.log

28、.bz2 rootOEL64 tmp# ls -al total 144 drwxrwxrwt. 25 root root 4096 Sep 22 17:46 . dr-xr-xr-x. 25 root root 4096 Sep 22 11:16 . -rw-r-. 1 root root 37568 Sep 22 16:57 alert.log,33,常用的Linux命令,*通配符 将与零个或多个字符匹配 rootOEL64 tmp# pwd /tmp rootOEL64 tmp# ls -al *log* -rw-r-. 1 root root 37568 Sep 22 16:57 al

29、ert.log -rw-r-r-. 1 root root 40960 Sep 28 16:09 alert.log.tar ?通配符 将与任何单个字符匹配 rootOEL64 tmp# pwd /tmp rootOEL64 tmp# ls a.t?t a.txt 通配符 将与中任一字符匹配,类似? rootOEL64 tmp# ls -l a1-2.txt -rw-r-r-. 1 root root 0 Sep 28 16:45 a1.txt -rw-r-r-. 1 root root 0 Sep 28 16:45 a2.txt rootOEL64 tmp# ls -l a1,2.txt -

30、rw-r-r-. 1 root root 0 Sep 28 16:45 a1.txt -rw-r-r-. 1 root root 0 Sep 28 16:45 a2.txt,34,常用的Linux命令,exit 退出当前shell rootOEL64 log# su - oracle oracleOEL64 $ exit logout rootOEL64 log# export 设置、修改和删除环境变量 oracleOEL64 $ export ORACLE_BASE=/u01/app/oracle oracleOEL64 $ echo $ORACLE_BASE /u01/app/oracle

31、,35,常用的Linux命令,ps 显示当前系统运行进程的状态 rootOEL64 log# ps -ef |grep ora oracle 5343 1 0 14:36 ? 00:00:00 ora_pmon_orcl oracle 5345 1 0 14:36 ? 00:00:00 ora_psp0_orcl oracle 5348 1 3 14:36 ? 00:00:01 ora_vktm_orcl oracle 5352 1 0 14:36 ? 00:00:00 ora_gen0_orcl oracle 5354 1 0 14:36 ? 00:00:00 ora_diag_orcl r

32、pm 查看、安装或删除软件包 rootOEL64 log# rpm -qa|grep mysql mysql-server-5.1.66-2.el6_3.i686 mysql-connector-odbc-5.1.5r1144-7.el6.i686 qt-mysql-4.6.2-26.el6_4.i686 mysql-connector-java-5.1.17-6.el6.noarch,36,常用的Linux命令,fdisk 硬盘分区命令 rootOEL64 log# fdisk -l Disk /dev/sda: 32.2 GB, 32212254720 bytes 255 heads, 6

33、3 sectors/track, 3916 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0 x0000786a Device Boot Start End Blocks Id System /dev/sda1 * 1 13 102400 83 Linux Partition 1 do

34、es not end on cylinder boundary. /dev/sda2 13 209 1572864 82 Linux swap / Solaris Partition 2 does not end on cylinder boundary. /dev/sda3 209 2611 19295232 83 Linux /dev/sda4 2611 3916 10483750 83 Linux,37,常用的Linux命令,top 实时显示当前系统运行状态 top - 14:42:55 up 3:56, 1 user, load average: 0.58, 0.60, 0.36 Ta

35、sks: 144 total, 1 running, 142 sleeping, 1 stopped, 0 zombie Cpu0 : 0.3%us, 0.7%sy, 0.0%ni, 99.0%id, 0.0%wa, 0.0%hi, 0.0%si, 0.0%st Mem: 1550364k total, 1119620k used, 430744k free, 78572k buffers Swap: 1572860k total, 0k used, 1572860k free, 821616k cached PID USER PR NI VIRT RES SHR S %CPU %MEM TI

36、ME+ COMMAND 5348 oracle -2 0 774m 13m 11m S 1.0 0.9 0:04.66 oracle 5485 root 20 0 0 0 0 S 0.3 0.0 0:00.07 kworker/0:1 5516 root 20 0 2752 1040 780 R 0.3 0.1 0:00.08 top 1 root 20 0 2948 1440 1224 S 0.0 0.1 0:01.20 init,38,常用的Linux命令,shutdown 关机命令 shutdown -r now 关机重启 shutdown -h now 关机并关闭电源 init Lin

37、ux下的进程初始化工具 init 0 关机 init 1 重启,39,常用的Linux命令,man 在线帮助命令 rootOEL64 tmp# man ls -help 在线帮助命令 rootOEL64 tmp# ls -help Usage: ls OPTION. FILE. 。 Info 在线帮助命令 rootOEL64 tmp# info ls File: coreutils.info, Node: ls invocation, Next: dir invocation, Up: Directo ry listing,40,Vi编辑器的使用,作为一个编辑器,vi被广泛地运用在各种Unix

38、操作系统上 Vi是Linux中的标准文本编辑器 在Red Hat Linux上,一般采用的是vim(vi improved),41,Vi编辑器的使用,Vi提供三种模式 命令模式 浏览、删除、剪贴、查找等 可以用各种命令进入插入模式 插入模式 输入新文档 用退出插入模式回命令模式 EX模式,42,Vi编辑器的使用,在命令模式下: :w 保存当前文件 :q 如果未对文件做改动则退出 :wq 保存当前文件并退出 :q! 不保存强制退出 :e 文件名 打开另一文件并开始编辑,43,用户和组的管理,groupadd 增加用户组 groupadd g 540 dba groupdel 删除用户组 grou

39、pdel dba useradd 增加用户 useradd -u 541 -g dba -s /bin/bash oracle 默认创建的用户将会在/home下为该用户创建一个目录,为用户的home目录 userdel 删除用户 userdel oracle,44,网络管理,ifconfig 查看网络配置 rootOEL64 log# ifconfig a eth4 Link encap:Ethernet HWaddr 00:0C:29:5B:AC:23 inet addr:172.21.110.51 Bcast:172.21.110.255 Mask:255.255.255.0 inet6

40、addr: fe80:20c:29ff:fe5b:ac23/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:19405 errors:0 dropped:211 overruns:0 frame:0 TX packets:3435 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:4387356 (4.1 MiB) TX bytes:1095534 (1.0 MiB) Interrupt:1

41、9 Base address:0 x2024 lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: :1/128 Scope:Host UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:8 errors:0 dropped:0 overruns:0 frame:0 TX packets:8 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:452 (

42、452.0 b) TX bytes:452 (452.0 b),45,网络管理,查看网卡配置文件 rootOEL64 log# cat /etc/sysconfig/network-scripts/ifcfg-eth4 DEVICE=eth4 IPADDR=172.21.110.51 NETMASK=255.255.255.0 GATEWAY=172.21.110.1 ONBOOT=yes NAME=eth4 HWADDR=00:0C:29:5B:AC:23,46,网络管理,netstat 查看系统中的服务与对应的端口 rootOEL64 log# netstat antp Active In

43、ternet connections (servers and established) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 2313/sshd tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 2161/cupsd tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 2561/master tcp 0 0 0.0.0.0:30368 0.0.0.0:* LIST

44、EN 2040/rpc.statd tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 1962/rpcbind tcp 0 0 172.21.110.51:22 172.21.110.50:63025 ESTABLISHED 2880/sshd tcp 0 0 :22 :* LISTEN 2313/sshd tcp 0 0 :1:631 :* LISTEN 2161/cupsd tcp 0 0 :1:25 :* LISTEN 2561/master tcp 0 0 :13993 :* LISTEN 2040/rpc.statd tcp 0 0 :111 :* LISTE

45、N 1962/rpcbind,47,网络管理,ping 查看主机之间的网络是否互通 rootOEL64 log# ping 172.21.110.50 PING 172.21.110.50 (172.21.110.50) 56(84) bytes of data. 64 bytes from 172.21.110.50: icmp_seq=1 ttl=128 time=0.322 ms 64 bytes from 172.21.110.50: icmp_seq=2 ttl=128 time=0.335 ms 64 bytes from 172.21.110.50: icmp_seq=3 ttl

46、=128 time=0.321 ms 64 bytes from 172.21.110.50: icmp_seq=4 ttl=128 time=0.333 ms 64 bytes from 172.21.110.50: icmp_seq=5 ttl=128 time=0.334 ms 64 bytes from 172.21.110.50: icmp_seq=6 ttl=128 time=0.332 ms 64 bytes from 172.21.110.50: icmp_seq=7 ttl=128 time=0.298 ms 64 bytes from 172.21.110.50: icmp_seq=8 ttl=128 time=0.343 ms 64 bytes from 172.21.110.50: icmp_seq=9 ttl=128 time=0.317 ms,48,登录Linux系统的常用工具,SecureCRT工具 Xshell工具 Putty工具,49,Linux系统性能监控工具介绍,Zabbix工具 Nagios工具 cacti工具,50,谢谢!,感谢聆听!,THANK YOU FOR WATCHING!,演示结束!,

展开阅读全文
温馨提示:
1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
2: 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
3.本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 装配图网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服 - 联系我们

copyright@ 2023-2025  zhuangpeitu.com 装配图网版权所有   联系电话:18123376007

备案号:ICP2024067431-1 川公网安备51140202000466号


本站为文档C2C交易模式,即用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。装配图网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知装配图网,我们立即给予删除!