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

Ubuntu: Disable Annoying Update Notifier

Want to get rid of this? Ubuntu: Go to System > Administration > Software Sources…

How to Add a New Disk as LVM Volume to a Linux Machine without Rebooting

Step 1: Scan all SCSI host controllers sudo su # run as root scsiPath=/sys/class/scsi_host #…

How to transfer files between Windows client to Unix Server

Download PSCP: https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html Move the executable to C:\Windows\System32 Run CMD as Administrator and copy files,…