libbpf-tools: update runqlat for libbpf 1.0
[platform/upstream/bcc.git] / QUICKSTART.md
1 # Quick Start Guide
2
3 A Docker container is provided for user to try out [bcc](https://github.com/iovisor/bcc).
4
5 From your host shell:
6 ```bash
7 docker run -it --rm \
8   --privileged \
9   -v /lib/modules:/lib/modules:ro \
10   -v /usr/src:/usr/src:ro \
11   -v /etc/localtime:/etc/localtime:ro \
12   --workdir /usr/share/bcc/tools \
13   zlim/bcc
14 ```
15
16 Now, from the container shell, you can try the various pre-installed bcc tools.
17
18 For examples, please refer to the [tutorial](docs/tutorial.md#1-general-performance).
19
20 If you wish to install bcc on your host, please refer to [INSTALL.md](INSTALL.md).