• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Quick Start Guide
2
3A Docker container is provided for user to try out [bcc](https://github.com/iovisor/bcc).
4
5From your host shell:
6```bash
7docker 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
16Now, from the container shell, you can try the various pre-installed bcc tools.
17
18For examples, please refer to the [tutorial](docs/tutorial.md#1-general-performance).
19
20If you wish to install bcc on your host, please refer to [INSTALL.md](INSTALL.md).
21