docs: convert plugins doc md->rst
[vpp.git] / docs / developer / build-run-debug / running_vpp.rst
1 .. _running_vpp:
2
3 .. toctree::
4
5 Running VPP
6 ===========
7
8 After building the VPP binaries, you now have several images built.
9 These images are useful when you need to run VPP without installing the packages.
10 For instance if you want to run VPP with GDB.
11
12 Running Without GDB
13 _________________________
14
15 To run the VPP images that you've built without GDB, run the following commands:
16
17 Running the release image:
18
19 .. code-block:: console
20
21    # make run-release
22    #
23
24 Running the debug image:
25
26 .. code-block:: console
27
28    # make run
29    #
30
31 Running With GDB
32 _________________________
33
34 With the following commands you can run VPP and then be dropped into the GDB prompt.
35
36 Running the release image:
37
38 .. code-block:: console
39
40    # make debug-release
41    (gdb)
42
43 Running the debug image:
44
45 .. code-block:: console
46
47    # make debug
48    (gdb)