After installing the packages using the command sudo apt install make git gcc-arm-none-eabi gcc bison flex libssl-dev dpkg-dev lzop libncurses5-dev, you can find the location of the installed compilers and tools using the whereis command.
For example, to find the location of GCC compiler, you can run:
whereis gcc
This will display a list of directories where GCC is installed. The output may look like this:
gcc: /usr/bin/gcc /usr/lib/gcc /usr/share/man/man1/gcc.1.gz
In this case, GCC is installed in /usr/bin/gcc. Similarly, you can use whereis command to find other installed packages and their locations.




