博客地址:http://www.moonxy.com 一.前言 在 Linux 系统中,应用程序的软件包主要分为两种:1)第一种是二进制的可执行软件包,也就是解开包后就可以直接运行.在 Windows 中几乎所有的软件包都是这种类型,类似于 exe ,安装完这个程序后就可以使用,但你看不到源代码,而且下载时要注意这个软件是否是你所使用的平台,否则将无法正常安装.2)第二种是源代码软件包,解开包后,你还需要使用编译器将其编译成为可执行文件.这在 Windows 系统中几乎是没有的,因为 Windo
cmake软件 tar -zxvf cmake-2.8.8.tar.gz cd cmake-2.8.8 ./bootstrap make make install cd ../ 依赖包 yum install ncurses-devel -y yum install pcre pcre-devel -y yum install gcc* -y 创建用户 groupadd mysql useradd -g mysql mysql echo "oracle" |passwd -
<Programming from the Ground Up>学习第5天,p88-p94总结,总计7页. 一.技术总结 1.touppercase.s #PURPOSE: This program converts an input file #to an output file with all letters #converted to uppercase. #PROCESSING: #(1)Open the input file #(2)Open the output file #(3