Zi Shen Lim | 932f8ce | 2016-12-01 15:06:56 -0800 | [diff] [blame] | 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). |