TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

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

4 pointsby hackercuriousabout 10 years ago
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

decentralityabout 10 years ago
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 未加载