X11: run a gnome app as another user

后端 未结 6 1828
日久生厌
日久生厌 2021-02-01 20:35

I have ubuntu + x11 + gnome.

I want to run a graphical application as another user.

However, when I start it from the command line using sudo -u otheruser

6条回答
  •  孤独总比滥情好
    2021-02-01 21:26

    Execute this command first:

    $ sudo xhost +
    

    Then run the command you want as the other user:

    $ sudo -i -u username
    $ command you want to run
    

    When you are done:

    $ sudo xhost -
    

提交回复
热议问题