TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

How do I install an application on a Linux system from a zip file?

4 点作者 hackercurious大约 10 年前
How do I install an application on a Linux system from a zip file? I find that many programs now are at github and they provide a zip file. I can not find the programs in the repository and they do not use a .tar or .deb file system. Thanks

1 comment

decentrality大约 10 年前
Usually this is to `unzip &lt;file&gt;`, then if it&#x27;s source code ( C or C++ in particular ) enter the folder where the contents extracted to, and run `make` and then run `make install` if there are no errors.<p>This is very general. There are many things you can usually configure first, but that is the usual generic procedure for most applications. If it&#x27;s JAVA or another language though, it will be different.<p>If it&#x27;s not source code but it&#x27;s a binary file, just unzip it, make sure the binary is executable, then execute it.<p>Obviously, be sure the executable is trustworthy.
评论 #9268643 未加载