centos安装词典——图形界面的和命令行

stardict词典:这个词典好像在图形界面下用的,在命令行界面下不能用(stardict词典包可到https://pkgs.org/查找)。

安装方法:

    在/etc/yum.repos.d/目录下创建 naulinux-school.repo 文件,添加内容:        

    [naulinux-school]    
    name=NauLinux School
    baseurl=http://downloads.naulinux.ru/pub/NauLinux/6.2/$basearch/sites/School/RPMS/
    enabled=0
    gpgcheck=1
    gpgkey=http://downloads.naulinux.ru/pub/NauLinux/RPM-GPG-KEY-linux-ink

    安装时使用下面命令:        

    yum --enablerepo=naulinux-school install stardict

    可安装离线包,安装和sdcv的离线包安装一样    

    参考:http://www.linuxidc.com/Linux/2014-11/108910.htm

    

sdcv词典:据说是stardict的命令行版的词典(在命令行下能用

安装方法:

    先下载rpm安装包(可到https://pkgs.org/下载)

        wget http://dl.fedoraproject.org/pub/epel/6/x86_64/sdcv-0.4.2-8.el6.x86_64.rpm

        rpm -ivh sdcv-0.4.2-8.el6.x86_64.rpm

        2. 下载字典数据(也即是离线包)
            从下面的网址下载(网址参考http://www.linuxidc.com/Linux/2014-11/108910.htm中的网址):
            http://abloz.com/huzheng/stardict-dic/zh_CN/
            在此可以下载中英,中日等多种字典

            以英汉/汉英为例下载字典数据
                 下载xdict-ec-gb dictionary和xdict-ce-gb dictionary的tar包

        wget http://abloz.com/huzheng/stardict-dic/zh_CN/stardict-xdict-ec-gb-2.4.2.tar.bz2

        wget http://abloz.com/huzheng/stardict-dic/zh_CN/stardict-xdict-ce-gb-2.4.2.tar.bz2

    3. 安装字典数据 (离线包安装)           
                1)解压

        tar jxvf stardict-xdict-ec-gb-2.4.2.tar.bz2 

        tar jxvf stardict-xdict-ce-gb-2.4.2.tar.bz2

        2)放到可识别的目录中

        mkdir -p /usr/share/stardict/dic        

        mv /stardict-xdict-ec-gb-2.4.2 /usr/share/stardict/dic/

        mv /stardict-xdict-ce-gb-2.4.2 /usr/share/stardict/dic/

        3)安装成功后使用

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
        [root@com dic]# sdcv hello        
        save to cache /usr/share/stardict/dic/stardict-xdict-ce-gb-2.4.2/xdict-ce-gb.idx
        save to cache /usr/share/stardict/dic/stardict-xdict-ec-gb-2.4.2/xdict-ec-gb.idx
        Found 1 items, similar to hello.
        -->XDICT英汉辞典
        -->hello
        [ˊheˊluheˊlu]
        n. 
        int. 喂,你好,问候,招呼
         
        [root@com dic]# sdcv similar
        Found 1 items, similar to similar.
        -->XDICT英汉辞典
        -->similar
        [ˊsimil]
        a. 相似的,类似的
        n. 相似的东西
         
    sdcv安装参考http://blog.csdn.net/xieyan0811/article/details/5931560

dictd词dictd 是一个字典数据库服务器,它允许你访问在线字典。(dictd词典包可到https://pkgs.org/查找)。

安装方法:

    在/etc/yum.repos.d/目录下创建 naulinux-school.repo 文件,添加内容:        

    [naulinux-school]    
    name=NauLinux School
    baseurl=http://downloads.naulinux.ru/pub/NauLinux/6.2/$basearch/sites/School/RPMS/
    enabled=0
    gpgcheck=1
    gpgkey=http://downloads.naulinux.ru/pub/NauLinux/RPM-GPG-KEY-linux-ink

    安装时使用下面命令:        

    yum --enablerepo=naulinux-school install dictd -y

    使用方法(是在线查询):

        [root@com dic]# dict similar    在线查询翻译similar单词

    据说可以安装离线数据库(离线包),不过这个词典在Ubuntu和Debain比较适用,在centos上我没有找到适合的离线包。



本文转自 f_066 51CTO博客,原文链接:http://blog.51cto.com/ganmu/1859206,如需转载请自行联系原作者

上一篇:linux 命令的 参数顺序与执行


下一篇:Dart常用框架和库介绍