Linux学习系列之二——编程环境配置
2013-03-31 00:34 davidw 阅读(879) 评论(0) 编辑 收藏 举报当前安装的系统是CentOS 5.9
获取IP
安装完成后,通过命令
ifconfig
取得当前虚机的IP
SSH连接
我这里是使用WINDOWS通过SSH连接Linux进行编程
可以安装“SSH Secure Shell Client”,我是在华军软件园下载的,下载地下:
http://www.onlinedown.net/soft/20089.htm
启动SSH Secure Shell Client,点击“Quick Connect”
输入IP,点击Connect
输入密码,点击OK
Vi的使用
参考《简明 Vim 练级攻略》
http://coolshell.cn/articles/5426.html
改变当前用户语言
[root@localhost ch01]# export LANG=en_US.UTF-8
[root@localhost ch01]# echo $LANG
en_US.UTF-8
修改Linux系统默认语言
编辑/etc/sysconfig/i18n这个文件,原内容如下:
LANG="en_US.UTF-8"
SYSFONT="latarcyrheb-sun16"
修改为:
LANG="zh_CN.UTF-8"
SYSFONT="latarcyrheb-sun16"
gcc
gcc是C编译器
默认未安装
[root@localhost bin]# gcc
bash: gcc: command not found
安装命令
yum install gcc
编写HelloWorld
[root@localhost ch01]# vi HelloWorld.c
#include <stdio.h>
main()
{
printf("Hello world!\n");
}
编译
[root@localhost ch01]# gcc -o HelloWorld HelloWorld.c
运行
[root@localhost ch01]# ./HelloWorld
Hello world!
g++
g++是C++编译器
默认未安装
[root@localhost ch01]# g++
bash: g++: command not found
安装
yum install gcc gcc-c++
编写HelloWorld
[root@localhost ch01]# vi HelloWorld.cpp
#include <iostream>
main()
{
std::cout << "Hello world!" << std::endl;
}
编译
[root@localhost ch01]# g++ -o HelloWorldcpp HelloWorld.cpp
运行
[root@localhost ch01]# ./HelloWorldcpp
Hello world!