目录

  • 1.安装虚拟机VMWare
  • 2.下载镜像文件(这里使用的是centos7)
  • 3.如果你之前centos不想要了,请按照下面图片进行删除
  • 4.打开VMWare创建配置虚拟机
  • 5.配置安装CentOS7系统
  • 6.启动CentOS7操作系统
  • 7.安装gcc工具包
  • 8.linux第一个c语言代码的执行


1.安装虚拟机VMWare

2.下载镜像文件(这里使用的是centos7)

3.如果你之前centos不想要了,请按照下面图片进行删除

这时你当时的安装目录也会被删,所以重新建一个install文件夹以便后来存放

centos mv 后台运行 centos如何运行程序_centos mv 后台运行

4.打开VMWare创建配置虚拟机

1.选择创建新的虚拟机

centos mv 后台运行 centos如何运行程序_centos mv 后台运行_02

2.典型(T)-下一步

centos mv 后台运行 centos如何运行程序_自定义_03

3.稍后安装操作系统

centos mv 后台运行 centos如何运行程序_centos mv 后台运行_04

4.Linux–CentOS7 64位

centos mv 后台运行 centos如何运行程序_centos_05

5.自定义存储位置

centos mv 后台运行 centos如何运行程序_自定义_06

6.默认

centos mv 后台运行 centos如何运行程序_centos mv 后台运行_07

7.自定义硬件后完成即可

centos mv 后台运行 centos如何运行程序_centos mv 后台运行_08


centos mv 后台运行 centos如何运行程序_centos_09

5.配置安装CentOS7系统

1.开启虚拟机

centos mv 后台运行 centos如何运行程序_自定义_10

2.一段时间之后选择语言(是下拉框,先点一下屏幕,移到下拉框右边出现灰色滚动条,中文在倒数第二个)

centos mv 后台运行 centos如何运行程序_自定义_11

3.安装信息摘要

centos mv 后台运行 centos如何运行程序_centos_12


在这一步就体现出前面为什么选择NET了


centos mv 后台运行 centos如何运行程序_配置安装_13

centos mv 后台运行 centos如何运行程序_centos mv 后台运行_14

4.安装过程中会让设置用户及密码(建议设密码,可以不用太复杂)

centos mv 后台运行 centos如何运行程序_centos_15

6.启动CentOS7操作系统

1.自动重启即可

centos mv 后台运行 centos如何运行程序_配置安装_16

2.开机后输入root或自定义用户后回车会提示输入密码,这里使用root为后面安装gcc方便 密码要使用字母上方数字键,不要使用右边小键盘,因为右边数字在Linux系统中不是数字,是字符

centos mv 后台运行 centos如何运行程序_centos mv 后台运行_17

7.安装gcc工具包

1.必须在root用户下进行操作
2.输入代码:yum -y install gcc,开始执行指令,直到出现complete完成

centos mv 后台运行 centos如何运行程序_自定义_18


centos mv 后台运行 centos如何运行程序_centos mv 后台运行_19

8.linux第一个c语言代码的执行

1.创建一个名为helloworld的c语言源文件

centos mv 后台运行 centos如何运行程序_配置安装_20


2.键盘点击(字母键

i

)开始输入模式,输入以下代码(可以自己写)


centos mv 后台运行 centos如何运行程序_centos mv 后台运行_21


3.写完后,先点击esc键(键盘左上),在输入:wq,回车


centos mv 后台运行 centos如何运行程序_centos_22


4.使用gcc命令编译运行helloworld.c源程序,使用-o参数将得到的可执行文件命名为helloworld


./helloworld执行文件


就得到结果啦~


centos mv 后台运行 centos如何运行程序_centos_23