Results 1 to 6 of 6

Thread: how to swich from different VGA on Ubuntu 14 lts

  1. #1
    Join Date
    Jul 2015
    Beans
    3

    how to swich from different VGA on Ubuntu 14 lts

    What I checked out:
    sudo lshw -c video
    Code:
    *-display               
       description: VGA compatible controller
       product: Haswell-ULT Integrated Graphics Controller
       vendor: Intel Corporation
       physical id: 2
       bus info: pci@0000:00:02.0
       version: 09
       width: 64 bits
       clock: 33MHz
       capabilities: msi pm vga_controller bus_master cap_list rom
       configuration: driver=i915 latency=0
    sudo lspci -nnk | grep -i vga -A3 | grep 'in use'
    Code:
    Kernel driver in use: i915
    Kernel driver in use: radeon
    sudo lspci -nnk | grep -i vga -A2
    Code:
    00:02.0 VGA compatible controller [0300]: Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] (rev 09)
    Subsystem: Dell Device [1028:0609]
    Kernel driver in use: i915
    03:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Venus PRO [Radeon HD 8850M] [1002:6823] (rev ff)
    Kernel driver in use: radeon
    What I want to achieve: I would like to know if the Radeon VGA is the main in use on my sistem. And if it's not, I would like to set it as the default one. How can I do this?
    I can provide additional info, if needed.

  2. #2
    Join Date
    Mar 2015
    Location
    Germany
    Beans
    31
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: how to swich from different VGA on Ubuntu 14 lts

    To check what graphics card is in use run this command on the terminal.
    Code:
    lspci -vnnn | perl -lne 'print if /^\d+\:.+(\[\S+\:\S+\])/' | grep VGA
    Whatever device has the [VGA controller] line at the end is the one in use.

  3. #3
    Join Date
    Jul 2015
    Beans
    3

    Re: how to swich from different VGA on Ubuntu 14 lts

    then I have the Intel integrated one in use... how can I set just the ATI VGA?

  4. #4
    Join Date
    Mar 2015
    Location
    Germany
    Beans
    31
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: how to swich from different VGA on Ubuntu 14 lts

    I run on a nVidia so i don't know how. But i saw this post and maybe it could be useful to you.
    https://xpressrazor.wordpress.com/20...-linux-ubuntu/

  5. #5
    Join Date
    Oct 2011
    Location
    Galiza
    Beans
    3,380
    Distro
    Ubuntu Development Release

    Re: how to swich from different VGA on Ubuntu 14 lts

    Quote Originally Posted by Julind View Post
    I run on a nVidia so i don't know how. But i saw this post and maybe it could be useful to you.
    https://xpressrazor.wordpress.com/20...-linux-ubuntu/
    ^^^^
    This.
    -or-
    You can simply disable the integrated one (Intel) in your BIOS/UEFI settings. If what you want is to always use the better card then that would be the logical way to do it.
    Use the above post link for instructions on how to setup a hybrid system where you can toggle the cards only (reboot usually needed). Just disable one or the other if you don't want to deal with the hybrid feature.
    Galiza Nação!

  6. #6
    Join Date
    Jul 2015
    Beans
    3

    Re: how to swich from different VGA on Ubuntu 14 lts

    Ok, I've followed that hybrid installation guide.. But I figured out those problems:
    1. I've never been able to see under 'Software & Updates" -> "Additional Drivers" some experimental version of fglrx drivers;
    2. I've never been able to run the sudo aticonfig --initial -f command.

    Of course I've tried to install proprietary drivers anyway, rebooted my laptop and then the black screen with low-graphics appeared: ctrl + alt + f1 and logged in.
    I run again those commands, and here you can see my outputs:
    sudo lspci -nnk | grep -i vga -A3 | grep 'in use'
    Code:
        Kernel driver in use: i915
        Kernel driver in use: fglrx_pci
    sudo lspci -nnk | grep -i vga -A2
    Code:
    00:02.0 VGA compatible controller [0300]: Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] (rev 09)
        Subsystem: Dell Device [1028:0609]
        Kernel driver in use: i915
    --
    03:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Venus PRO [Radeon HD 8850M] [1002:6823]
        Subsystem: Dell Device [1028:0609]
        Kernel driver in use: fglrx_pci
    sudo lshw -c video
    Code:
      *-display
           description: VGA compatible controller
           product: Haswell-ULT Integrated Graphics Controller
           vendor: Intel Corporation
           physical id: 2
           bus info: pci@0000:00:02.0
           version: 09
           width: 64 bits
           clock: 33MHz
           capabilities: msi pm vga_controller bus_master cap_list rom
           configuration: driver=i915 latency=0
           resources: irq:62 memory:f0000000-f03fffff memory:e0000000-efffffff ioport:5000(size=64)
      *-display
           description: VGA compatible controller
           product: Venus PRO [Radeon HD 8850M]
           vendor: Advanced Micro Devices, Inc. [AMD/ATI]
           physical id: 0
           bus info: pci@0000:03:00.0
           version: 00
           width: 64 bits
           clock: 33MHz
           capabilities: pm pciexpress msi vga_controller bus_master cap_list rom
           configuration: driver=fglrx_pci latency=0
           resources: irq:65 memory:d0000000-dfffffff memory:f0500000-f053ffff ioport:3000(size=256) memory:f0540000-f055ffff
    sudo lspci -vnnn | perl -lne 'print if /^\d+\:.+(\S+|S+|])/' | grep VGA
    Code:
    00:02.0 VGA compatible controller [0300]: Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] (rev 09) (prog-if 00 [VGA controller])
    03:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Venus PRO [Radeon HD 8850M] [1002:6823] (prog-if 00 [VGA controller])
    Any suggestion???

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •