- Why and How::怎么办网::十万个为什么 百万个怎么办
收藏 | 免责条款 | 联系我们 | 友情链接 | 网站地图工具 | Google Sitemap Generator | Java开源 | Best Java Source | Business Driver | 英文图书 | English Books | 商务时代
(tags: 网站收藏)
- Pidgin 2.2.0 升级报告-Sctronlinux Cookbook-搜狐博客
目前,总共支持15种即使通信协议,包括常用的 MSN、QQ、Gtalk、Yahoo通等。
...
发现 Pidgin 仍未解决 QQ 问题: * 由于腾讯不停地篡改协议,致使部分 QQ 仍然无法登录。
* QQ 分组无法从服务器 - Home | Pidgin
Pidgin is a multi-protocol Instant Messaging client that allows you to use all of your IM accounts at once.Pidgin can work with:
* AIM
* Bonjour
* Gadu-Gadu
* Google Talk
* Groupwise
* ICQ* IRC
* MSN
* MySpaceIM...(tags: im opensource software pidgin)
- wordpress博客爱好者的天堂|白鸽wordpress教学网
白鸽wordpress教学网是以wordpress教学以及基于wordpress平台的博客建设、博客技巧为核心内容的网站。...一步详细介绍插件的使用方法并对其进行深入研究;主题方面,则深入阐述主题的定制和修改
分类:计算机
Ubuntu Forums和ubuntu下不能用ntp服务网络校时的讨论(links for 2007-09-30)
- Ubuntu Forums
Ubuntu is a complete Linux-based operating system, freely available with both community and professional support. By JOINING US today you can participate in our active and growing community.
- Can't synchronize time with Internet servers - Ubuntu Forums
I've read a few threads here about trying to get the system clock to sync with Internet servers, and they all seem to go into "nightmare territory" (by my definition). I don't know why this is... if it's not ready, maybe it shouldn't be an option ...
Ubuntu下ADSL拨号成功后启动ntpdate网络校时和77个网络相关linux应用小技巧(links for 2007-09-29)
-
However, the change to /etc/network/if-up.d did not solve it, because now ntpdate is not called at all. I'm no expert here, but would it make sence to install ntpdate in /etc/ppp/ip-up.d also? It works for me.
-
littlebat注:77个网络相关的linux应用小技巧
Ubuntu的网络校时怎么不起作用?
我在ubuntu下使用的是ADSL拨号上网,系统启动自动拨号连接。
昨天,我在ubuntu6.0.6下修改系统时间的时候发现可以使用网络校时(即ntp)。点击设置界面上的“立即同步”,系统时间就自动修正了。这个选项上面有一项“定期与internet服务器同步时钟”的选项,我勾选了,默认的服务器有”ntp.ubuntu.comt和127.127.1.0“,我又添加设置了另外两个ntp服务器为“cn.pool.ntp.org和hk.pool.ntp.org”,时区选的是“Asia/Chongqing”。在勾选的时候,系统要求安一个ntp的包,也按照提示安上了。确认后退出。
但是,我发现这个“定期与internet服务器同步时钟”没有起作用!我把时间故意修改成多一个小时,然后重新启动系统。时间还是我修改过的,没有被更正过来!那这个有什么作用呢?!我搜索有关ntp的网页(Linux架设网络校时服务器、Linux和windows操作系统网络校时(links for 2007-09-28)),查看了一下相关的文件。在ntp服务的日志里(/var/log/ntpstats),查看当天的记录,确实每隔一分钟就记录了一次,部分日志记录如下:
54372 35619.638 202.130.120.114 9014 -3596.757066134 0.112971837 0.001455873 3597.447984995
54372 35621.527 127.127.1.0 9014 0.000000000 0.000000000 0.000945000 0.000001907
54372 35622.606 218.75.4.130 9414 0.619085926 0.076016308 0.002438134 1359.704375162
54372 35625.011 91.189.94.145 9614 0.661968500 0.462467000 0.004347983 1359.715265621
54372 35683.702 202.130.120.114 9014 -3596.757066134 0.112971837 0.002246536 3330.589801081
54372 35685.672 218.75.4.130 9414 0.619085926 0.076016308 0.003047042 1922.914781665
54372 35687.585 127.127.1.0 9614 0.000000000 0.000000000 0.000990000 0.000001907
54372 35690.059 91.189.94.145 9014 0.661968500 0.462467000 0.005074957 1922.927712896
其中202.130.120.114(hk.pool.ntp.org)中反映出了一个小时的差异,127.127.1.0是本地的错误的时间中反映的是没有差异,而另外两个服务器却是不到1秒的差异(我猜测数据的第5列是时间差),明显是错的。不知是否这两台服务器当时不能连接?
从日志中看到,ntp系统发现了错误,却没有自动把系统的时间给纠正过来,不知是怎么一回事?是不是我在什么地方没做对?
根据我在前面搜索的资料和这篇文章Bug #48506 in ntp (Ubuntu): “Run ntpdate after ppp interface comes up”,我把原本是在/etc/network/if-up.d下的ntpdate和ntp-server两个文件拷贝到/etc/ppp/ip-up.d目录下,当系统启动后,错误的时间就自动纠正了。我估计前一个目录下的内容是网卡启动执行,后一个目录下的内容才是ADSL连接成功后执行。
根据我的理解,这个纠正是ntpdate 命令的功劳,并不是启动了ntp server的ntpd的功劳。而据文章Time Synchronisation with NTP的内容,ntp server的ntpd可以有规律的根据远程ntp服务器校正本地时间。而我的实验这个ntpd却是不起作用的。前面只拷贝那个ntpdate文件应该就行了。或者,自己写一个包含类似“ntpdate hk.pool.ntp.org”内容的文件放在里面也应该行。
这是怎么一回事?
Linux架设网络校时服务器、Linux和windows操作系统网络校时(links for 2007-09-28)
- Quick HOWTO : Ch24 : The NTP Server - Ubuntu中文
The Network Time Protocol (NTP) is a protocol used to help synchronize your Linux system's clock with an accurate time source. There are that allow the general public to synchronize with them.
- 鳥哥的 Linux 私房菜 -- NTP 時間伺服器
littlebat注:此文详细的介绍了怎样架设一个NTP服务器和linux、windows客户端系统怎么进行网络校时。
- Time Synchronisation with NTP
This page describes methods for keeping your computer's time accurate. This is useful for servers, but is not necessary (or desirable) for desktop machines.
在线新华字典与mplayer的3个问题与解决(links for 2007-09-26)
- 在线新华字典
本站现已经收录20971个汉字、52万个词语。在上面的搜索框内输入条件,点击检索,就可以找到相应汉字的拼音、部首、笔划、注解、出处。
- 解决Mplayer播放器上出现的一些错误提示 - ZDNet China软件技术专区
Error opening/initializing the selected video_out (-vo) device
...
could not open/initialize audio device -> no sound
...
Couldn't resolve name for AF_INET6
Ubuntu下用mplayer+firefox+mplayerplug-in+MediaPlayerConnectivity看在线电影碰到的两个问题(links for 2007-09-25)
- Ubuntu中文 论坛 :: 阅读主题 - MPlayer Couldn't resolve name for AF_INT6:...”问题的解决办法
修改/etc/mplayer/mplayer.conf文件,在文件的最后增加一行“prefer-ipv4 = 1”即可。
(tags: linux ubuntu mplayer firefox mediaplayerconnectivity)
- Mplayer sound error: "Could not open/initialize audio device -> no sound" - LinuxQuestions.org
在ubuntu linux下安装mplayer心得及问题
在网上搜索了一些资料(在linux下使用mplayer播放影音(links for 2007-09-22),linux下screen的使用及Ubuntu下安装firefox插件和MPlayer(links for 2007-09-23)),自己照着做,终于在ubuntu 6.0.6下成功安装了linux下的万能播放器mplayer。自己试着播放avi文件和wmv电影文件和mp3音乐文件效果都很不错。下面把有关心得分享一下。
1、用ubuntu的新得立包管理程序中可以方便的安装这个程序,用安装MPlayer - Ubuntu中文 介绍的方法用apt-get命令也行。但是,我发现一个问题,在我的机器上用来播放清晰度较高的avi文件时,图像缓慢,声音正常。提示好像是什么video设备选择、参数设置、或者机器慢等等。我估计是机器慢了(赛扬1G),ubuntu的二进制包不适合。通过源码安装就一切OK了。
2、通过源码安装mplayer。
1)首先,是到http://www4.mplayerhq.hu/design7/dload.html下载源码,二进制的codecs(解码器,包含各种格式的影音文件的解码)和skin(皮肤),我下载的分别是:MPlayer v1.0rc1 source(http://www1.mplayerhq.hu/MPlayer/releases/MPlayer-1.0rc1.tar.bz2),Linux x86 20061022(http://www1.mplayerhq.hu/MPlayer/releases/codecs/essential-20061022.tar.bz2),Blue(http://www.mplayerhq.hu/MPlayer/skins/Blue-1.7.tar.bz2)
2)然后,是把解压后的essential-20061022.tar.bz2下的文件全部拷贝到目录/usr/local/lib/codecs/下面;
解压MPlayer-1.0rc1.tar.bz2到~/(也可以解压到/tmp,不过开机重启后就自动消失了),先阅读里面的README,按照里面的指令依次用:./configure --enable-gui 配置,用make编译,用sudo make install安装。如果中途提示你少了这样包那样库的,你就在新得立软件包或者用apt-get命令里安装相应的东西,再不清楚就根据相应的出错信息google一下,像这样的错误“Error: The GUI requires PNG support, please install libpng and libpng-dev packages.”
可以用安装这个包解决:sudo apt-get install libpng12-dev
而这个错误:(MPlayer compiling error)“Error: X11 support required for GUI compilation”
可以通过在新得立包管理程序里安装这两个包来解决:
xorg-dev (x windows devel kit)
libgtk2.0-dev (gtk devel kit)
最后,执行的时候会提示:(http://blog.chinaunix.net/u/12859/showart_279548.html)“New_Face failed.Maybe the font path is wrong.
Please supply the text font file(~/.mplayer/subfont.ttf).”,可以这样解决:
cd /usr/share/fonts/chinese/TrueType/
cp ukai.ttf ~/.mplayer/subfont.ttf
还有,如果提示没有声音设备之类的信息,试着把设置里的声音设备改为oss的试试,我的video设备选的是xv。
于是,通过编译安装的mplayer就可以用了。
不过,两个问题依然无法解决,记录在此:
1、realplay10可能由于新安装libgtk2.0-dev之类的原因,在使用打开文件的时候会退出,估计跟字体编码有关,不过,它的功能用mplayer可以代替;下载它的源码不知怎么编译安装;好多文件夹,没有看到REAME或者INSTALL文件。
2、不能用firefox在线看电影,我安装了mplayerplug-in(用源码安装和包管理安装都试过),安装了Firefox 扩展MediaWrap 或者MediaPlayerConnectivity都不能在线看电影(如:http://hnnn.net 的)。
另外,网上的这篇类似的文章可以对照着参考:Ubuntu6.06 Linux安装Mplayer过程解析
linux下screen的使用及Ubuntu下安装firefox插件和MPlayer(links for 2007-09-23)
- 将Linux中的“工具箱”翻个底朝天 - 操作系统 - Linux
littlebat注:此文以在linux的控制台终端用mp3blaster播放音乐为例说明screen的高级应用,screen的基本用法参见:linux下的多窗口程序sceen的使用简介
(tags: linux screen mp3blaster)
- UbuntuHelp:FirefoxPlugins/zh - Ubuntu中文
本页的内容是基于Mozilla Firefox浏览器支持Ubuntu并提供技术支持的版本,例如从Ubuntu知识库(repositories)中的Firefox安装包(package)。本文假设用户使用 包管理工具来安装或升级插件。如果您使用其它
- 安装MPlayer - Ubuntu中文
littlebat注:在ubuntu下安装mplayer
在linux下使用mplayer播放影音(links for 2007-09-22)
- MPlayer compiling error [Archive] - Ubuntu ForumsError: X11 support required for GUI compilationI managed to fix it by installing the following packages
xorg-dev (x windows devel kit)
libgtk2.0-dev (gtk devel kit) - Centos 5下的mplayer的安装(RHEL同样合适),中文支持.. - linux和类Unix系统配置优化 - 扶凯linux下的是影音风景就是mplayer,没有不对播放的
...
New_Face failed.Maybe the font path is wrong.
Please supply the text font file(~/.mplayer/subfont.ttf).
解决方法是
cd /usr/share/fonts/chinese/TrueType/
cp ukai.ttf ~/.mplayer/subfo - 中国Linux公社 - 自由软件2.下载:MPlayer-1.0pre7
http://www4.mplayerhq.hu/MPlayer/releases/MPlayer-1.0pre7.tar.bz2
官方CODES-all
all-20050412.tar.bz2
官方win32_CODES-all
windows-all-20050412.zip
字体
gb2312-ming.tar.bz2
皮肤
Blue-1.4.tar.bz2 - Linux操作系统环境下看流媒体的方法介绍 方法 介绍 流媒体 环境 操作系统 Firefox 可以 播放 地址 | Linux中国比如: mplayer和Xine.
1.安装 mplayerplug-in for mozilla
...
2.安装 Firefox 扩展mediawrap
...
3. 为Firefox添加rtsp和mms协议