Monday, August 27, 2007

用驼队马帮提供的非实时 iNet 访问 sneakernet - Google Code

sneakernet - Google Code

Sunday, August 26, 2007

Blogger Bookmarklet for Opera Mini

Blogger Bookmarklet

Click the link above. When the page reloads, press # then 7 to bookmark this page in Opera Mini. Then edit the bookmark address by removing "http://www.lrfz.com/?" from the beginning.

These bookmarklets should also work with recent versions of Mobile Internet Explorer. The procedure should be similar except that you need to bookmark this page from the menu instead of using # then 7.

Thanks http://o.yeswap.com/ for the hint of bookmarklet.

Labels:

Tuesday, August 21, 2007

Fixed IP for Virtual Machines in Windows Host

Static IP setting in client doesn't work. The client can access the host, but NAT doesn't work. NAT is binded to DHCP. So, if we want fixed IP for virtual machine work with NAT, fixed address with DHCP is required.

It's quite easy to set it up. The configuration of VMware windows version is just the same with standard dhcpd. So, I just added sections of hardware ethernet and fixed-address:

# Virtual ethernet segment 8
# Added at 07/22/07 00:43:04
subnet 192.168.161.0 netmask 255.255.255.0 {
range 192.168.161.128 192.168.161.254; # default allows up to 125 VM's
option broadcast-address 192.168.161.255;
option domain-name-servers 192.168.161.2;
option domain-name "localdomain";
option netbios-name-servers 192.168.161.2;
option routers 192.168.161.2;
default-lease-time 1800;
max-lease-time 7200;

host tracvm{
hardware ethernet 00:0C:29:B1:4E:1C;
fixed-address 192.168.161.160;
}
host debian{
hardware ethernet 00:0C:29:97:73:9B;
fixed-address 192.168.161.161;
}
host mediawiki{
hardware ethernet 00:0c:29:e8:4c:0f;
fixed-address 192.168.161.161;
}
}

Labels:

Friday, August 17, 2007

Virtual Appliances

我开始用自己的 Laptop 搭建团队开发环境. 幸好现在的 Virtual appliance 也都做得挺专业了, footprint 都挺小, 所以我那 1G RAM 似乎还能撑住四五个 VM 的样子. 我已经开始找低端 1U 服务器和相关 DIY 信息了. 不出太大问题的话, 两台 1U Server 就足以撑住一个小团队的协作环境和备份所需.

现在的问题是,过多的选择。Version control 用什么,CVS、SVN还是 Git?Issue tracking 用什么,Bugzilla 还是 Trac ?Mail, Wiki 呢?哦,Sourceforge Enterprise 还提供集成解决方案呢。不同的产品,不同的 License,还有不同的组合,可真要费一番功夫呢。

Labels: ,