Centos环境下 helloworld rpm的制作,安装,卸载

前端之家收集整理的这篇文章主要介绍了Centos环境下 helloworld rpm的制作,安装,卸载前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

安装rpm-build,rpmdevtools等工具

我的制作目录在 /root/rpmbuild/下,用户直接root


刚开始的目录文件如下,其他目录都是空的

SOURCES
│   └── helloworld-0.1-1.tar.gz
SPECS
│   └── helloworld.spec
tar中的文件内容如下
├── helloworld
│   ├── configure
│   ├── helloworld.c
│   └── readme
  • helloword.c
  • @H_301_25@
    #include <stdio.h>
    
    int main()
    {
        printf("Hello World!\n");
        return 0;
    }

猜你在找的CentOS相关文章