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

Unix/Linux
FB5.4+gnome2.10.0
FreeBsd
OpenBSD+Samba+eFax架设传真服务器
有关mount时的中文问题
在freebsd上安装linuxigd
Package Filter (1)
在Sparc机器上网络安装OpenBSD系统
PDF文件的各种转换工具
通过com口来管理OpenBSD
FREEBSD5.3架站纪实
终于解决了CS1.5的CLASS C问题
双重引导系统的潜在问题以及限制(BSD)
FreeBSD 内核网络处理流程分析
FreeBSD远程操作基础指南
FreeBSD & Jail
4.x 的sysinstall 不能安装5.3的系统了;(
我的.cshrc文件
解决使用gtk图形显示的程序的字体问题
FreeBSD4.8 IPFW How to
apache的带宽和并发限制模块

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


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