免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1182 | 回复: 0
打印 上一主题 下一主题

ubuntu7.10之C语言开发环境搭建过程 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-12-28 10:59 |只看该作者 |倒序浏览

首先更新好Ubuntud常见的镜像源,按照
ubuntu7.10快速设置指南-07.12.21.doc
,给Ubuntu安装常用的软件,语言包。
安装步骤:
(用apt-get install来安装软件包。参见
在linux下安装软件-07.12.21.doc
)
1、gcc
备注:默认已经安装了
含有gcc cpp libgcc1  lic6 binutils locales
2、libc-dev
apt-get install libc6-dev
将会安装下列额外的软件包:
  linux-libc-dev
建议安装的软件包:
  glibc-doc manpages-dev
3、apt-get install glibc-doc
4、apt-get install manpages-dev
5、apt-get installindent
6、安装词霸
此词霸可不是金山词霸,是完全免费的星际译王,你可以在国际著名的开源站点sourceforce上浏览到它的相关信息,官方站点在
http://stardict.sourceforge.net/
。上面有多种字典可以用来安装,中文方面有牛津现代英汉双解词典、朗道英汉字典、朗道汉英字典、湘雅医学专业词典、高级汉语大词典、国际标准汉字大辞典、汉语成语词典、现代汉语词典、21世纪英汉汉英双向词典等等字典供你选择。常规步骤是先安装stardict主程序,再安装字典
1)安装主程序
在命令行输入下列命令安装:
    sudo apt-get install stardict stardict-common

2)安装字典:   
    在http://stardict.sourceforge.net/网站下载后,放到主程序所在的文件夹的dic目录下就可以了,一般是在这里:/usr/share/stardict/dic

Linux系统下安装字典文件,按照如下步骤安装字典:
tar -xjvf a.tar.bz2
mv  a /usr/share/stardict/dic

另外,上述两个步骤可以用一个脚本来实现。参见
stardict.sh

#! /bin/bash

# install stardict
if [[ -f $(which stardict) ]]
then
    echo ""
    echo "You have stardict installed."
    echo ""
    echo "Downloading dictionary files ... "
    echo ""
    sleep 3
else
    sudo apt-get install stardict -y
    echo "Now stardict has been installed."
    echo ""
    echo "Downloading dictionary files ... "
    echo ""
    sleep 3
fi

# Definations
passwd="ubuntu:ubuntuftp"
url="http://$passwd@ftp.ubuntu.org.cn/stardict.sourceforge.net"
dir="$HOME/.stardict/dic"

# 通用词典选有:21世纪双向,朗道,韦氏,牛津,朗文,计算机专业
dict_1="stardict-21shijishuangxiangcidian-2.4.2.tar.bz2"
dict_2="stardict-langdao-ce-gb-2.4.2.tar.bz2"
dict_3="stardict-langdao-ec-gb-2.4.2.tar.bz2"
dict_4="stardict-merrianwebster-2.4.2.tar.bz2"
dict_5="stardict-oxford-gb-2.4.2.tar.bz2"
dict_6="stardict-longman-2.4.2.tar.bz2"
dict_7="stardict-computer-2.4.2.tar.bz2"

if [ ! -d $dir ]
then
    mkdir -p $dir
fi

for dict in $dict_1 $dict_2 $dict_3 $dict_4 $dict_5 $dict_6 $dict_7
do
    wget -c $url/$dict -P $HOME && tar jxf $HOME/$dict -C $dir
    rm -rf $HOME/$dict
    echo ""
done

echo "Run 'stardict &' in terminal,enjoy it."
echo ""


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/58129/showart_451856.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP