Autor Tópico: Iniciando no DOS ( Ubuntu 9.10, Kernel 2.6.31.19 )  (Lida 1152 vezes)

Offline mieciow

  • Usuário Ubuntu
  • *
  • Mensagens: 3
    • Ver perfil
Iniciando no DOS ( Ubuntu 9.10, Kernel 2.6.31.19 )
« Online: 15 de Fevereiro de 2010, 16:15 »
Ola pessoal

Instalei o ubuntu no meu notebook SIM 1062.
Ele pediu uma atualização, eu aceitei
Mas agora ele só entra da tela do "dos"

Usando o comando lspci, descobri que a placa de video é SIS 771/671

E agora, como voltar ao modo grafico ?
Esclareço que não sei me virar no linux

Obrigado

Offline Zeox

  • Usuário Ubuntu
  • *
  • Mensagens: 51
  • Não sei o que digitar
    • Ver perfil
Re: Iniciando no DOS ( Ubuntu 9.10, Kernel 2.6.31.19 )
« Resposta #1 Online: 15 de Fevereiro de 2010, 17:31 »
seu sistema é 32 ou 64 bits?

Offline Felix

  • Equipe Ubuntu
  • Usuário Ubuntu
  • *****
  • Mensagens: 3.068
    • Ver perfil
    • Alexsandro Felix
Re: Iniciando no DOS ( Ubuntu 9.10, Kernel 2.6.31.19 )
« Resposta #2 Online: 15 de Fevereiro de 2010, 17:38 »
Quando li o título do tópico imaginei uma coisa totalmente diferente, mas vamos lá, meu notebook tem este mesmo chipset e já passei por problema semelhante, segue abaixo a minha solução:

Citar
Primeiramente, confira se o seu problema é realmente o mesmo que o meu, no terminal digite
$lspci
No meu caso, identifiquei o driver de vídeo nesta linha:

01:00.0 VGA compatible controller: Silicon Integrated Systems [SiS] 771/671 PCIE VGA Display Adapter (rev 10)
Só para tirar a dúvida a respeito do kernel utilizado (por questões do sistema ser 32 ou 64 bits:
$ uname -a
Linux midgard 2.6.31-16-generic #53-Ubuntu SMP Tue Dec 8 04:01:29 UTC 2009 i686 GNU/Linux
Conferidos estes detalhes, baixe o .deb com o comando abaixo:
wget http://ncc-1701a.homelinux.net/~linux-sis/downloads/xorg-driver-sis671_0.9_i386.deb

Para instalá-lo basta um:
$sudo dpkg -i xorg-driver-sis671_0.9_i386.deb

Caso exista um arquivo xorg.conf em seu Sistema, faça uma cópia de segurança do mesmo por medida de segurança:
$sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf_bkp_AAAAMMDD
**Obs.: Particularmente eu uso este formato para arquivos de backup, onde substituo:

AAAA – Ano
MM – Mês
DD – Dia
Isso realmente ajuda em muito na organização

Se no seu caso o xorg.conf não existe, crie um:
$sudo vim /etc/X11/xorg.conf
No meu caso, ele já existia, então eu fiz apenas uma pequena alteração, abaixo, o xorg.conf da forma como ficou totalmente funcional:
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "Device"
   Identifier   "Configured Video Device"
   Driver "sis671"
EndSection

Section "Monitor"
   Identifier   "Configured Monitor"
EndSection

Section "Screen"
   Identifier   "Default Screen"
   Monitor      "Configured Monitor"
   Device      "Configured Video Device"
EndSection
Para quem for apenas alterar o arquivo, o trecho alterado foi somente este:

Section "Device"
   Identifier   "Configured Video Device"
   Driver "sis671"
EndSection
Salve o arquivo, reinicie o sistema e faça um bom uso, estou neste momento usando perfeitamente 1280×800 de resolução!

fonte