Wiki

INFO 4480: Systems Administration and Cloud Computing

Homework 3: Test documentation for a random source-based package

SSH into a Ubuntu instance via Amazon Web Services.
1: As non-root, type the following command to check what packages have been installed from source: cd /usr/local/src
The prompt should look similar to the following
[[email protected] src ~]$
2: As non-root, type the following commands to install the prerequisite dependencies for pcre. 
sudo apt update
sudo apt-get install gawk
sudo apt-get install gcc --fix-missing
sudo apt install clang
sudo apt install make
sudo apt update
3: As non-root, type the following command to download the source package: sudo wget github.com/PCRE2Project/pcre2/releases/download/pcre2-10.42/pcre2-10.42.tar.gz
4: As non-root, type the following command to unarchive pcre2-10.42.tar.gz into a directory sudo tar -zxf pcre2-10.42.tar.gz: sudo tar -zxf pcre2-10.42.tar.gz
5: As non-root, type the following command to change to the pcre directory: cd p*
6: As non-root, type the following command: sudo ./configure
7 As non-root, type the following command: sudo make
8: As non-root, type the following command: sudo make install
9: As non-root, type the following command to check if pcre was installed: ls -a /usr/local/bin
If pcre was successfully installed from source, the prompt should look like the following:
[[email protected] pcre ~]$ ls -a /usr/local/bin
. .. pcre2-config pcre2grep pcre2testsud

Homework 4: How to Install a LAMP

...comng soon