25

GNOME 2.24 发布计划

根据 GNOME 2.24 的发布计划,在推出 6 个开发版本后,将于 8 月 20 号发布 GNOME 2.24 的第一个 Beta 版。紧接着,9 月 3 号发布 GNOME 2.24 Beta 2。然后是 9 月 10 号的 GNOME 2.24 RC。最后,于 9 月 24 号发布 GNOME 2.24 正式版。

今天在http://news.gnome.org/ 消息上看到历经半年整改的Gnome2.24.0终于出版啦~!

Gnome2.24.0 released!

Nothing particularly exciting, except that this is the culmination of the 2.23 branch and the version which will be released in tonight’s 2.24 GNOME stable release.  I’m in a hurry at the moment or I’d add a nice picture.

Here’s the release notes:

Metacity is a lightweight compositing window manager for the GNOME desktop.

What’s new for 2.24.0:

Thanks to Thomas Thurman for improvements in this version.

- Small memory leak fixed (Thomas) (#549952)

Translations
Ankitkumar Patel (gu), Kenneth Nielsen (da), Mi?u Moldovan (ro),
Anas Afif Emad (ar), Theppitak Karoonboonyanan (th),
Gintautas Miliauskas (lt),  Gil Forcada (ca),  Gabor Kelemen (hu),
Duarte Loreto (pt),  Leonardo Ferreira Fontenelle (pt_BR),
Baris Cicek (tr),  Changwoo Ryu (ko),  Hendrik Richter (de),
Goran Raki? (sr), Goran Raki? (sr@latin), Sandeep Shedmake (mr)

Sources at:
http://download.gnome.org/sources/metacity/2.24/

MD5 sums:
d4aa782d5f71b6c42514b239684a4aa3  metacity-2.24.0.tar.bz2
cadfcd438e9116692bf7b8a6411256f8  metacity-2.24.0.tar.gz

Keep up to date with Metacity at http://blogs.gnome.org/metacity/ (but you’re already here)

Thomas

September 22, 2008 06:54 PM

之前有在Linuxtoy社区上看到说Gnome2.24.0的新特性描述   刚好今天在公司无聊便创建起虚拟机重新安装Ubuntu-Server8.04(懒得再去下载Ubuntu8.10的啦 就使用先前的8.04版本安装再升级吧)

嗯  Server安装速度感觉就是比安装Desktop速度要快~!不过后来因为为了在图形界面下感受下8.10的新鲜感 还是先使用sudo apt-get install ubuntu-desktop命令安装上图形界面吧

一切都搞定  修改更新源 /etc/apt/sources.list 为支持8.10 Intrepid的源

这里选择源是来自mirror.lupaworld.com的  (因为使用ping工具测试过这个最快了 这个因人而异所以自己测速)

deb http://mirror.lupaworld.com/ubuntu intrepid main restricted universe multiverse
deb http://mirror.lupaworld.com/ubuntu intrepid-security main restricted universe multiverse
deb http://mirror.lupaworld.com/ubuntu intrepid-updates main restricted universe multiverse
deb http://mirror.lupaworld.com/ubuntu intrepid-backports main restricted universe multiverse
deb http://mirror.lupaworld.com/ubuntu intrepid-proposed main restricted universe multiverse
deb-src http://mirror.lupaworld.com/ubuntu intrepid main restricted universe multiverse
deb-src http://mirror.lupaworld.com/ubuntu intrepid-security main restricted universe multiverse
deb-src http://mirror.lupaworld.com/ubuntu intrepid-updates main restricted universe multiverse
deb-src http://mirror.lupaworld.com/ubuntu intrepid-backports main restricted universe multiverse
deb-src http://mirror.lupaworld.com/ubuntu intrepid-proposed main restricted universe multiverse

还是选择命令升级搞定

sudo apt-get update
sudo apt-get dist-upgrade

总共耗时7~8小时才下载更新完毕吧  还好没出现什么差错(公司网络粉慢但很稳定 估计是限速啦  保持在18~20K左右) 总算看确认出系统的信息是Ubuntu8.10啦  见下图:

感觉:Ubuntu8.10的中文字体太难看  也许自己比较不喜欢文泉驿正黑字体的原因吧 反正看起来很不舒服 修改之

后来就安装测试了下关于Gnome2.24.0新引入的一些应用程序 主要包括 Empathy 一款IM客户端软件 支持多种即时通讯协议及 Conduit数据安全同步备份软件等

下面大致展示下相关截图吧

添加不同IM协议的账号进行测试:

信息安全确认

Empathy的基本主界面 也是蛮简洁滴

简单的选项设置:

无聊时候胡扯完毕  顺便更新下  O(∩_∩)O哈哈~

written by Yousri \\ tags: ,

05

前天公司老大说叫我要自己去学习有关对服务器对网站实时监测了解的东西,如何去实现。好吧,其实自己也从来没考虑这东西,然而现在工作需要不得不学不了解。充分利用搜索引擎措施,和同事一起找到ApacheTop还有IISTracer来实现对web访问、mtopmysql数据库操作的监测效果,接下来就稍微介绍下这几款工具吧,想必作为一位网站管理员监测维护管理会有所帮助吧。

As a webmaster, I’ve often wanted to be able to see real-time hits as they arrive. Sure, Google Analytics is a wonderful package for looking at trends over time, but there’s a delay of a few hours there, and you really can’t see data like requests per second or total bytes.

This is where the apachetop utility comes in. It’s a very simple command line utility that you can use to monitor traffic real-time. Itaccomplishes this by parsing the apache logfiles and displaying meaningful output to the screen.

由于公司服务器主要使用的是CentOS 5.1版本的操作系统,所以这里我也只在虚拟机上编译安装测试过。。。

Install ApacheTop On CentOS 5.1 By Opensource

wget http://www.webta.org/apachetop/apachetop-0.12.6.tar.gz

yum install readline-devel

yum install ncurses-devel

tar xvzf apachetop-0.12.6.tar.gz

cd apachetop-0.12.6

./configure

make

make install

使用方法:

一般使用方法:

引用# apachetop -f /var/log/httpd.access

下面是用法说明:

引用ApacheTop v0.12.6 – Usage:File options:

-f logfile    open logfile (assumed common/combined) [/var/log/httpd-access.log]

(repeat option for more than one source)

URL/host/referrer munging options:

-q 保持请求字符串[no]

-l 所有的url小写[no]-s num 保持url路径段数量 [all]

-p referrer前面保留协议 [no]

-r 保留每一个的主机/ip [no]

Stats options:

必须提供两个参数 default: [-T 30]缺省设置为保持记录状态30秒,30秒后数据刷新了。

为了提供更多的信息给我们分析,我们可以调节下面的参数。

-H hits 保持状态只到多少点击数

-T secs 保持状态只到多少秒

-d secs 刷新延迟时间[5]

-h 这个帮助。

当执行之后,还有命令可以切换显示状态:

引用ApacheTop version 0.12.6, Copyright (c) 2003-2004, Chris Elsworth

ONE-TOUCH COMMANDS

d            : 切换urls/referrers/hosts显示模式开关

n            : 切换hits & bytes或返回代码开关

h or ?       : 帮助信息

p            : (un)暂停显示 (冻结更新)

q            : 退出 ApacheTop

up/down      : 移动星标 up/down

right/left : 进入/退出逐条显示模式

子菜单:

s: 排序: [the appropriate menu will appear for your display]

r) requests    R) reqs/sec    b) bytes    B) bytes/sec

2) 2xx     3) 3xx     4) 4xx     5) 5xx

t: 固定显示 ON/OFF:

u) urls    r) referrers    h) hosts

f: 使用过滤器:

a) add/edit menu c) clear all    s) show active (not done yet)

a:    ADD FILTER SUBMENU

u) to urls    r) to referrers    h) to hosts

written by Yousri \\ tags:

03
   没有你的日子里自己的手机显得如此滴安静哩
   没有你在身边滴自己的生活显得如此滴简单哩
   没有你的陪伴聊天上网自己都觉得乏味无趣哈
   没有你的催促提醒自己的夜生活睡眠无定时啊
   没有你的陪伴里自己已然不care上班或周末鸟
   没有你的关心哩痛苦想诉说也强忍吞咽心里哈
   原来自己一直都在迷茫中敲字写文
   全然不知道自己为何会写出这些东西
   高中毕业已经有四年整啦
   很久没有没有动过笔写过文
   哈哈哈   果然是无题啦  。。。因为自己也不知写的是啥咧

written by Yousri \\ tags: