ubu编译器(下载链接)

ubu编译器(下载链接)

每次要从源代码编译软件时,都需要在终端中输入一大堆命令。有没有办法使用图形用户界面来编译软件?

答案1

通过配置 -> 制作 -> 制作安装的 GUI

ubu编译器下载链接

在此处输入图片描述

Ubucompilator 是一个通过源代码编译并制作 .deb 的 GUI 软件。

一款适用于 ubuntu、debian、linux mint 的简易软件,用于编译、制作、安装和创建 .deb 包。

答案2

您可以编写一个 shell 脚本,在其中编写所有命令,然后每次想要使用它们时都执行该脚本:

脚本(位于名为“我的脚本") :

#!/bin/bash

Write your commands here

然后在终端中:

The Terminal :-$ chmod +x myscript.sh    # Doing it once to have the right to execute it
The Terminal :-$ ./myscript.sh           # Each time you want to run your commands

另请查看软件自动化工具像 GNU制作(以其著名的“生成文件“)。

网络上有大量的教程和示例向您展示如何编写 shell 脚本(“BASH 脚本”)或 makefile。

注意:它不是 Ubuntu 或 Linux 所特有的。

相关内容