Eu estava lendo este artigo ontem.
- Instale um X Server - Xming é um bom e gratuito
- Instale o programa - por exemplo, Vim
sudo apt-get install vim-gtk
- Definir sua variável de ambiente de exibição -
export DISPLAY=:0
- Iniciar um aplicativo -
gvim
Você pode combinar as etapas 3 e 4, se desejar. DISPLAY=:0 gvim
Um comentador adicionou:
If you don't want to run the export DISPLAY=:0 each time you open a bash shell, open .bashrc in a text editor. Examples of ways to open a text editor with .bashrc:
nano ~/.bashrc gedit ~/.bashrc
Then, add export DISPLAY=:0 to the end of the file. The .bashrc file is like the autorun file in Microsoft Windows. It gets executed every time a new Bash window is opened.