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

Unix/Linux
Ubuntu Linux有多流行?数据告诉你
轻松制作Linux系统启动盘的四种方法
忘记Linux密码后的另类解决方法
Linux中安装Realplayer的方法
Linux桌面环境GNOME和KDE的切换
在Linux操作系统下安装与运行GAMIT软件
学习Linux系统的九条忠告
Linux系统发展空间探索
Linux与Windows Vista系统的比较
Linux刷新主板BIOS的好方法
Linux下学C语言开发要学些什么
Ubuntu 8.04 Alpha 3新功能初体验
Ubuntu Linux下用Firefox来安装软件
客户对Linux电脑的需求的确不高
带你一起认识下linux的各种版本
手把手教你学Ubuntu
双系统卸载linux系统的方法
linux系统下的U盘病毒清除法
Linux系统22端口修改的方法
理解和掌握Linux 体验Linux的方式

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


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