Operating Systems 2019W: Tutorial 7: Difference between revisions
Line 30: | Line 30: | ||
apt update | apt update | ||
apt install bcc-tools libbcc-examples linux-headers-$(uname -r) | apt install bcc-tools libbcc-examples linux-headers-$(uname -r) | ||
# add the bcc tools to root's path | |||
echo "export PATH=/usr/share/bcc/tools:\$PATH" >> /root/.profile | |||
There is an older version of BCC the the standard Ubuntu repositories in the bpfcc-tools package. Please do not install this as it seems to have significant bugs. If you've previously uninstalled it, you'll need to uninstall before following the steps above. (Distributions newer than Ubuntu 18.04 may have a more up-to-date version of BCC, check your repositories.) | There is an older version of BCC the the standard Ubuntu repositories in the bpfcc-tools package. Please do not install this as it seems to have significant bugs. If you've previously uninstalled it, you'll need to uninstall before following the steps above. (Distributions newer than Ubuntu 18.04 may have a more up-to-date version of BCC, check your repositories.) |
Revision as of 20:43, 12 March 2019
This assignment is still in development. Please do not work on this material just yet!
In this tutorial you will be working with bcc-tools, a set of tools that is part of the BPF Compiler Collection (BCC). BCC programs are a combination of C and Python. The C code is compiled at runtime into eBPF bytecode; this code is then uploaded to the kernel and interfaced with by a Python program.
Installation
To install bcc-tools on an Ubuntu 18.04 system (such as your openstack VM), do the following:
# become root, do the rest of the commands below as root sudo su - # update your system apt update apt dist-upgrade apt clean apt autoremove # import the key for the iovisor repository apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4052245BD4284CDD # add the iovisor repository to apt echo "deb https://repo.iovisor.org/apt/$(lsb_release -cs) $(lsb_release -cs) main" | tee /etc/apt/sources.list.d/iovisor.list # update the package list and install the necessary packages apt update apt install bcc-tools libbcc-examples linux-headers-$(uname -r)
# add the bcc tools to root's path echo "export PATH=/usr/share/bcc/tools:\$PATH" >> /root/.profile
There is an older version of BCC the the standard Ubuntu repositories in the bpfcc-tools package. Please do not install this as it seems to have significant bugs. If you've previously uninstalled it, you'll need to uninstall before following the steps above. (Distributions newer than Ubuntu 18.04 may have a more up-to-date version of BCC, check your repositories.)
If you wish to install bcc-tools on a system running something other than Ubuntu 18.04, follow these directions.