Skip to content

Fix OpenSSH 7.1 bee file #12

Merged
merged 2 commits into from
Jun 16, 2016
Merged

Fix OpenSSH 7.1 bee file #12

merged 2 commits into from
Jun 16, 2016

Commits on Jun 16, 2016

  1. openssh-7.1: Set path for xauth

    Currently the warning below is shown, logging in over SSH.
    
    ```
    > ssh deinemuddah
    Warning: No xauth data; using fake authentication data for X11 forwarding.
    ```
    
    As a result, forwarding X programs does not work anymore.
    
    ```
    > xclock
    Error: Can't open display:
    ```
    
    The problem is, that the xauth binary is hard-coded into the SSHD binary
    during build time, and set to `/usr/X11R6/bin/xauth`.
    
    ```
    > strings /usr/sbin/sshd | grep X11R
    /usr/X11R6/bin/xauth
    ```
    
    So manually set it to `/usr/bin/xauth`, as this is where it’s stored in
    Mariux.
    
    Debian does the same [1].
    
    [1] https://anonscm.debian.org/cgit/pkg-ssh/openssh.git/tree/debian/rules#99
    pmenzel committed Jun 16, 2016
    Configuration menu
    Copy the full SHA
    1ffac77 View commit details
    Browse the repository at this point in the history
  2. openssh-7.1: Fix path to ssh-copy-id manual

    The file could not be found, as the path is incorrect, missing a `${S}`.
    So add this.
    pmenzel committed Jun 16, 2016
    Configuration menu
    Copy the full SHA
    f8ad0ae View commit details
    Browse the repository at this point in the history