How To Install Software From Source on Ubuntu

Опубликовано: 06 Октябрь 2024
на канале: Liquid Web
3,481
16

In this video, we follow along with the article titled "How To Install Software From Source on Ubuntu" in the Liquid Web knowledgebase located here: https://www.liquidweb.com/kb/how-to-i...

Commands used:
===================
SOURCE:
apt-get update -y
apt-get install build-essential -y
apt install build-essential dh-autoreconf libcurl4-gnutls-dev libexpat1-dev gettext libz-dev libssl-dev -y
wget https://github.com/git/git/archive/v2...
tar -xvzf v2.23.0.tar.gz
cd git-2.23.0/
make configure
/configure --prefix=/usr
make all
make install
git --version

===================
.DEB INSTALL
wget http://mirrors.kernel.org/ubuntu/pool...
apt-get install libjq1 libc6 -y
dpkg -i jq_1.5+dfsg-2_amd64.deb
dpkg -i jq_1.5+dfsg-2_amd64.deb

===================
FLATPACK
add-apt-repository ppa:alexlarsson/flatpak -y
apt-get update -y
apt-get install flatpak -y
flatpak --version
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flat...
flatpak search Cowsay
flatpak install Cowsay -y

===================

For more information about this and other topics, visit us at https://www.liquidweb.com/kb/ or
For more information on our managed products visit us at https://www.liquidweb.com/products/ma... to learn more about our current specials!

Video by: Justin Palmer