Configuration

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 [...]

Continue reading about ESX SERVER 3 NTP Configuration

xuming on August 31st, 2007

本文根据我的个人理解翻译整理,原文地址: http://forums.gentoo.org/viewtopic.php?t=162177 。 感谢强悍的 taviso 利用 FwmButton 实现如下效果 主要特点:9个 button,一个 xclock Step 1. 构思 利用 GIMP、xpaint、dia 或 xfig 等工具画出构思的草图。下图是作者利用 dia 画出的草图: Step 2. 确定尺寸 计算需要的格子数目(以最小的行高或栏宽为一格,这个原则体现在 FvwmButton 的多个地方,需要好好把握),见下图,在纵向上来说,因为第一行行高最低,所以可以以第一行为一格,所以纵向有7格。在横向上来说就无所谓了,等宽,所以记做3格。 Step 3. 新建 Buttons 利用最简单的 FvwmButtons 配置项测试设计的尺寸是否合适。代码如下: DestroyModuleConfig LaunchTime: * *LaunchTime: Rows 7 *LaunchTime: Columns 3 *LaunchTime: (3×1) *LaunchTime: (1×2) *LaunchTime: (1×2) *LaunchTime: (1×2) *LaunchTime: (1×2) *LaunchTime: (1×2) [...]

Continue reading about FVWM 中 FvwmButton 效果配置讲解