xuming on March 26th, 2008

SSH 登陆到服务器service console 后,切换到 root 用户, [root@blade13 root]# esxcfg-firewall –enableService ntpClient # 在防火墙上设置允许 # 这一步只有 ESX 3.0 以上版本才需要[root@blade13 root]# cp /etc/ntp.conf /etc/ntp.conf.bk # 备份 ntp.conf 文件[root@blade13 root]# vi /etc/ntp.confserver 172.32.226.1 # 在文件的末尾添加时间服务器,可以是 IP,server server2.examplentp.org # 也可以是 DNS 名称形式,如果写为 DNS 名称形式,server server3.examplentp.org # 最好手工添加到 host 文件中[root@blade13 root]# cp /etc/ntp/step-tickers /etc/ntp/step-tickers.bk # 备份 step-tickers 文件[root@blade13 root]# vi [...]

  • Share/Bookmark

Continue reading about ESX SERVER 3 NTP Configuration

admin on March 19th, 2008

2008年3月,微软新推出了 ConfigMgr 2007 的认证考试,对应 Exam 70-401,通过考试将获得 MCTS 认证 (Technical Specialist)。 官方网址:http://www.microsoft.com/learning/exams/70-401.mspx Microsoft online resources • Product information: Visit the System Center Operations Manager 2007 Web site for detailed product information. • Microsoft Learning Community: Join newsgroups and visit community forums to connect with peers for suggestions on training resources and advice on your certification path [...]

  • Share/Bookmark

Continue reading about 如何准备 ConfigMgr 2007 认证考试

xuming on March 19th, 2008

ConfigMgr 2007 对应认证考试为 70-401,通过认证考试后获得 MCTS 认证。 原文:http://www.microsoft.com/learning/syllabi/en-us/6451afinal.mspx PrerequisitesBefore attending this course, students must have:• A base-level understanding of Systems Management Server 2003.• System Administrator–level working knowledge of:• Deployment, configuration, and troubleshooting for Windows-based personal computers• TCP/IP networking• SQL Server• Active Directory• Basic Public Key Infrastructure concepts Five days 课程大纲 Module 1: Overview of Configuration Manager [...]

  • Share/Bookmark

Continue reading about ConfigMgr 2007 培训课程表

xuming on March 19th, 2008

FreeBSD 7.0 发布了,最大的一个特性是增加了对 SUN 的 ZFS 文件系统的支持。Greg Larkin 为我们提供了一个 FreeBSD 7.0 的 VMware image,这样大家就可以无痛体验 FreeBSD 的新特性啦!!都来尝试一下吧! VMware Image 文件下载地址:http://torrents.sourcehosting.net:10692/torrents/FreeBSD_7.0_VMware.zip.torrent?BA9886D479184512A1B428C3C25AB29FED632BAD ###### 原帖如下########################## 原帖网址:http://blog.sourcehosting.net/2008/03/18/freebsd-70-vmware-image/ Hi everyone, Since FreeBSD 7.0 was recently released, I figured it’s a good time to put a VMware image together and have a look. Probably one of the most interesting new enhancements is [...]

  • Share/Bookmark

Continue reading about FreeBSD 7.0 VMware Image Available

xuming on March 17th, 2008

FreeBSD 7.0 已经可以支持 ZFS 文件系统了,不过还处于测试阶段,不推荐用于生产环境。 推荐阅读 ZFS 最佳实践指南:http://www.solarisinternals.com/wiki/index.php/ZFS_Best_Practices_Guide

  • Share/Bookmark

Continue reading about ZFS Best Practices Guide (ZFS 最佳实践指南)

xuming on March 7th, 2008

###### 手工指定的方式################################ # ipconfig fxp0 192.168.8.33/24 # 添加网卡ip# route add default 192.168.8.1 # 添加路由(也可理解为网关)立即生效,但是重启后失效。 如何重启后仍然保持呢?# ee /etc/rc.confifconfig_fxp0="inet 192.168.8.8 netmask 255.255.255.0 " # fxp0 网卡地址和子网掩码defaultrouter="192.168.8.10" # 网关地址hostname="study.nowire.com.cn" # 机器名ifconfig_wi0="inet 192.168.8.55 netmask 255.255.255.0" # wi0 网卡地址,对应无线网卡 修改 /etc/rc.conf 配置之后可以通过如下方式生效:第一种方法:# sh /etc/rc第二种方法:# /etc/netstart第三种方法:重启机器 ###### DHCP 方式################################ 在 /etc/rc.conf 中添加:ifconfig_fxp0="DHCP"需要根据具体情况指定网卡名称。 修改 /etc/rc.conf 配置之后可以通过如下方式生效:第一种方法:# sh /etc/rc第二种方法:# /etc/netstart第三种方法:重启机器 ###### 关于 DNS [...]

  • Share/Bookmark

Continue reading about FreeBSD IP 配置总结

xuming on March 7th, 2008

引用:http://blogs.technet.com/smsandmom/archive/2008/03/06/configmgr-2007-client-push-installation-method-in-a-workgroup.aspx ConfigMgr 2007 是不支持在 workgroup 环境下的 Client push 方式安装的。 其他在工作组环境的限制有: 1. Workgoup clients 不能使用 AD domain services 服务,所以即使 site 已经进行了 AD domain services 的发布,workgroup client 也不能从中受益。如 workgroup clients 只能通过 WINS 或 DNS 来定位 default MP,而不能通过 AD domain services;2. AD system, AD user, AD user group 等 discovery 方式对 workgoup 无效;3. 针对 user 的 advertiesments 对 [...]

  • Share/Bookmark

Continue reading about Workgroup 环境在 ConfigMgr 2007 中的限制