Posted On April 1, 2019

Linux: Compiling Software

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Linux: Compiling Software
Install From RPM:
rpm -ivh PACKAGENAME
 
Install from TAR.GZ
tar -xzvf PACKAGENAME
cd PACKAGENAME
./configure
make
make install
 
How to discover if a package is already installed
rpm -qa | grep glut

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Dev Environment Technitium DNS Server

Windows: $technitiumPortableDownload="https://download.technitium.com/dns/DnsServerPortable.zip"$tempDir="C:\Temp"; $extractionDir="C:\Technitium" $destinationFile = "$tempDir\DnsServerPortable.zip"; try{[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12}catch{} New-Item -ItemType Directory -Force -Path $tempDir…

SENDMAIL Configurations

SMTP relay will also check the source of sender by using ping-back. Thus, the servername…

How to Install Virtualbox in Ubuntu

Simply run these two commands: sudo add-apt-repository multiverse && sudo apt-get update sudo apt -y…