Fix nx attach using sudo - simplest solution - #149
Merged
Conversation
After research, sudo is the standard and simplest approach for cross-user screen access.
Changes:
- Re-enabled sudoers configuration during install
- Client uses sudo -u nexus screen -r {session}
- Removed multiuser/ACL config from screenrc (not needed)
- Auto-configured passwordless sudo in /etc/sudoers.d/nexus_attach
Result: Simple, standard, works everywhere. Requires reinstall for sudoers setup.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.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
Fixes
nx attachby using sudo for cross-user screen access - the simplest and most standard approach.Changes
sudo -u nexus screen -r {session}for attach (both local and remote)nexus-server installWhy sudo?
After testing multiuser mode with ACLs, found that:
acladdrequires explicitly adding each user (no wildcard support)/etc/sudoers.d/nexus_attachduring installTest Plan
sudo nexus-server installnx run "sleep 100"nx attach(should work without password prompt)