Building Programs from Source on any Linux Distribution
In this video, I am going over building programs from source on any Linux distribution.
Install the essentials
$ sudo apt-get install build-essential git
Next get the grab the project..
$ wget https://www.example.com/test.tar.gz
OR
$ git clone https://github.com/ChrisTitusTech/gnome-layout-manager
Extract Tar file - Skip if git clone used
$ tar -xzvf test.tar.gz
Resolve Dependencies
$ ./configure
**LOOK FOR ERRORS! install any missing packages before continuing.
Compile project
$ make
Install project
$ sudo make install
Notes:
-Program won't be updated
-To uninstall you much use $ sudo make uninstall from directory
**If directory is deleted, you will need to recompile before uninstalling
Support My Work
-----------------------------------------------------------------------------------
►► Get Updates, Launch Announcements and More ➜ https://www.cttstore.com/newsletter
►► Chris Titus Tech Digital Downloads ➜ https://www.cttstore.com/downloads
►► Product and Service Recommendations ➜ https://christitus.com/recommendations
►► My YouTube Gear and Computers ➜ https://www.amazon.com/shop/christitustech
Other Places to Find Me
-----------------------------------------------------------------------------------
►► Titus Tech Talk ➜ https://www.youtube.com/c/TitusTechTalk
►► Titus Tech Gaming ➜ https://www.youtube.com/c/TitusTechGaming
►► Chris Titus Fitness ➜ https://www.youtube.com/@christitusfitness
►► Twitch ➜ https://www.twitch.tv/christitustech
►► Twitter ➜ https://twitter.com/christitustech
DISCLAIMER: This video and description contain affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps supports the channel and allows us to continue to make videos like this. Thank you for your support!