docs: Add linux build command explanation (#11513)

Andrei Zvonimir Crnković created

Just adding a short note about `cargo build --release` and the location
of the compiled binary. It helps a lot to streamline usage of Zed day to
day on Linux.

Release Notes:

- N/A

Change summary

docs/src/development/linux.md | 8 ++++++++
1 file changed, 8 insertions(+)

Detailed changes

docs/src/development/linux.md 🔗

@@ -56,6 +56,14 @@ For a release build:
 cargo run --release
 ```
 
+For a release package:
+
+```
+cargo build --release
+```
+
+the binary can be found in `target/release` folder.
+
 And to run the tests:
 
 ```