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

How to Install NFS Server on Ubuntu 21.04

Installing NFS Server # Include prerequisites sudo apt update -y # Run updates prior to…

HAProxy Example for SSH & OpenVNP forwarding

# Source: https://limbenjamin.com/articles/running-https-ssh-vpn-on-port-443.html   global tune.ssl.default-dh-param 2048   defaults timeout connect 5000 timeout client 50000 timeout…

Linux: Check CPU Utilization

There are many utilities that would provide this information. The easiest one that is available…