linux如何安装软件包和搭建开发环境?

我买了《一站式学习C编成》这本书,书中说需要安装软件包
gcc:The GNU C compiler
libc6-dev:GNU C Library:Development Libraries and Header Files
manpages-dev:Manual pages about using GNU/Linux for develpoment
manpages-posix-dev:Manual pages about using a POSIX system for development
binutils:The GNU assembler,linker and binary utilities
gdb:The GNU Debugger
make:TheGNU version of the ''make''utility
请问这些都是什么?怎么下载安装?我用的ubuntu 10.0432位.谢谢了,没分了真对不住.

用的是 ubuntu 的话很好安装啊,用下列命令就可以了~
sudo apt-get install gcc libc6-dev manpages-dev manpages-posix-dev binutils gdb make

gcc 就是 linux 下的 c 编译器.
libc6-dev 主要是一些所需的头文件
manpages-dev 和 manpages-posix-dev 是用于开发的帮助手册, 比如说里面有每个系统调用的说明.
binutils 里面是汇编器,连接器和一些其他小工具.
gdb 是用来调试程序的
make 是用来按照一定的规则(makefile)来进行编译的程序.
温馨提示:答案为网友推荐,仅供参考
相似回答