Difference between revisions of "How to resolve the "fatal server error: no screen found"/ru"

From GhostBSD Wiki
Jump to: navigation, search
(Created page with "Как исправить ошибку "fatal server error: no screen found"")
 
m (3 revisions imported)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
 
<noinclude>{{NavHeader|back=Using pkgsrc Package Management|forward=How to resolve the "fatal server error: no screen found"}}</noinclude>
 
<noinclude>{{NavHeader|back=Using pkgsrc Package Management|forward=How to resolve the "fatal server error: no screen found"}}</noinclude>
 
<languages/>
 
<languages/>
== Problem ==
+
== Описание ошибки ==
  
== Solution ==
+
== Решение ==
  
 
The solution (written by the [http://forums.ghostbsd.org/memberlist.php?mode=viewprofile&u=161 user ''A-dog'' of the GhostBSD forums])<sup>[http://forums.ghostbsd.org/viewtopic.php?f=59&t=24&start=20#p511 forums: topic ''<nowiki>[</nowiki>Solved<nowiki>]</nowiki> Fatal server error - no screens found'']</sup> was successfully working on a ''HP&nbsp;Compaq&nbsp;NX&nbsp;6310'' (laptop of [[User:Paolo|Paolo]]).
 
The solution (written by the [http://forums.ghostbsd.org/memberlist.php?mode=viewprofile&u=161 user ''A-dog'' of the GhostBSD forums])<sup>[http://forums.ghostbsd.org/viewtopic.php?f=59&t=24&start=20#p511 forums: topic ''<nowiki>[</nowiki>Solved<nowiki>]</nowiki> Fatal server error - no screens found'']</sup> was successfully working on a ''HP&nbsp;Compaq&nbsp;NX&nbsp;6310'' (laptop of [[User:Paolo|Paolo]]).

Latest revision as of 20:26, 8 October 2016

Previous: Using pkgsrc Package Management Return to Table of Contents Next: How to resolve the "fatal server error: no screen found"
How to resolve the "fatal server error: no screen found"/ru


Описание ошибки[edit]

Решение[edit]

The solution (written by the user A-dog of the GhostBSD forums)forums: topic [Solved] Fatal server error - no screens found was successfully working on a HP Compaq NX 6310 (laptop of Paolo).

becoming root[edit]

Load the cd/dvd and get to the cli to login.

To becoming root by typing

su

. Of course you have to use the passphrase for your root-account.

editing /etc/X11/xorg.conf[edit]

To edit a file we need an editor. In this example we will use ee, which is installed by default.

Open the file with the editor ee by typing

ee /etc/X11/xorg.conf

.

Go down to where the driver is identified. This section of the file begins with

Section "Device"

.

There you can change the driver to vesa by having

        Driver      "vesa"

in your file.

For leaving ee and saving the file xorg.conf,

  • press the key esc,
  • press the key a and then
  • press the key a

.

leaving root[edit]

End the session as root, type

exit

and you are back as the formal user.

starting x[edit]

Initialize the X session by typing

startx

.

Now you need to wait until the X server load for you.

Additional info for the solution[edit]

On a Acer Aspire One 532 (GMA 3150) you had to add the line 'Modes' to the /etc/X11/xorg.conf

Section "Screen"
SubSection "Display"
	Depth	24
	Modes	"1024x600" "800x600"
EndSubSection 

.