O Ubuntu trava na inicialização após o blecaute - Detectar as GPUs disponíveis

3

Por favor me ajude, é a minha estação de trabalho. Funcionou bem até um apagão de energia. Desde então, ele não inicializa mais. (duas vezes começou a tela de login, mas com ENTER ou um clique do mouse, a tela de login desapareceu e a tela ficou preta.

Depoisdisso,oUbuntu(eOS)nãoinicializamais

Atualização:olhounolast_gfx_boot->estávaziosyslogestáaqui-> link para meu syslog

Quais etapas devem / eu posso tentar em seguida?

Obrigado Florian

    
por Florian Thaler 28.12.2017 / 17:25

2 respostas

0

Corrigi o problema da seguinte maneira:

  1. Inicialize no modo de recuperação com acesso de leitura / gravação
  2. Ir para shell como root
  3. sudo apt-get remove lightdm (agora o gdm3 é o padrão)
  4. Inicie a rede: sudo service network-manager restart
  5. sudo apt upgrade
  6. reinicializar

Para mim, isso funcionou. Pode ser que tenha funcionado mesmo se eu não removesse o lightdm.

    
por Florian Thaler 29.12.2017 / 09:36
0

Eu experimentei isso também com um laptop antigo. Temos um Ubuntu 12.04 customizado que instalamos em vários notebooks e na maioria das vezes funciona ok, é o mesmo ubuntu para cada laptop, mas em um desses aconteceu.

Eu fui a um console (CTRL + F1) e iniciei o X com o comando startx , porque isso funcionou. Eu tentei criar um arquivo X e isso resolveu o problema:

Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/X11/misc"
    FontPath     "/usr/share/fonts/X11/cyrillic"
    FontPath     "/usr/share/fonts/X11/100dpi/:unscaled"
    FontPath     "/usr/share/fonts/X11/75dpi/:unscaled"
    FontPath     "/usr/share/fonts/X11/Type1"
    FontPath     "/usr/share/fonts/X11/100dpi"
    FontPath     "/usr/share/fonts/X11/75dpi"
    FontPath     "built-ins"
EndSection

Section "Module"
    Load  "glx"
EndSection

Section "Monitor"
    Identifier   "Monitor0"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "Accel"                 # [<bool>]
        #Option     "AccelMethod"           # <str>
        #Option     "Backlight"             # <str>
        #Option     "CustomEDID"            # <str>
        #Option     "DRI"                   # <str>
        #Option     "Present"               # [<bool>]
        #Option     "ColorKey"              # <i>
        #Option     "VideoKey"              # <i>
        #Option     "Tiling"                # [<bool>]
        #Option     "LinearFramebuffer"     # [<bool>]
        #Option     "HWRotation"            # [<bool>]
        #Option     "VSync"                 # [<bool>]
        #Option     "PageFlip"              # [<bool>]
        #Option     "SwapbuffersWait"       # [<bool>]
        #Option     "TripleBuffer"          # [<bool>]
        #Option     "XvPreferOverlay"       # [<bool>]
        #Option     "HotPlug"               # [<bool>]
        #Option     "ReprobeOutputs"        # [<bool>]
        #Option     "XvMC"                  # [<bool>]
        #Option     "ZaphodHeads"           # <str>
        #Option     "VirtualHeads"          # <i>
        #Option     "TearFree"              # [<bool>]
        #Option     "PerCrtcPixmaps"        # [<bool>]
        #Option     "FallbackDebug"         # [<bool>]
        #Option     "DebugFlushBatches"     # [<bool>]
        #Option     "DebugFlushCaches"      # [<bool>]
        #Option     "DebugWait"             # [<bool>]
        #Option     "BufferCache"           # [<bool>]
    Identifier  "Card0"
    Driver      "intel"
    BusID       "PCI:0:2:0"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Monitor0"
    SubSection "Display"
        Viewport   0 0
        Depth     1
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     4
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     8
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     15
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     16
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
    EndSubSection
EndSection
    
por Miguel Ortiz 06.08.2018 / 16:07