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

CentOS System Setup

Notes from 2018...   # Upgrade system and clean disk yum upgrade yum clean all…

How to Fix a Broken Ubuntu Upgrade

Sometimes, a power failure or manual interruption during a Linux OS upgrade can render the…

How To Setup ClamAV Antivirus Scanner in Kubernetes

Assumptions: A Kubernetes cluster is already setupThese are installed prior: Helm, MetalLB Load Balancer,A static…