No Unity após o upgrade do ubuntu 12.10

-1

Depois que eu atualizei para o Ubuntu 12.10 de 12.04, havia gráficos baixos e nenhum Unity. Apenas o mouse e o papel de parede. Então, entrei no terminal via Ctrl + Alt + T , iniciei o Chrome e procurei por uma solução. Como resultado, tentei isso:

sudo sh amd-driver-installer-12.6-legacy-x86.x86_64.run

Não funcionou. Então eu tentei isso:

sudo add-apt-repository ppa:makson96/fglrx
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install fglrx-legacy

Também não funcionou. Eu removi o repositório, retornei a versão xorg para 1.13, e tentei isto:

sudo sh /usr/share/ati/fglrx-uninstall.sh 
sudo apt-get remove --purge fglrx fglRx_* fglrx-amdcccle* fglrx-dev* xorg-driver-fglrx 
sudo apt-get remove --purge xserver-xorg-video-ati xserver-xorg-video-radeon sudo apt-get install xserver-xorg-video-ati 
sudo apt-get install --reinstall libgl1-mesa-glx libgl1-mesa-dri xserver-xorg-core

Ele retornou a resolução da tela, mas ainda não havia o Unity. Existe algo que eu poderia fazer?

Minha placa gráfica é:

lspci | grep VGA
01:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI RV620 [Mobility Radeon HD 3400 Series]

A saída do lspci -k é

VGA compatible controller: Advanced Micro Devices [AMD] nee ATI RV620 [Mobility Radeon HD 3400 Series] Subsystem: Sony Corporation Device 9033 Kernel driver in use: radeon Kernel modules: radeon

    
por Aivaras 09.11.2012 / 23:50

1 resposta

0

Eu tive o mesmo problema no notebook da série Asus A6R da minha esposa. Depois de atualizar para o kernel 3.5.0-18-generic e desinstalar o fglrx-legacy ( sudo apt-get remove fglrx-legacy ), ele está funcionando bem agora.

Eu atualizei o kernel agora e lembrei de desinstalar depois de ver o seu post. A saída de lspci -k é:

00:00.0 Host bridge: Advanced Micro Devices [AMD] nee ATI Device 5a31 (rev 01)
    Subsystem: Advanced Micro Devices [AMD] nee ATI Device 5a31
    Kernel modules: ati-agp
00:01.0 PCI bridge: Advanced Micro Devices [AMD] nee ATI RS480 PCI Bridge
    Kernel modules: shpchp
00:13.0 USB controller: Advanced Micro Devices [AMD] nee ATI IXP SB400 USB Host Controller (rev 80)
    Subsystem: ASUSTeK Computer Inc. Device 1397
    Kernel driver in use: ohci_hcd
00:13.1 USB controller: Advanced Micro Devices [AMD] nee ATI IXP SB400 USB Host Controller (rev 80)
    Subsystem: ASUSTeK Computer Inc. Device 1397
    Kernel driver in use: ohci_hcd
00:13.2 USB controller: Advanced Micro Devices [AMD] nee ATI IXP SB400 USB2 Host Controller (rev 80)
    Subsystem: ASUSTeK Computer Inc. Device 1397
    Kernel driver in use: ehci_hcd
00:14.0 SMBus: Advanced Micro Devices [AMD] nee ATI IXP SB400 SMBus Controller (rev 82)
    Subsystem: ASUSTeK Computer Inc. Device 1397
    Kernel driver in use: piix4_smbus
    Kernel modules: i2c-piix4
00:14.1 IDE interface: Advanced Micro Devices [AMD] nee ATI IXP SB400 IDE Controller (rev 80)
    Subsystem: ASUSTeK Computer Inc. Device 1397
    Kernel driver in use: pata_atiixp
    Kernel modules: pata_atiixp
00:14.2 Audio device: Advanced Micro Devices [AMD] nee ATI IXP SB4x0 High Definition Audio Controller (rev 01)
    Subsystem: ASUSTeK Computer Inc. Device 1339
    Kernel driver in use: snd_hda_intel
    Kernel modules: snd-hda-intel
00:14.3 ISA bridge: Advanced Micro Devices [AMD] nee ATI IXP SB400 PCI-ISA Bridge (rev 80)
00:14.4 PCI bridge: Advanced Micro Devices [AMD] nee ATI IXP SB400 PCI-PCI Bridge (rev 80)
01:05.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI RC410 [Radeon Xpress 200M]
    Subsystem: ASUSTeK Computer Inc. Device 1392
    Kernel driver in use: radeon
    Kernel modules: radeon, radeonfb
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10)
    Subsystem: ASUSTeK Computer Inc. L8400B or L3C/S notebook
    Kernel driver in use: 8139too
    Kernel modules: 8139too, 8139cp
02:01.0 CardBus bridge: Ricoh Co Ltd RL5c476 II (rev b3)
    Subsystem: ASUSTeK Computer Inc. Device 1397
    Kernel driver in use: yenta_cardbus
    Kernel modules: yenta_socket
02:01.1 SD Host controller: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter (rev 17)
    Subsystem: ASUSTeK Computer Inc. Device 1397
    Kernel driver in use: sdhci-pci
    Kernel modules: sdhci-pci
02:01.2 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter (rev 08)
    Subsystem: ASUSTeK Computer Inc. Device 1397
    Kernel driver in use: r592
    Kernel modules: r592
02:03.0 Network controller: Broadcom Corporation BCM4318 [AirForce One 54g] 802.11g Wireless LAN Controller (rev 02)
    Subsystem: ASUSTeK Computer Inc. A6U notebook embedded card
    Kernel driver in use: b43-pci-bridge
    Kernel modules: ssb

Espero que isso ajude outras pessoas também.

    
por user108776 17.11.2012 / 15:12