#77 - Fix nmcli mtu property and drop -lmc from Spark system-config tutorial#78
Merged
Merged
Conversation
…utorial NetworkManager rejects `ipv4.mtu` (MTU is a link-layer property); the correct setting is `ethernet.mtu`. Updates both the IGX `nmcli connection modify` example and the Spark `nmcli connection add` profiles, plus the back-reference under Spark Step 9. Also drops `nvidia-smi -lmc` from Spark Step 7: GB10's unified CPU/GPU memory has no separate VRAM clock domain, so `clocks.max.mem` reports N/A and the command fails. Step 7 now locks only the SM clock and the systemd-unit note points readers at the line to omit from the IGX recipe. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Signed-off-by: Ramya Gurunathan <rgurunathan@nvidia.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Two corrections to
docs/tutorials/system_configuration.mdfrom a hands-on Spark walkthrough (issue #77):ipv4.mtu→ethernet.mtuin the Sparknmcli connection addprofiles, the IGXnmcli connection modifyexample, and the Spark Step 9 back-reference. NetworkManager rejectsipv4.mtu(MTU is link-layer, not an IPv4 property) — confirmed on the Spark box:Error: invalid property 'mtu': 'mtu' not among [method, dns, …].nvidia-smi -lmcfrom Spark Step 7. GB10's unified CPU/GPU memory has no separate VRAM clock domain, soclocks.max.memisN/Aand the command fails. Step 7 now locks only the SM clock and the systemd-unit note tells readers which line to omit from the IGX recipe.Closes #77.
Test plan
ipv4.mtuis rejected on Spark (nmcli connection add … ipv4.mtu 9000→Error: invalid property 'mtu').ethernet.mtuis accepted on Spark and IGX.mkdocs serverenders the Spark and IGX tabs cleanly; no broken anchors or build warnings.🤖 Generated with Claude Code