8月4
通过yum在线安装php5.2.x版本的php-gd的时候,会报模块依赖错误,错误提示如下:
--> Missing Dependency: libt1.so.5()(64bit) is needed by package php-gd-5.2.17-1.el5.x86_64
Error: Missing Dependency: libt1.so.5()(64bit) is needed by package php-gd-5.2.17-1.el5.x86_64
You could try using --skip-broken to work around the problem
You could try running: package-cleanup --problems
package-cleanup --dupes
rpm -Va --nofiles --nodigest
The program package-cleanup is found in the yum-utils package.
解决:
32位:
http://rpm.pbone.net/index.php3/stat/4/idpl/5782702/dir/centos_5/com/t1lib-5.1.0-9.el5.kb.i386.rpm.html
64位:
http://rpm.pbone.net/index.php3/stat/4/idpl/5786767/dir/centos_5/com/t1lib-5.1.0-9.el5.kb.x86_64.rpm.html
(注意操作系统版本!)
下载安装对应版本的t1lib的rpm包后,重新yum安装php-gd即可。
--> Missing Dependency: libt1.so.5()(64bit) is needed by package php-gd-5.2.17-1.el5.x86_64
Error: Missing Dependency: libt1.so.5()(64bit) is needed by package php-gd-5.2.17-1.el5.x86_64
You could try using --skip-broken to work around the problem
You could try running: package-cleanup --problems
package-cleanup --dupes
rpm -Va --nofiles --nodigest
The program package-cleanup is found in the yum-utils package.
解决:
32位:
http://rpm.pbone.net/index.php3/stat/4/idpl/5782702/dir/centos_5/com/t1lib-5.1.0-9.el5.kb.i386.rpm.html
64位:
http://rpm.pbone.net/index.php3/stat/4/idpl/5786767/dir/centos_5/com/t1lib-5.1.0-9.el5.kb.x86_64.rpm.html
(注意操作系统版本!)
下载安装对应版本的t1lib的rpm包后,重新yum安装php-gd即可。
8月3
今天公司其他部门同事安装的WinWebMail邮件系统,经过测试,能够正常收到外面发进来的邮件,却从WinWebMail发不出域外的邮件,现象为发出的邮件会被退回,错误提示为:winwebmail DNS lookup failed.
原因:WinWebMail没找到有效的DNS服务器地址(非WinWebMail服务器上设置的DNS地址)。
解决:
1、登陆安装WinWebMail的服务器;
2、右键单击右下角的WinWebMail主程序,选择“服务”,在打开的“服务”对话框中,勾选“DNS设置”下面的“修改”,填写本地正确有效的DNS地址,确定。
3、再通过Web或邮件客户端发送邮件,应该已经能够正常将邮件发送出去了。
原因:WinWebMail没找到有效的DNS服务器地址(非WinWebMail服务器上设置的DNS地址)。
解决:
1、登陆安装WinWebMail的服务器;
2、右键单击右下角的WinWebMail主程序,选择“服务”,在打开的“服务”对话框中,勾选“DNS设置”下面的“修改”,填写本地正确有效的DNS地址,确定。
3、再通过Web或邮件客户端发送邮件,应该已经能够正常将邮件发送出去了。
8月1
7月31
安装oracle 10g的过程中弹出窗口提示:
Error in invoking target 'all_no_orcl ihsodbc' of makefile
'/oracle/product/10g/rdbms/lib/ins_rdbms.mk'.
See '/oracle/oraInventory/logs/installActions2009-12-01_11-55-10AM.log' for details.
原因:
这个错误是和编译有关的,检查日志发现果然缺少了一个C的类库:
INFO: /usr/lib/libstdc++.so.5: No such file or directory
解决:安装compat-libstdc++-33
# yum install compat-libstdc++-33
Retry即可。
Error in invoking target 'all_no_orcl ihsodbc' of makefile
'/oracle/product/10g/rdbms/lib/ins_rdbms.mk'.
See '/oracle/oraInventory/logs/installActions2009-12-01_11-55-10AM.log' for details.
原因:
这个错误是和编译有关的,检查日志发现果然缺少了一个C的类库:
INFO: /usr/lib/libstdc++.so.5: No such file or directory
解决:安装compat-libstdc++-33
# yum install compat-libstdc++-33
Retry即可。
7月31
在Linux的X window里安装oracle,弹出的oracle界面为乱码(方块)
原因:oracle安装默认没有中文语言包,只有用英文了。
解决:
1、临时解决:
$ export LANG=en_US
2、永久解决:
# vi /etc/sysconfig/i18n
LANG="en_US"(不会出现乱码)
LANG="zh_cn.UTF-8"(中文,安装oracle会出现界面乱码的现象)
原因:oracle安装默认没有中文语言包,只有用英文了。
解决:
1、临时解决:
$ export LANG=en_US
2、永久解决:
# vi /etc/sysconfig/i18n
LANG="en_US"(不会出现乱码)
LANG="zh_cn.UTF-8"(中文,安装oracle会出现界面乱码的现象)





