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

Unix/Linux
能说说这些的区别吗?
[求助]如何知道SUN机器的出厂日期?
solaris 10 修改网络配置
solaris10源码编译
Solaris图形界面相关
Linux中文件内容查看工具的使用介绍
认识Linux远程桌面控制
Linux系统的字型设定方法
Linux高性能计算集群概述
Linux创建文件及挂载文件系统流程详解
Linux下硬盘分区的最佳方案
Linux 指令大全(1)
Linux 指令大全(2)
Linux 指令大全(3)
Linux 引导过程内幕
在Linux中如何提高文件系统的使用效率
教你制作Linux操作系统的USB启动盘
系统学习Linux的十一点建议
系统管理员手册:Unix系统安全必读
Linux 系统中的超级权限的控制

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


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-01   浏览: 52 ::
收藏到网摘: 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