Linux: Compiling and Installing Source Code from the Terminal
Jump to navigation
Jump to search
Ubuntu (Hirsute)
- Ensure the automake, autoconf packages are installed
sudo apt-get install automake autoconf
- Acquire the source code, and untar it if need be. See Linux: Acquiring Source Code
- Ensure the root directory and its subdirectories and files have the access permissions set correctly. i.e. not read-only.
- Enter the command below from the sources root directory, breaking up the three individual commands if needed.
sudo ./configure && make && make install
Mint 20.1 Cinnamon
- Install the base compiler toolchain
sudo apt-get install build-essential devscripts