Archive for category Linux桌面

Fetion in Linux world

libfetion: I can’t login with mobile phone number now, but can login with fetion id.
openfetion: new project http://sourceforge.net/projects/ofetion/

when I do apt-get update. got some error
“GPG error: http://ppa.launchpad.net lucid Release: The following signatures couldn’t be verified because the public key is not available: NO_PUBKEY FA9C98D5DDA4DB69

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys FA9C98D5DDA4DB69

No Comments

Play with Grub2

Grub maybe a headache to old grub users, I updated my Laptop with New version,
really took some time to get familiar with grub2. Here is a good article :)
Cool Links for Grub2

http://www.howtogeek.com/howto/17787/clean-up-the-new-ubuntu-grub2-boot-menu/

,

No Comments

Install my wireless card driver

I have just install my wireless card driver ( bcm4312) on opensuse 11.1 (64bit)
my laptop is dell 1310

I use the most simple way
sudo zypper ar http://packman.mirrors.skynet.be/pub/packman/suse/11.1/ pack_man
sudo zypper install broadcom-wl
sudo reboot
the wireless card works.

install flash player x86_64 for firefox

http://labs.adobe.com/downloads/flashplayer10.html

sudo mkdir /usr/lib64/firefox/plugins
sudo cp libflashplayer.so /usr/lib64/firefox/plugins/

ref links

http://en.opensuse.org/HCL/Network_Adapters_(Wireless)/Broadcom_BCM43xx

, ,

1 Comment

日积月累

Q:
ERROR: ld.so: object ‘libjvm.so’ from LD_PRELOAD cannot be preloaded: ignored.
ERROR: ld.so: object ‘libawt.so’ from LD_PRELOAD cannot be preloaded: ignored.
No protocol specified
opera: cannot connect to X server :0.0
opera: Fatal error on creating Qt application object

A:
可能是用root运行的命令,切换到正常用户启动

No Comments

昨天把系统换到Redhat Linux Server 5.3(x86_64)

用了好久的Ubuntu做桌面,感觉渐渐熟悉了。想换换口味,虽然服务器一直用CentOS
但是桌面因为这样那样的问题没怎么用redhat系列的东西。
刚好RHEL5.3刚刚发布,从http://rhn.redhat.com注册了一个帐号。
下载了一个DVD,现在一张cd光盘不行了。不知道Centos5.3可不可以。

网络安装的,很快就完成了。
下面记录一些过程: Read the rest of this entry »

No Comments

网易开源软件镜象站点

网易上线了一个开源镜象网站,域名是 http://mirrors.163.com/。目前提供了Debian、Ubuntu、Fedora、Gentoo、Centos、FreeBSD等流行开源操作系统以及Eclipse等开源软件的镜象。

速度还不错,呵呵,以后又多了个速度源。添加到/etc/apt/sources.list
######### 163.com
deb http://mirrors.163.com/ubuntu intrepid main restricted universe multiverse
deb http://mirrors.163.com/ubuntu intrepid-security main restricted universe multiverse
deb http://mirrors.163.com/ubuntu intrepid-updates main restricted universe multiverse
deb http://mirrors.163.com/ubuntu intrepid-backports main restricted universe multiverse
deb http://mirrors.163.com/ubuntu intrepid-proposed main restricted universe multiverse

apt-get update 更新一下,速度还行。赞一个!

PS:服务器
HTTP/1.1 200 OK
Server: nginx
Date: Thu, 05 Feb 2009 06:49:43 GMT

No Comments

Ubuntu下安装飞鸽传书

准备材料:

飞鸽传书安装包一个http://www.ipmsg.org/archive/g2ipmsg-0.9.6.tar.gz

能联网

安装

sudo apt-get install libxml-parser-perl libgnomeui-dev libpanel-applet2-dev gettext intltool libssl-dev

tar xvzf  g2ipmsg-0.9.6.tar.gz

./configure –enable-systray && make && sudo make install

完成

No Comments

Ubuntu8.10 速配指南(转自cu)

从这里开始

请确保你的系统已联入互联网。如有困难请参考HOW-TO连接到互联网或到论坛寻求帮助。
打开终端。单击主菜单中的“应用程序 – 附件 – 终端”。
修改更新服务器列表。请在终端中执行下面的两条命令:
sudo cp /etc/apt/sources.list /etc/apt/sources.list_backup
sudo gedit /etc/apt/sources.list Read the rest of this entry »

No Comments

自制版OS8.10发布(Ubuntu810)

http://club.pojaa.com/thread-38280-1-1.html

No Comments

mplayer/codec drvc.dll

mplayer使用时出现下面错误

error:could not open required directshow codec drvc.dll

解决方法:

[root@localhost ~]# find /usr/lib -name drvc*
[root@localhost ~]# find /usr/lib -name drvc*
/usr/lib/codecs/drvc.so
[root@localhost ~]# ldd /usr/lib/codecs/drvc.so
linux-gate.so.1 => (0×00110000)
libstdc++.so.5 => not found
libc.so.6 => /lib/libc.so.6 (0×00162000)
/lib/ld-linux.so.2 (0x004ed000)

sudo apt-get install libstdc++5

No Comments