设备驱动程序

  • Post author:
  • Post category:其他




以编写helloworld程序为例。

1.用ctrl+alt+T来打开终端

2.要在某个文件夹里创建文本,首先要回到该文件夹的目录。如我在桌面(desktop)建立文本。 (在终端中输入)

cd Desktop //然后按下回车

3.创建文件夹(此步骤可跳过,但建议创建)

mkdir 文件名

4.建立文本

gedit helloworld.c //然后按下回车,会跳出一个类似于windows的记事本

5.往里面敲代码

# include <stdio.h>

int main(void) {


printf(“hello world!”);

return 0;

}

在这里插入图片描述

6.保存代码,关闭文本框。

7.启动gcc对代码进行编译。

gcc helloworld.c -o execFile(此步骤会生成一个execFlie的文件,可用ls查看)

9.运行

./execFlie则会开始运行

在这里插入图片描述



错误集

  • make过程中出现makefile的错误 *** missing separator Stop.
  • 格式不对
  • Linux设备驱动程序安装fatal error: linux/module.h: No such file or directory

    需要makefile文件
  • 要在Ubuntu中安装整个Linux内核源代码

    sudo apt-get install linux-source



版权声明:本文为weixin_50927106原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。