当前位置: 首页 > 图文教程 > 操作系统 > Unix/Linux > SA299考前简要总结

Unix/Linux
Linux 备份 恢复方法
Linux玩CS反恐精英的方法
在一个ISO镜像中集成多个不同的linux发行版,可刻盘,可引导
Linux 快捷键使用
Linux DHCP 服务器配置方法介绍
Linux 22端口的修改方法
Linux 记录会话过程的命令
Linux 后台执行程序如何操作?
linux Wget命令来浏览网页的方法
Linux tail命令的巧妙应用
Wine 中文存在很多的乱码怎么解决方法
linux 新手教程之创建锁文件的方法
配置Linux 保证其系统的安全
Linux DHCP协议实现过程
Linux系统下破解SAM密码
linux/unix vi 编辑器用法详解
Linux 误删文件的解决方法
Linux系统下的历史记录删除方法
Red Hat Linux 安全设置指南
Linux基本命令-注销、关机、重启

Unix/Linux 中的 SA299考前简要总结


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-01   浏览: 27 ::
收藏到网摘: n/a

*******************************************************************************************chapter 1describing interface configuration*******************************************************************************************chapter 2 describing the client-server model*******************************************************************************************chapter 3 customizing the solaris management console*******************************************************************************************chapter 4 managing swap configuration*******************************************************************************************chapter 5 managing crash dumps and core files*******************************************************************************************chapter 6 configuring NFS*******************************************************************************************chapter 7 configuring AutoFS*******************************************************************************************chapter 8 describing RAID and the solaris volume manager software*******************************************************************************************chapter 14 using name services*******************************************************************************************chapter 15 configuring name service clients*******************************************************************************************chapter 16 configuring the network information service(NIS)*******************************************************************************************chapter 18 performing a flash installation*******************************************************************************************

*******************************************************************************************chapter 1describing interface configuration配置接口的时候要确保:the interface must be plumbed/configured/up/physically connected/have valid routes configuredsnoop -V:简要输出snoop -v:概要输出/etc/hostname.xxn里xx类型有:le,hme,qfe,eri改主机名的六个文件:/etc/nodename,/etc/hostname.xxn,/etc/inet/hosts/etc/net/ticlts/hosts,/etc/net/ticots/hosts,/etc/net/ticotsord/hosts*******************************************************************************************chapter 2 describing the client-server modelinetd在每台系统上执行服务器启动进程,在系统启动时候不自动执行.如果没有配置文件,那么inetd进程使用默认的/etc/inet/inetd.conf文件/etc/inet/inetd.conf文件中endpoint-type(终端点类型)包括stream,sgram,raw,seqpacket,tli字段/etc/inet/inetd.conf文件中wait-status(等待状态)中,wait和UDP联系,nowait和TCP联系众所周知的端口存放在文件/etc/inet/services中执行rpcinfo -d命令的格式是:rpcinfo -d prognum versnum*******************************************************************************************chapter 3 customizing the solaris management console# /etc/init.d/init.wbem status# /etc/init.d/init.wbem start# smc*******************************************************************************************chapter 4 managing swap configurationswapfs文件系统提供虚拟交换空间地址可以用pagesize命令来展示内存页面的容量,默认的容量是8192bytesswap -sremoving swap slices的步骤:1,# swap -d /dev/dsk/c1t0d0s32,在/etc/vfstab文件里面删除相应条目removing swap files的步骤:1,# swap -d /export/data/swapfile2,# rm /export/data/swapfile3,从/etc/vfstab文件里面删除相应条目*******************************************************************************************chapter 5 managing crash dumps and core files操作系统产生严重问题,就生成一个crash dump文件,系统进程产生严重问题,就生成一个core文件内核产生问题的时候,savecore命令自动运行并从dump device里面读出crash dump并写到文件系统的两个文件:/var/crash/nodename/vmcore.X,/var/crash/nodename/unix.X当一个core文件生成,操作系统自动生成core文件的两个拷贝,一个叫做global core file,一个叫做per-process core filev.前者只有root用户才能够察看,后者只有进程拥有者本身才能够察看*******************************************************************************************chapt