Chinaunix首页 | 论坛 | 博客
  • 博客访问: 303771
  • 博文数量: 73
  • 博客积分: 1850
  • 博客等级: 上尉
  • 技术积分: 757
  • 用 户 组: 普通用户
  • 注册时间: 2009-06-18 16:12
文章分类

全部博文(73)

文章存档

2011年(8)

2010年(26)

2009年(39)

分类: LINUX

2010-03-07 15:00:58

1.install OK

2.update

3.install stardict OK
Dictionaries
Install Dictionaries in Linux:
To install these tarball dictionaries, do this:
tar -xjvf a.tar.bz2
mv a /usr/share/stardict/dic


#4.install fcitx inputmethod OK //can't no work.    change it to scim
%E4%B8%AD%E6%96%87%E8%BE%93%E5%85%A5%E6%B3%95fcitx#.E6.BF.80.E6.B4.BB.E8.BE.93.E5.85.A5.E6.B3.95
set scim as default input
vi /etc/profile
# SCIM
export XMODIFIERS='@im=SCIM'
export GTK_IM_MODULE="scim"
export XIM_PROGRAM="scim -d"
export QT_IM_MODULE="scim"
scim -d
If you haven't already added your locale to /etc/scim/global do that now.

 * Run the command 'locale' in your terminal, and copy the locale name after LANG=
 * Edit the file /etc/scim/global:

    gksudo gedit /etc/scim/global

 * And add your locale name to the line /supportedUnicodeLocales = list using comma, for example:

  /SupportedUnicodeLocales = en_US.UTF-8

 * Restart your X server or reboot to apply settings

5.install ubuntu-tweak
How to add the source of Ubuntu Tweak (The easy way, work since Ubuntu 9.10):
Go to System / Administration / Software Sources, click on Other Software tab, click Add button, and enter “ppa:tualatrix/ubuntu-tweak”.
This will add the PPA repo and the GPG key automatically.
You can also do it from command line by running:
sudo add-apt-repository ppa:tualatrix/ubuntu-tweak
How to add the source of Ubuntu Tweak
open your terminal, first import the key:
sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com FE85409EEAB40ECCB65740816AF0E1940624A220
type the command to run gedit(or other editor in your opinion) to modify the sources.list:
sudo gedit /etc/apt/sources.list
And put the two line into it(If you are using Ubuntu 8.04 Hardy or early) :
deb hardy main
deb-src hardy main
Or Ubuntu 8.10 Intrepid:
deb intrepidmain
deb-src intrepid main
Or Ubuntu 9.04 Jaunty:
deb jaunty main
deb-src jaunty main
Or Ubuntu 9.10 Karmic:
deb karmic main
deb-src karmic main
Then update the source and install or upgrade Ubuntu Tweak:
sudo apt-get update
sudo apt-get install ubuntu-tweak
if you have installed, just type:
sudo apt-get dist-upgrade

6.install wget

7.configure evolution

Evolution
Start Evolution
Click on “Edit,” then “Preferences”
Click “Add”
Type in your name, email address, reply to address, (what email address you want people to write back to you with) and your organization, if any, and click forward.
Select your server type as “POP,” your host as “pop.gmail.com,” and make sure that your username is the same as your email address. Then under “Use Secure Connection” select always, and your “Authentication Type” as password, and finally click forward.
On the next page adjust settings as you like, they will not interfere with whether gmail will work with evolution or not. Then click forward.
Select server type as “smtp,” type in “smtp.gmail.com” as the host, and check that the “Host requires authentication” box is checked. Next, select, for “Use Secure Connection,” always. Finally, make sure that Authentication type is “Plain” and your user name should be the same as you email address. Click Forward.
On this page name your account whatever you want, it will not interfere with setup and click Forward.
Click apply.
Your done! See bottom for notes regarding problems.




Howto: Upgrade Linux Kernel

by Vivek Gite · 9 comments

How do I upgrade my Linux kernel? I would like to upgrade kernel without compiling from source code i.e. binary upgrade. How do I perform the actual upgrade of the kernel in Linux?

You need to compile kernel only if:
=> You need custom made kernel for specific task such as embedded kernel.

=> Apply third party security patches.

=> You need to apply specific patch to Linux
Upgrade of the kernel in Red Hat enterprise Linux version <= 4.x

If your system is registered with Red Hat Network (RHN), then you can use the up2date command as follows:
# up2date -f kernel
For SMP kernel (multi core or multiple CPU) use command:
# up2date -f kernel-smp
Upgrade of the kernel in Fedora Linux / CentOS / RHEL 5

Use yum command to upgrade kernel:
# yum update kernel

If you have downloaded RPM file use rpm command:
# rpm -ivh kernel*
Upgrade of the kernel in Debian or Ubuntu Linux

Use apt-get command. First find your kernel version:
$ uname -r
Next find available kernel images:
$ apt-cache search linux-image
Now install kernel by explicitly specifying version number:
# apt-get install linux-image-x.x.x-xx
OR
$ sudo apt-get install linux-image-x.x.x-xx
阅读(776) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~