Here is my answer .
You get this error because there is no monitor to open firefox, it gets confused.
Install Xvfb, which pretends to be a monitor, but is not displayed anywhere.
sudo apt-get install xvfb
If you want fewer errors to add these fonts, this warning does not matter.
sudo apt-get install xfonts-100dpi xfonts-75dpi xfonts-scalable xfonts-cyrillic
Then run it and set something on the screen that the system will not use. Here is what I am doing, remember that & causes the terminal to run something in the background.
Xvfb :99 -ac &
export DISPLAY=:99
firefox &
Also, I had problems with ruby ββwhen I disconnected the rails server when I left the ssh terminal. To fix this problem, use the Screen. The screen starts another terminal without ssh influence.
sudo apt-get install screen
Then just launch the screen before you make the material higher.
screen
To exit the current screen window, simply press "Ctrl + A" and return to the -r screen.
mvndaai
source share