Jump to content
Read the Funtoo Newsletter: Summer 2023 ×

maemo-funtoo

Members
  • Posts

    10
  • Joined

  • Last visited

Posts posted by maemo-funtoo

  1. long caching in Firefox and all browsers a long time to load pages I think it is because of the conflict dhclient dhcpcd as network Manager,but I'm not sure.

    rc-status
    Runlevel: default
     NetworkManager                                                    [  started  ]
     netmount                                                          [  started  ]
     consolekit                                                        [  started  ]
     postfix                                                           [  started  ]
     sshd                                                              [  started  ]
     local                                                             [  started  ]
    Dynamic Runlevel: hotplugged
    Dynamic Runlevel: needed
     lvmetad                                                           [  started  ]
     dbus                                                              [  started  ]
    Dynamic Runlevel: manual
    

    /etc/rc.conf

    # Global OpenRC configuration settings
    
    # Set to "YES" if you want the rc system to try and start services
    # in parallel for a slight speed improvement. When running in parallel we
    # prefix the service output with its name as the output will get
    # jumbled up.
    # WARNING: whilst we have improved parallel, it can still potentially lock
    # the boot process. Don't file bugs about this unless you can supply
    # patches that fix it without breaking other things!
    #rc_parallel="NO"
    
    # Set rc_interactive to "YES" and you'll be able to press the I key during
    # boot so you can choose to start specific services. Set to "NO" to disable
    # this feature. This feature is automatically disabled if rc_parallel is
    # set to YES.
    #rc_interactive="YES"
    
    # If we need to drop to a shell, you can specify it here.
    # If not specified we use $SHELL, otherwise the one specified in /etc/passwd,
    # otherwise /bin/sh
    # Linux users could specify /sbin/sulogin
    rc_shell=/sbin/sulogin
    
    # Do we allow any started service in the runlevel to satisfy the dependency
    # or do we want all of them regardless of state? For example, if net.eth0
    # and net.eth1 are in the default runlevel then with rc_depend_strict="NO"
    # both will be started, but services that depend on 'net' will work if either
    # one comes up. With rc_depend_strict="YES" we would require them both to
    # come up.
    #rc_depend_strict="YES"
    
    # rc_hotplug is a list of services that we allow to be hotplugged.
    # By default we do not allow hotplugging.
    # A hotplugged service is one started by a dynamic dev manager when a matching
    # hardware device is found.
    # This service is intrinsically included in the boot runlevel.
    # To disable services, prefix with a !
    # Example - rc_hotplug="net.wlan !net.*"
    # This allows net.wlan and any service not matching net.* to be plugged.
    # Example - rc_hotplug="*"
    # This allows all services to be hotplugged
    #rc_hotplug="*"
    
    # rc_logger launches a logging daemon to log the entire rc process to
    # /var/log/rc.log
    # NOTE: Linux systems require the devfs service to be started before
    # logging can take place and as such cannot log the sysinit runlevel.
    #rc_logger="YES"
    
    # Through rc_log_path you can specify a custom log file.
    # The default value is: /var/log/rc.log
    #rc_log_path="/var/log/rc.log"
    
    # If you want verbose output for OpenRC, set this to yes. If you want
    # verbose output for service foo only, set it to yes in /etc/conf.d/foo.
    #rc_verbose=no
    
    # By default we filter the environment for our running scripts. To allow other
    # variables through, add them here. Use a * to allow all variables through.
    #rc_env_allow="VAR1 VAR2"
    
    # By default we assume that all daemons will start correctly.
    # However, some do not - a classic example is that they fork and return 0 AND
    # then child barfs on a configuration error. Or the daemon has a bug and the
    # child crashes. You can set the number of milliseconds start-stop-daemon
    # waits to check that the daemon is still running after starting here.
    # The default is 0 - no checking.
    #rc_start_wait=100
    
    # rc_nostop is a list of services which will not stop when changing runlevels.
    # This still allows the service itself to be stopped when called directly.
    #rc_nostop=""
    
    # rc will attempt to start crashed services by default.
    # However, it will not stop them by default as that could bring down other
    # critical services.
    #rc_crashed_stop=NO
    #rc_crashed_start=YES
    
    # Set rc_nocolor to yes if you do not want colors displayed in OpenRC
    # output.
    #rc_nocolor=NO
    
    ##############################################################################
    # MISC CONFIGURATION VARIABLES
    # There variables are shared between many init scripts
    
    # Set unicode to YES to turn on unicode support for keyboards and screens.
    unicode="YES"
    
    # This is how long fuser should wait for a remote server to respond. The
    # default is 60 seconds, but  it can be adjusted here.
    #rc_fuser_timeout=60
    
    # Below is the default list of network fstypes.
    #
    # afs ceph cifs coda davfs fuse fuse.sshfs gfs glusterfs lustre ncpfs
    # nfs nfs4 ocfs2 shfs smbfs
    #
    # If you would like to add to this list, you can do so by adding your
    # own fstypes to the following variable.
    #extra_net_fs_list=""
    
    ##############################################################################
    # SERVICE CONFIGURATION VARIABLES
    # These variables are documented here, but should be configured in
    # /etc/conf.d/foo for service foo and NOT enabled here unless you
    # really want them to work on a global basis.
    # If your service has characters in its name which are not legal in
    # shell variable names and you configure the variables for it in this
    # file, those characters should be replaced with underscores in the
    # variable names as shown below.
    
    # Some daemons are started and stopped via start-stop-daemon.
    # We can set some things on a per service basis, like the nicelevel.
    #SSD_NICELEVEL="-19"
    
    # Pass ulimit parameters
    # If you are using bash in POSIX mode for your shell, note that the
    # ulimit command uses a block size of 512 bytes for the -c and -f
    # options
    #rc_ulimit="-u 30"
    
    # It's possible to define extra dependencies for services like so
    #rc_config="/etc/foo"
    #rc_need="openvpn"
    #rc_use="net.eth0"
    #rc_after="clock"
    #rc_before="local"
    #rc_provide="!net"
    
    # You can also enable the above commands here for each service. Below is an
    # example for service foo.
    #rc_foo_config="/etc/foo"
    #rc_foo_need="openvpn"
    #rc_foo_after="clock"
    
    # Below is an example for service foo-bar. Note that the '-' is illegal
    # in a shell variable name, so we convert it to an underscore.
    # example for service foo-bar.
    #rc_foo_bar_config="/etc/foo-bar"
    #rc_foo_bar_need="openvpn"
    #rc_foo_bar_after="clock"
    
    # You can also remove dependencies.
    # This is mainly used for saying which servies do NOT provide net.
    #rc_net_tap0_provide="!net"
    
    ##############################################################################
    # LINUX SPECIFIC OPTIONS
    
    # This is the subsystem type. Valid options on Linux:
    # ""               - nothing special
    # "lxc"            - Linux Containers
    # "openvz"         - Linux OpenVZ
    # "prefix"         - Prefix
    # "uml"            - Usermode Linux
    # "vserver"        - Linux vserver
    # "systemd-nspawn" - Container created by the systemd-nspawn utility
    # "xen0"           - Xen0 Domain
    # "xenU"           - XenU Domain
    # If this is commented out, automatic detection will be used.
    #
    # This should be set to the value representing the environment this file is
    # PRESENTLY in, not the virtualization the environment is capable of.
    #rc_sys=""
    
    # This is the number of tty's used in most of the rc-scripts (like
    # consolefont, numlock, etc ...)
    rc_tty_number=12
    
    ##############################################################################
    # CGROUPS RESOURCE MANAGEMENT
    
    # If you have cgroups turned on in your kernel, this switch controls
    # whether or not a group for each controller is mounted under
    # /sys/fs/cgroup.
    # None of the other options in this section work if this is set to "NO".
    #rc_controller_cgroups="YES"
    
    # The following settings allow you to set up values for the cgroup
    # controllers for your services.
    # They can be set in this file;, however, if you do this, the settings
    # will apply to all of your services.
    # If you want different settings for each service, place the settings in
    # /etc/conf.d/foo for service foo.
    # The format is to specify the names of the settings followed by their
    # values. Each variable can hold multiple settings.
    # For example, you would use this to set the cpu.shares setting in the
    # cpu controller to 512 for your service.
    # rc_cgroup_cpu="
    # cpu.shares 512
    # "
    #
    #For more information about the adjustments that can be made with
    #cgroups, see Documentation/cgroups/* in the linux kernel source tree.
    
    # Set the blkio controller settings for this service.
    #rc_cgroup_blkio=""
    
    # Set the cpu controller settings for this service.
    #rc_cgroup_cpu=""
    
    # Add this service to the cpuacct controller (any value means yes).
    #rc_cgroup_cpuacct=""
    
    # Set the cpuset controller settings for this service.
    #rc_cgroup_cpuset=""
    
    # Set the devices controller settings for this service.
    #rc_cgroup_devices=""
    
    # Set the hugetlb controller settings for this service.
    #rc_cgroup_hugetlb=""
    
    # Set the memory controller settings for this service.
    #rc_cgroup_memory=""
    
    # Set the net_cls controller settings for this service.
    #rc_cgroup_net_cls=""
    
    # Set the net_prio controller settings for this service.
    #rc_cgroup_net_prio=""
    
    # Set the pids controller settings for this service.
    #rc_cgroup_pids=""
    
    # Set this to YES if yu want all of the processes in a service's cgroup
    # killed when the service is stopped or restarted.
    # This should not be set globally because it kills all of the service's
    # child processes, and most of the time this is undesirable. Please set
    # it in /etc/conf.d/<service>.
    # To perform this cleanup manually for a stopped service, you can
    # execute cgroup_cleanup with /etc/init.d/<service> cgroup_cleanup or
    # rc-service <service> cgroup_cleanup.
    # rc_cgroup_cleanup="NO"
  2. rc-update
           NetworkManager |      default                 
                   binfmt | boot                         
                 bootmisc | boot                         
               consolekit |      default                 
                    devfs |                       sysinit
            device-mapper | boot                         
                    dmesg |                       sysinit
                     fsck | boot                         
                 hostname | boot                         
                  hwclock | boot                         
                  keymaps | boot                         
                killprocs |              shutdown        
        kmod-static-nodes |                       sysinit
                    local |      default                 
               localmount | boot                         
                 loopback | boot                         
                      lvm | boot                         
                  modules | boot                         
                 mount-ro |              shutdown        
                     mtab | boot                         
                 netmount |      default                 
                  postfix |      default                 
                   procfs | boot                         
                     root | boot                         
                savecache |              shutdown        
                     sshd |      default                 
                     swap | boot                         
                swapfiles | boot                         
                   sysctl | boot                         
                    sysfs |                       sysinit
             termencoding | boot                         
             tmpfiles.dev |                       sysinit
           tmpfiles.setup | boot                         
                     udev |                       sysinit
                  urandom | boot                         

    /etc/portage/package.use

     

    >=net-misc/networkmanager-1.0.0 dhclient -dhcpcd -modemmanager -ppp -consolekit
    >=x11-libs/libpciaccess-0.13.4 abi_x86_32
    x11base/xorg-x11 udev
    xfce-base/thunar udisks
    x11-apps/xinit -minimal

     

     

  3.  

    I'm new,special knowledge is not present,because this may help. :)
    Sorry for such questions. :P

     

    I think

    etc-update 

    but I'm not sure and don't want to ruin something :(

     

     

    1. When you install pidgin error

    funtoo # emerge -avp pidgin
    setlocale: unsupported locale setting
    
     * IMPORTANT: 8 config files in '/etc/portage' need updating.
     * See the CONFIGURATION FILES section of the emerge
     * man page to learn how to update config files.
    
    These are the packages that would be merged, in order:
    
    Calculating dependencies... done!
    [ebuild  N     ] media-libs/libdvdcss-1.3.99:1.2::gentoo  USE="-doc -static-libs" ABI_X86="(64) -32 (-x32)" 369 KiB
    [ebuild  N     ] media-libs/libdvdread-5.0.3::gentoo  USE="css -static-libs" ABI_X86="(64) -32 (-x32)" 386 KiB
    [ebuild  N     ] media-libs/a52dec-0.7.4-r7::gentoo  USE="-djbfft -oss -static-libs" ABI_X86="(64) -32 (-x32)" 236 KiB
    [ebuild  N     ] media-libs/libdca-0.0.5-r3::gentoo  USE="-debug -oss -static-libs" ABI_X86="(64) -32 (-x32)" 388 KiB
    [ebuild  N     ] media-libs/faad2-2.7-r3::gentoo  USE="-digitalradio -static-libs" ABI_X86="(64) -32 (-x32)" 1111 KiB
    [ebuild  N     ] media-libs/libmad-0.15.1b-r8::gentoo  USE="-debug -static-libs" ABI_X86="(64) -32 (-x32)" 491 KiB
    [ebuild  N     ] media-libs/libdvdnav-5.0.3::gentoo  USE="-static-libs" ABI_X86="(64) -32 (-x32)" 364 KiB
    [ebuild  N     ] dev-libs/gobject-introspection-1.44.0::gentoo  USE="-cairo -doctool {-test}" PYTHON_TARGETS="python2_7" 0 KiB
    [ebuild  N     ] dev-lang/vala-0.28.1:0.28::gentoo  USE="{-test}" 0 KiB
    [ebuild  N     ] media-libs/libv4l-1.6.2::gentoo  USE="jpeg" ABI_X86="(64) -32 (-x32)" 1122 KiB
    [ebuild  NS    ] media-libs/gst-plugins-good-0.10.31-r1:0.10::gentoo [1.6.1:1.0::gentoo] USE="nls orc" ABI_X86="(64) -32 (-x32)" 2674 KiB
    [ebuild  N     ] media-libs/gst-plugins-ugly-0.10.19-r1:0.10::gentoo  USE="nls orc" ABI_X86="(64) -32 (-x32)" 862 KiB
    [ebuild  N     ] media-libs/gst-plugins-bad-0.10.23-r2:0.10::gentoo  USE="nls orc" ABI_X86="(64) -32 (-x32)" 3087 KiB
    [ebuild  N     ] media-plugins/gst-plugins-ogg-0.10.36-r1:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-plugins/gst-plugins-vorbis-0.10.36-r1:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-plugins/gst-plugins-x-0.10.36-r1:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-plugins/gst-plugins-theora-0.10.36-r1:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-plugins/gst-plugins-xvideo-0.10.36-r1:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-libs/taglib-1.9.1-r2::gentoo  USE="asf mp4 -debug -examples {-test}" ABI_X86="(64) -32 (-x32)" 639 KiB
    [ebuild  N     ] dev-python/gst-python-0.10.22-r1:0.10::gentoo  USE="-examples {-test}" PYTHON_TARGETS="python2_7" 618 KiB
    [ebuild   R    ] net-libs/libsoup-2.50.0:2.4::gentoo  USE="introspection* ssl -debug -samba {-test}" ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-plugins/gst-plugins-vp8-0.10.23-r3:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-plugins/gst-plugins-dvdread-0.10.19-r1:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-plugins/gst-plugins-mad-0.10.19-r1:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-plugins/gst-plugins-faad-0.10.23-r2:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-plugins/gst-plugins-taglib-0.10.31-r1:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-plugins/gst-plugins-dts-0.10.23-r1:0.10::gentoo  USE="orc" ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-plugins/gst-plugins-wavpack-0.10.31-r1:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-plugins/gst-plugins-xvid-0.10.23-r1:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-plugins/gst-plugins-lame-0.10.19-r1:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-plugins/gst-plugins-x264-0.10.19-r1:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-plugins/gst-plugins-a52dec-0.10.19-r1:0.10::gentoo  USE="orc" ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-plugins/gst-plugins-flac-0.10.31-r1:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-plugins/gst-plugins-resindvd-0.10.23-r1:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-sound/cdparanoia-3.10.2-r6::gentoo  USE="-static-libs" ABI_X86="(64) -32 (-x32)" 186 KiB
    [ebuild  N     ] media-plugins/gst-plugins-cdparanoia-0.10.36-r1:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-plugins/gst-plugins-v4l2-0.10.31-r1:0.10::gentoo  USE="udev" ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-libs/libmpeg2-0.5.1-r2::gentoo  USE="X -sdl -static-libs" ABI_X86="(64) -32 (-x32)" 513 KiB
    [ebuild  N     ] media-plugins/gst-plugins-mpeg2dec-0.10.19-r1:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] dev-python/dbus-python-1.2.0-r1::gentoo  USE="-doc -examples {-test}" PYTHON_TARGETS="python2_7 python3_3 -python3_4 -python3_5" 589 KiB
    [ebuild  N     ] media-plugins/gst-plugins-assrender-0.10.23-r1:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] gnome-base/gconf-3.2.6-r3:2::gentoo  USE="policykit -debug -introspection -ldap" ABI_X86="(64) -32 (-x32)" PYTHON_TARGETS="python2_7" 1524 KiB
    [ebuild  N     ] media-plugins/gst-plugins-gconf-0.10.31-r1:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] media-plugins/gst-plugins-ffmpeg-0.10.13_p201211-r4:0.10::gentoo  USE="orc (-libav)" ABI_X86="(64) -32 (-x32)" 4199 KiB
    [ebuild  N     ] media-plugins/gst-plugins-meta-0.10-r10:0.10::gentoo  USE="X a52 aac alsa cdda dts dvd ffmpeg flac lame libass mp3 mpeg ogg taglib theora v4l vorbis vpx wavpack x264 xvid -dv -dvb -http -jack -libvisual -mms -modplug -musepack -opus -oss -pulseaudio -vcd -xv" ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] net-libs/gssdp-0.14.11:0/3::gentoo  USE="gtk introspection" ABI_X86="(64) -32 (-x32)" 286 KiB
    [ebuild  N     ] net-libs/gupnp-0.20.14:0/4::gentoo  USE="(introspection) -connman -networkmanager" ABI_X86="(64) -32 (-x32)" PYTHON_TARGETS="python2_7" 388 KiB
    [ebuild  N     ] net-libs/gupnp-igd-0.2.4::gentoo  USE="(introspection) python" ABI_X86="(64) -32 (-x32)" PYTHON_TARGETS="python2_7" 266 KiB
    [ebuild  N     ] net-libs/libnice-0.1.13::gentoo  USE="upnp -introspection" ABI_X86="(64) -32 (-x32)" 891 KiB
    [ebuild  N     ] media-plugins/gst-plugins-libnice-0.1.13:0.10::gentoo  ABI_X86="(64) -32 (-x32)" 0 KiB
    [ebuild  N     ] net-libs/farstream-0.1.2-r2:0.1::gentoo  USE="python -introspection {-test} -upnp" PYTHON_TARGETS="python2_7" 1237 KiB
    [ebuild  N     ] net-im/pidgin-2.10.11::gentoo  USE="dbus gstreamer gtk ncurses nls python xscreensaver (-aqua) -debug -doc -eds -gadu -gnutls -groupwise -idn -meanwhile -mxit -networkmanager -perl -prediction -sasl -silc -spell -tcl -tk -zephyr -zeroconf" PYTHON_SINGLE_TARGET="python3_3 -python2_7 -python3_4" PYTHON_TARGETS="python2_7 python3_3 -python3_4" 9239 KiB
    
    Total: 52 packages (50 new, 1 in new slot, 1 reinstall), Size of downloads: 31654 KiB
    
    The following USE changes are necessary to proceed:
     (see "package.use" in the portage(5) man page for more details)
    # required by net-libs/gupnp-0.20.14::gentoo
    # required by net-libs/gupnp-igd-0.2.4::gentoo
    # required by net-libs/libnice-0.1.13::gentoo[upnp]
    # required by media-plugins/gst-plugins-libnice-0.1.13::gentoo
    # required by net-libs/farstream-0.1.2-r2::gentoo
    # required by net-im/pidgin-2.10.11::gentoo[gstreamer]
    # required by pidgin (argument)
    >=net-libs/libsoup-2.50.0 introspection
    # required by net-libs/gupnp-0.20.14::gentoo
    # required by net-libs/gupnp-igd-0.2.4::gentoo
    # required by net-libs/libnice-0.1.13::gentoo[upnp]
    # required by media-plugins/gst-plugins-libnice-0.1.13::gentoo
    # required by net-libs/farstream-0.1.2-r2::gentoo
    # required by net-im/pidgin-2.10.11::gentoo[gstreamer]
    # required by pidgin (argument)
    >=net-libs/gssdp-0.14.11 introspection
    
     * IMPORTANT: 3 news items need reading for repository 'gentoo'.
     * Use eselect news read to view new items.

    2. very slowly open the page in browsers of all, I think it's because of dhcpcd ,so I ask help to replace dhclient

    # pgrep -l dhc
    2797 dhcpcd

    replace

    # pgrep -l dhc
     1143 dhclient

    For earlier thanks.

  4. lspci -vvnn

        Capabilities: [90] Subsystem: Dell 5 Series/3400 Series Chipset PCI Express Root Port 3 [1028:040a]
        Capabilities: [a0] Power Management version 2
            Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
            Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
        Kernel driver in use: pcieport
        Kernel modules: shpchp
    
    00:1c.3 PCI bridge [0604]: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 4 [8086:3b48] (rev 05) (prog-if 00 [Normal decode])
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin D routed to IRQ 19
        Bus: primary=00, secondary=06, subordinate=0b, sec-latency=0
        I/O behind bridge: 00004000-00004fff
        Memory behind bridge: e5a00000-e6dfffff
        Prefetchable memory behind bridge: 00000000e9d00000-00000000e9efffff
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
        BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
            PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: [40] Express (v2) Root Port (Slot+), MSI 00
            DevCap:    MaxPayload 128 bytes, PhantFunc 0
                ExtTag- RBE+
            DevCtl:    Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
                RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
                MaxPayload 128 bytes, MaxReadReq 128 bytes
            DevSta:    CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
            LnkCap:    Port #4, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <1us, L1 <4us
                ClockPM- Surprise- LLActRep+ BwNot- ASPMOptComp-
            LnkCtl:    ASPM Disabled; RCB 64 bytes Disabled- CommClk-
                ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
            LnkSta:    Speed 2.5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
            SltCap:    AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
                Slot #3, PowerLimit 10.000W; Interlock- NoCompl+
            SltCtl:    Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt- HPIrq- LinkChg-
                Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
            SltSta:    Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
                Changed: MRL- PresDet- LinkState-
            RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
            RootCap: CRSVisible-
            RootSta: PME ReqID 0000, PMEStatus- PMEPending-
            DevCap2: Completion Timeout: Range BC, TimeoutDis+, LTR-, OBFF Not Supported ARIFwd-
            DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled ARIFwd-
            LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
                 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
                 Compliance De-emphasis: -6dB
            LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
                 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
        Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-
            Address: 00000000  Data: 0000
        Capabilities: [90] Subsystem: Dell 5 Series/3400 Series Chipset PCI Express Root Port 4 [1028:040a]
        Capabilities: [a0] Power Management version 2
            Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
            Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
        Kernel driver in use: pcieport
        Kernel modules: shpchp
    
    00:1d.0 USB controller [0c03]: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller [8086:3b34] (rev 05) (prog-if 20 [EHCI])
        Subsystem: Dell 5 Series/3400 Series Chipset USB2 Enhanced Host Controller [1028:040a]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 17
        Region 0: Memory at e9650000 (32-bit, non-prefetchable) [size=1K]
        Capabilities: [50] Power Management version 2
            Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
            Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
        Capabilities: [58] Debug port: BAR=1 offset=00a0
        Capabilities: [98] PCI Advanced Features
            AFCap: TP+ FLR+
            AFCtrl: FLR-
            AFStatus: TP-
        Kernel driver in use: ehci-pci
        Kernel modules: ehci_pci
    
    00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI Bridge [8086:2448] (rev a5) (prog-if 01 [Subtractive decode])
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Bus: primary=00, secondary=0c, subordinate=0c, sec-latency=0
        Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
        BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
            PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: [50] Subsystem: Dell 82801 Mobile PCI Bridge [1028:040a]
    
    00:1f.0 ISA bridge [0601]: Intel Corporation Mobile 5 Series Chipset LPC Interface Controller [8086:3b07] (rev 05)
        Subsystem: Dell Mobile 5 Series Chipset LPC Interface Controller [1028:040a]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Capabilities: [e0] Vendor Specific Information: Len=10 <?>
        Kernel driver in use: lpc_ich
        Kernel modules: lpc_ich
    
    00:1f.2 RAID bus controller [0104]: Intel Corporation 82801 Mobile SATA Controller [RAID mode] [8086:282a] (rev 05)
        Subsystem: Dell 82801 Mobile SATA Controller [RAID mode] [1028:040a]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin B routed to IRQ 25
        Region 0: I/O ports at 8090 [size=8]
        Region 1: I/O ports at 8080 [size=4]
        Region 2: I/O ports at 8070 [size=8]
        Region 3: I/O ports at 8060 [size=4]
        Region 4: I/O ports at 8020 [size=32]
        Region 5: Memory at e9640000 (32-bit, non-prefetchable) [size=2K]
        Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
            Address: fee0f00c  Data: 41c1
        Capabilities: [70] Power Management version 3
            Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot+,D3cold-)
            Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
        Capabilities: [a8] SATA HBA v1.0 BAR4 Offset=00000004
        Capabilities: [b0] PCI Advanced Features
            AFCap: TP+ FLR+
            AFCtrl: FLR-
            AFStatus: TP-
        Kernel driver in use: ahci
        Kernel modules: ahci
    
    00:1f.3 SMBus [0c05]: Intel Corporation 5 Series/3400 Series Chipset SMBus Controller [8086:3b30] (rev 05)
        Subsystem: Dell 5 Series/3400 Series Chipset SMBus Controller [1028:040a]
        Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Interrupt: pin C routed to IRQ 18
        Region 0: Memory at e9630000 (64-bit, non-prefetchable) [size=256]
        Region 4: I/O ports at 8000 [size=32]
        Kernel modules: i2c_i801
    
    00:1f.6 Signal processing controller [1180]: Intel Corporation 5 Series/3400 Series Chipset Thermal Subsystem [8086:3b32] (rev 05)
        Subsystem: Dell 5 Series/3400 Series Chipset Thermal Subsystem [1028:040a]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin C routed to IRQ 18
        Region 0: Memory at e9620000 (64-bit, non-prefetchable) [size=4K]
        Capabilities: [50] Power Management version 3
            Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
            Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
        Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-
            Address: 00000000  Data: 0000
        Kernel driver in use: intel ips
        Kernel modules: intel_ips
    
    01:00.0 VGA compatible controller [0300]: NVIDIA Corporation GT218M [NVS 3100M] [10de:0a6c] (rev a2) (prog-if 00 [VGA controller])
        Subsystem: Dell GT218M [NVS 3100M] [1028:040a]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 29
        Region 0: Memory at e2000000 (32-bit, non-prefetchable) [size=16M]
        Region 1: Memory at d0000000 (64-bit, prefetchable) [size=256M]
        Region 3: Memory at e0000000 (64-bit, prefetchable) [size=32M]
        Region 5: I/O ports at 7000 [size=128]
        Expansion ROM at e3000000 [disabled] [size=512K]
        Capabilities: [60] Power Management version 3
            Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
            Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
        Capabilities: [68] MSI: Enable+ Count=1/1 Maskable- 64bit+
            Address: 00000000fee0f00c  Data: 4152
        Capabilities: [78] Express (v2) Endpoint, MSI 00
            DevCap:    MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 <64us
                ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
            DevCtl:    Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
                RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
                MaxPayload 128 bytes, MaxReadReq 512 bytes
            DevSta:    CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
            LnkCap:    Port #0, Speed 5GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <256ns, L1 <4us
                ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
            LnkCtl:    ASPM L1 Enabled; RCB 128 bytes Disabled- CommClk+
                ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
            LnkSta:    Speed 2.5GT/s, Width x16, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
            DevCap2: Completion Timeout: Not Supported, TimeoutDis+, LTR-, OBFF Not Supported
            DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled
            LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
                 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
                 Compliance De-emphasis: -6dB
            LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
                 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
        Capabilities: [b4] Vendor Specific Information: Len=14 <?>
        Capabilities: [100 v1] Virtual Channel
            Caps:    LPEVC=0 RefClk=100ns PATEntryBits=1
            Arb:    Fixed- WRR32- WRR64- WRR128-
            Ctrl:    ArbSelect=Fixed
            Status:    InProgress-
            VC0:    Caps:    PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
                Arb:    Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
                Ctrl:    Enable+ ID=0 ArbSelect=Fixed TC/VC=01
                Status:    NegoPending- InProgress-
        Capabilities: [128 v1] Power Budgeting <?>
        Capabilities: [600 v1] Vendor Specific Information: ID=0001 Rev=1 Len=024 <?>
        Kernel driver in use: nouveau
        Kernel modules: nouveau
    
    01:00.1 Audio device [0403]: NVIDIA Corporation High Definition Audio Controller [10de:0be3] (rev a1)
        Subsystem: Dell High Definition Audio Controller [1028:040a]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin B routed to IRQ 17
        Region 0: Memory at e3080000 (32-bit, non-prefetchable) [size=16K]
        Capabilities: [60] Power Management version 3
            Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
            Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
        Capabilities: [68] MSI: Enable- Count=1/1 Maskable- 64bit+
            Address: 0000000000000000  Data: 0000
        Capabilities: [78] Express (v2) Endpoint, MSI 00
            DevCap:    MaxPayload 128 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
                ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
            DevCtl:    Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
                RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
                MaxPayload 128 bytes, MaxReadReq 512 bytes
            DevSta:    CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
            LnkCap:    Port #0, Speed 5GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <256ns, L1 <1us
                ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
            LnkCtl:    ASPM L0s L1 Enabled; RCB 128 bytes Disabled- CommClk+
                ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
            LnkSta:    Speed 2.5GT/s, Width x16, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
            DevCap2: Completion Timeout: Not Supported, TimeoutDis+, LTR-, OBFF Not Supported
            DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled
            LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
                 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
        Kernel driver in use: snd_hda_intel
        Kernel modules: snd_hda_intel
    
    03:00.0 Network controller [0280]: Intel Corporation Centrino Ultimate-N 6300 [8086:422b] (rev 35)
        Subsystem: Intel Corporation Centrino Ultimate-N 6300 3x3 AGN [8086:1121]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 28
        Region 0: Memory at e6e00000 (64-bit, non-prefetchable) [size=8K]
        Capabilities: [c8] Power Management version 3
            Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
            Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
        Capabilities: [d0] MSI: Enable+ Count=1/1 Maskable- 64bit+
            Address: 00000000fee0f00c  Data: 4142
        Capabilities: [e0] Express (v1) Endpoint, MSI 00
            DevCap:    MaxPayload 128 bytes, PhantFunc 0, Latency L0s <512ns, L1 unlimited
                ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+
            DevCtl:    Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
                RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+ FLReset-
                MaxPayload 128 bytes, MaxReadReq 128 bytes
            DevSta:    CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr+ TransPend-
            LnkCap:    Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <128ns, L1 <32us
                ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
            LnkCtl:    ASPM L1 Enabled; RCB 64 bytes Disabled- CommClk+
                ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
            LnkSta:    Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
        Capabilities: [100 v1] Advanced Error Reporting
            UESta:    DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
            UEMsk:    DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
            UESvrt:    DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
            CESta:    RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
            CEMsk:    RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
            AERCap:    First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
        Capabilities: [140 v1] Device Serial Number 00-24-d7-ff-ff-a5-8c-60
        Kernel driver in use: iwlwifi
        Kernel modules: iwlwifi
    
    04:00.0 SD Host controller [0805]: Ricoh Co Ltd MMC/SD Host Controller [1180:e822] (rev 03) (prog-if 01)
        Subsystem: Dell Latitude E6410 [1028:040a]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin B routed to IRQ 19
        Region 0: Memory at e5940000 (32-bit, non-prefetchable) [size=256]
        Capabilities: [50] MSI: Enable- Count=1/1 Maskable- 64bit+
            Address: 0000000000000000  Data: 0000
        Capabilities: [78] Power Management version 3
            Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
            Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=2 PME-
        Capabilities: [80] Express (v1) Endpoint, MSI 00
            DevCap:    MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
                ExtTag- AttnBtn+ AttnInd+ PwrInd+ RBE+ FLReset-
            DevCtl:    Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
                RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
                MaxPayload 128 bytes, MaxReadReq 512 bytes
            DevSta:    CorrErr+ UncorrErr+ FatalErr- UnsuppReq+ AuxPwr- TransPend-
            LnkCap:    Port #1, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <4us, L1 <64us
                ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
            LnkCtl:    ASPM L1 Enabled; RCB 64 bytes Disabled- CommClk+
                ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
            LnkSta:    Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
        Kernel driver in use: sdhci-pci
        Kernel modules: sdhci_pci
    
    04:00.4 FireWire (IEEE 1394) [0c00]: Ricoh Co Ltd R5C832 PCIe IEEE 1394 Controller [1180:e832] (rev 03) (prog-if 10 [OHCI])
        Subsystem: Dell Latitude E6410 [1028:040a]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin C routed to IRQ 16
        Region 0: Memory at e5900000 (32-bit, non-prefetchable) [size=2K]
        Capabilities: [50] MSI: Enable- Count=1/1 Maskable- 64bit+
            Address: 0000000000000000  Data: 0000
        Capabilities: [78] Power Management version 3
            Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
            Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=2 PME+
        Capabilities: [80] Express (v1) Endpoint, MSI 00
            DevCap:    MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
                ExtTag- AttnBtn+ AttnInd+ PwrInd+ RBE+ FLReset-
            DevCtl:    Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
                RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
                MaxPayload 128 bytes, MaxReadReq 512 bytes
            DevSta:    CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr- TransPend-
            LnkCap:    Port #1, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <4us, L1 <64us
                ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
            LnkCtl:    ASPM L1 Enabled; RCB 64 bytes Disabled- CommClk+
                ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
            LnkSta:    Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
        Kernel driver in use: firewire_ohci
        Kernel modules: firewire_ohci
    
    3f:00.0 Host bridge [0600]: Intel Corporation Core Processor QuickPath Architecture Generic Non-core Registers [8086:2c62] (rev 02)
        Subsystem: Intel Corporation Core Processor QuickPath Architecture Generic Non-core Registers [8086:8086]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
    
    3f:00.1 Host bridge [0600]: Intel Corporation Core Processor QuickPath Architecture System Address Decoder [8086:2d01] (rev 02)
        Subsystem: Intel Corporation Core Processor QuickPath Architecture System Address Decoder [8086:8086]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
    
    3f:02.0 Host bridge [0600]: Intel Corporation Core Processor QPI Link 0 [8086:2d10] (rev 02)
        Subsystem: Intel Corporation Core Processor QPI Link 0 [8086:8086]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
    
    3f:02.1 Host bridge [0600]: Intel Corporation 1st Generation Core i3/5/7 Processor QPI Physical 0 [8086:2d11] (rev 02)
        Subsystem: Intel Corporation 1st Generation Core i3/5/7 Processor QPI Physical 0 [8086:8086]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
    
    3f:02.2 Host bridge [0600]: Intel Corporation 1st Generation Core i3/5/7 Processor Reserved [8086:2d12] (rev 02)
        Subsystem: Intel Corporation 1st Generation Core i3/5/7 Processor Reserved [8086:8086]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
    
    3f:02.3 Host bridge [0600]: Intel Corporation 1st Generation Core i3/5/7 Processor Reserved [8086:2d13] (rev 02)
        Subsystem: Intel Corporation 1st Generation Core i3/5/7 Processor Reserved [8086:8086]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
  5. epro list

     funtoo # epro list
    
    === arch: ===
    
        arm-32bit, pure64, x86-32bit, (x86-64bit*)
    
    === subarch: ===
    
        amd64-bulldozer, amd64-jaguar, amd64-k10, amd64-k8, amd64-k8+sse3
        amd64-piledriver, amd64-steamroller, atom_64, btver1_64, core-avx-i
        core2_64, corei7, generic_64, intel64-broadwell, intel64-haswell
        intel64-ivybridge, intel64-nehalem, intel64-sandybridge, intel64-silvermont
        intel64-westmere*, native_64, nocona, opteron_64, xen-pentium4+sse3_64
    
    === build: ===
    
        (current*), experimental, stable
    
    === flavor: ===
    
        core, desktop*, hardened, minimal, server, workstation
    
    === mix-ins: ===
    
        X, audio, cinnamon, console-extras, dvd, gnome, gnome-3.16-fixups
        hardened, kde, kde-plasma-5, lxde, lxqt, mate, media, media-pro
        mediadevice-audio-consumer, mediadevice-audio-pro, mediadevice-base
        mediadevice-video-consumer, mediadevice-video-pro, mediaformat-audio-common
        mediaformat-audio-extra, mediaformat-gfx-common, mediaformat-gfx-extra
        mediaformat-video-common, mediaformat-video-extra, no-emul-linux-x86
        no-systemd*, openvz-host, print, python3-only, vmware-guest
        xfce*
    
  6. DELL Latitude E6410

     

     

     

     

    startx 

    xauth:  file /home/funtoo/.serverauth.15304 does not exist
    
    
    X.Org X Server 1.16.4
    Release Date: 2014-12-20
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.19.3-1~exp1 x86_64 Gentoo
    Current Operating System: Linux proshyan 3.19.3-1~exp1 #1 SMP Mon Nov 2 20:03:52 2015 x86_64
    Kernel command line: BOOT_IMAGE=/kernel-debian-sources-x86_64-3.19.3-1~exp1 rootfstype=auto real_root=/dev/sda3 rootfstype=xfs
    Build Date: 18 December 2015  08:48:46AM
     
    Current version of pixman: 0.33.4
        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Fri Dec 18 12:49:59 2015
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    (EE)
    Fatal server error:
    (EE) no screens found(EE)
    (EE)
    Please consult the The X.Org Foundation support
         at http://wiki.x.org
     for help.
    (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    (EE)
    (EE) Server terminated with error (1). Closing log file.
    xinit: giving up
    xinit: unable to connect to X server: Connection refused
    xinit: server error
    Couldn't get a file descriptor referring to the console
    
    
    
    

       File: /var/log/Xorg.0.log                                                     

    [  4269.981]
    X.Org X Server 1.16.4
    Release Date: 2014-12-20
    [  4269.981] X Protocol Version 11, Revision 0
    [  4269.981] Build Operating System: Linux 3.19.3-1~exp1 x86_64 Gentoo
    [  4269.981] Current Operating System: Linux proshyan 3.19.3-1~exp1 #1 SMP Mon Nov 2 20:03:52 2015 x86_64
    [  4269.981] Kernel command line: BOOT_IMAGE=/kernel-debian-sources-x86_64-3.19.3-1~exp1 rootfstype=auto real_root=/$
    [  4269.981] Build Date: 18 December 2015  08:48:46AM
    [  4269.981]
    [  4269.981] Current version of pixman: 0.33.4
    [  4269.981]    Before reporting problems, check http://wiki.x.org
            to make sure that you have the latest version.
    [  4269.981] Markers: (--) probed, (**) from config file, (==) default setting,
            (++) from command line, (!!) notice, (II) informational,
            (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [  4269.981] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Dec 18 12:51:37 2015
    [  4269.982] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [  4269.982] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [  4269.982] (==) No Layout section.  Using the first Screen section.
    [  4269.982] (==) No screen section available. Using defaults.
    [  4269.982] (**) |-->Screen "Default Screen Section" (0)
    [  4269.982] (**) |   |-->Monitor "<default monitor>"
    [  4269.982] (==) No monitor specified for screen "Default Screen Section".
            Using a default monitor configuration.
    [  4269.982] (==) Automatically adding devices
    [  4269.982] (==) Automatically enabling devices
    [  4269.982] (==) Automatically adding GPU devices
    [  4269.982] (==) FontPath set to:
            /usr/share/fonts/misc/,
            /usr/share/fonts/TTF/,

    package

    dev-perl/LWP-Protocol-https
    dev-perl/Locale-gettext
    dev-perl/Module-Build
    dev-perl/Net-HTTP
    dev-perl/Net-SMTP-SSL
    dev-perl/Net-SSLeay
    dev-perl/SGMLSpm
    dev-perl/TermReadKey
    dev-perl/Text-CharWidth
    dev-perl/Text-Unidecode
    dev-perl/Text-WrapI18N
    dev-perl/URI
    dev-perl/Unicode-EastAsianWidth
    dev-perl/WWW-RobotRules
    dev-perl/XML-LibXML
    dev-perl/XML-NamespaceSupport
    dev-perl/XML-Parser
    dev-perl/XML-SAX
    dev-perl/XML-SAX-Base
    dev-perl/XML-Simple
    dev-perl/libintl-perl
    dev-perl/libwww-perl
    dev-python/certifi
    dev-python/cython
    dev-python/numpy
    dev-python/packaging
    dev-python/pycairo
    dev-python/pyelftools
    dev-python/pygobject
    dev-python/pygtk
    dev-python/pygtksourceview
    dev-python/pyxattr
    dev-python/setuptools
    dev-scheme/guile
    dev-util/boost-build
    dev-util/cmake
    dev-util/desktop-file-utils
    dev-util/gdbus-codegen
    dev-util/gperf
    dev-util/gtk-doc-am
    dev-util/gtk-update-icon-cache
    dev-util/intltool
    dev-util/ninja
    dev-util/pkgconf
    dev-util/re2c
    dev-util/xfce4-dev-tools
    dev-vcs/git
    gnome-base/dconf
    gnome-base/gsettings-desktop-schemas
    gnome-base/gvfs
    gnome-base/libglade
    gnome-base/librsvg
    gnome-extra/polkit-gnome
    mail-mta/postfix
    media-fonts/dejavu
    media-fonts/encodings
    media-fonts/font-adobe-100dpi
    media-fonts/font-adobe-75dpi
    media-fonts/font-adobe-utopia-100dpi
    media-fonts/font-adobe-utopia-75dpi
    media-fonts/font-adobe-utopia-type1
    media-fonts/font-alias
    media-fonts/font-arabic-misc
    media-fonts/font-bh-100dpi
    media-fonts/font-bh-75dpi
    media-fonts/font-bh-lucidatypewriter-100dpi
    media-fonts/font-bh-lucidatypewriter-75dpi
    media-fonts/font-bh-ttf
    media-fonts/font-bh-type1
    media-fonts/font-bitstream-100dpi
    media-fonts/font-bitstream-75dpi
    media-fonts/font-bitstream-speedo
    media-fonts/font-bitstream-type1
    media-fonts/font-cronyx-cyrillic
    media-fonts/font-cursor-misc
    media-fonts/font-daewoo-misc
    media-fonts/font-dec-misc
    media-fonts/font-ibm-type1
    media-fonts/font-isas-misc
    media-fonts/font-jis-misc
    media-fonts/font-micro-misc
    media-fonts/font-misc-cyrillic
    media-fonts/font-misc-ethiopic
    media-fonts/font-misc-meltho
    media-fonts/font-misc-misc
    media-fonts/font-mutt-misc
    media-fonts/font-schumacher-misc
    media-fonts/font-screen-cyrillic
    media-fonts/font-sony-misc
    media-fonts/font-sun-misc
    media-fonts/font-util
    media-fonts/font-winitzki-cyrillic
    media-fonts/font-xfree86-type1
    media-fonts/liberation-fonts
    media-fonts/urw-fonts
    media-gfx/graphite2
    media-gfx/ristretto
    media-libs/alsa-lib
    media-libs/faac
    media-libs/flac
    media-libs/fontconfig
    media-libs/freeglut
    media-libs/freetype
    media-libs/giflib
    media-libs/glu
    media-libs/gst-plugins-base
    media-libs/gst-plugins-base
    media-libs/gst-plugins-good
    media-libs/gstreamer
    media-libs/gstreamer
    media-libs/harfbuzz
    media-libs/jasper
    media-libs/jbig2dec
    media-libs/lcms
    media-libs/libass
    media-libs/libbluray
    media-libs/libcddb
    media-libs/libdc1394
    media-libs/libepoxy
    media-libs/libexif
    media-libs/libjpeg-turbo
    media-libs/libmp4v2
    media-libs/libmtp
    media-libs/libogg
    media-libs/libpng
    media-libs/libsamplerate
    media-libs/libsndfile
    media-libs/libtheora
    media-libs/libvorbis
    media-libs/libvpx
    media-libs/libwebp
    media-libs/mesa
    media-libs/netpbm
    media-libs/openjpeg
    media-libs/openjpeg
    media-libs/tiff
    media-libs/vo-aacenc
    media-libs/x264
    media-libs/x265
    media-libs/xvid
    media-plugins/gst-plugins-alsa
    media-plugins/gst-plugins-libav
    media-sound/alsa-utils
    media-sound/lame
    media-sound/twolame
    media-sound/wavpack
    media-video/ffmpeg
    media-video/ffmpegthumbnailer
    net-dns/libidn
    net-dns/openresolv
    net-firewall/iptables
    net-libs/glib-networking
    net-libs/gnutls
    net-libs/libndp
    net-libs/libproxy
    net-libs/libsoup
    net-mail/mailbase
    net-misc/bridge-utils
    net-misc/curl
    net-misc/dhcpcd
    net-misc/ifenslave
    net-misc/iputils
    net-misc/networkmanager
    net-misc/openssh
    net-misc/rsync
    net-misc/wget
    net-print/cups
    net-print/cups-filters
    net-wireless/crda
    net-wireless/wireless-regdb
    net-wireless/wpa_supplicant
    perl-core/Encode
    perl-core/File-Temp
    sys-apps/acl
    sys-apps/attr
    sys-apps/baselayout
    sys-apps/busybox
    sys-apps/corenetwork
    sys-apps/coreutils
    sys-apps/dbus
    sys-apps/debianutils
    sys-apps/diffutils
    sys-apps/file
    sys-apps/findutils
    sys-apps/gawk
    sys-apps/gentoo-functions
    sys-apps/gptfdisk
    sys-apps/grep
    sys-apps/groff
    sys-apps/help2man
    sys-apps/hwids
    sys-apps/install-xattr
    sys-apps/iproute2
    sys-apps/kbd
    sys-apps/kmod
    sys-apps/less
    sys-apps/man-db
    sys-apps/man-pages
    sys-apps/man-pages-posix
    sys-apps/net-tools
    sys-apps/openrc
    sys-apps/pciutils
    sys-apps/portage
    sys-apps/sandbox
    sys-apps/sed
    sys-apps/shadow
    sys-apps/sysvinit
    sys-apps/texinfo
    sys-apps/usbutils
    sys-apps/util-linux
    sys-apps/vbetool
    sys-apps/which
    sys-auth/consolekit
    sys-auth/pambase
    sys-auth/polkit
    sys-block/parted
    sys-block/thin-provisioning-tools
    sys-boot/boot-update
    sys-boot/efibootmgr
    sys-boot/grub
    sys-devel/autoconf
    sys-devel/autoconf
    sys-devel/autoconf-wrapper
    sys-devel/autogen
    sys-devel/automake
    sys-devel/automake
    sys-devel/automake
    sys-devel/automake-wrapper
    sys-devel/bc
    sys-devel/binutils
    sys-devel/binutils-config
    sys-devel/bison
    sys-devel/flex
    sys-devel/gcc
    sys-devel/gcc-config
    sys-devel/gettext
    sys-devel/gnuconfig
    sys-devel/libtool
    sys-devel/llvm
    sys-devel/m4
    sys-devel/make
    sys-devel/patch
    sys-fs/cryptsetup
    sys-fs/e2fsprogs
    sys-fs/eudev
    sys-fs/lvm2
    sys-fs/mdadm
    sys-fs/udev-init-scripts
    sys-fs/udisks
    sys-fs/xfsprogs
    sys-kernel/debian-sources
    sys-kernel/genkernel
    sys-kernel/linux-firmware
    sys-kernel/linux-headers
    sys-libs/binutils-libs
    sys-libs/cracklib
    sys-libs/db
    sys-libs/e2fsprogs-libs
    sys-libs/efivar
    sys-libs/gdbm
    sys-libs/glibc
    sys-libs/gpm
    sys-libs/libcap
    sys-libs/libraw1394
    sys-libs/mtdev
    sys-libs/ncurses
    sys-libs/pam
    sys-libs/readline
    sys-libs/slang
    sys-libs/timezone-data
    sys-libs/zlib
    sys-power/pm-quirks
    sys-power/pm-utils
    sys-power/upower
    sys-process/procps
    sys-process/psmisc
    virtual/acl
    virtual/baselayout
    virtual/dev-manager
    virtual/editor
    virtual/eject
    virtual/freedesktop-icon-theme
    virtual/glu
    virtual/jpeg
    virtual/libc
    virtual/libffi
    virtual/libgudev
    virtual/libiconv
    virtual/libintl
    virtual/libudev
    virtual/libusb
    virtual/man
    virtual/modutils
    virtual/mta
    virtual/notification-daemon
    virtual/opengl
    virtual/os-headers
    virtual/package-manager
    virtual/pager
    virtual/pam
    virtual/perl-CPAN-Meta
    virtual/perl-CPAN-Meta-YAML
    virtual/perl-Carp
    virtual/perl-Compress-Raw-Bzip2
    virtual/perl-Compress-Raw-Zlib
    virtual/perl-Data-Dumper
    virtual/perl-Digest-MD5
    virtual/perl-Digest-SHA
    virtual/perl-Encode
    virtual/perl-Exporter
    virtual/perl-ExtUtils-CBuilder
    virtual/perl-ExtUtils-Install
    virtual/perl-ExtUtils-MakeMaker
    virtual/perl-ExtUtils-Manifest
    virtual/perl-ExtUtils-ParseXS
    virtual/perl-File-Spec
    virtual/perl-File-Temp
    virtual/perl-Getopt-Long
    virtual/perl-IO
    virtual/perl-IO-Compress
    virtual/perl-JSON-PP
    virtual/perl-MIME-Base64
    virtual/perl-Module-Metadata
    virtual/perl-Parse-CPAN-Meta
    virtual/perl-Perl-OSType
    virtual/perl-Scalar-List-Utils
    virtual/perl-Storable
    virtual/perl-Test-Harness
    virtual/perl-Text-ParseWords
    virtual/perl-Time-Local
    virtual/perl-libnet
    virtual/perl-version
    virtual/pkgconfig
    virtual/service-manager
    virtual/shadow
    virtual/ssh
    virtual/ttf-fonts
    virtual/udev
    virtual/w3m
    virtual/yacc
    www-client/firefox
    www-client/w3m
    x11-apps/appres
    x11-apps/bdftopcf
    x11-apps/bitmap
    x11-apps/iceauth
    x11-apps/luit
    x11-apps/mkfontdir
    x11-apps/mkfontscale
    x11-apps/rgb
    x11-apps/sessreg
    x11-apps/setxkbmap
    x11-apps/smproxy
    x11-apps/x11perf
    x11-apps/xauth
    x11-apps/xbacklight
    x11-apps/xcmsdb
    x11-apps/xcursorgen
    x11-apps/xdpyinfo
    x11-apps/xdriinfo
    x11-apps/xev
    x11-apps/xf86dga
    x11-apps/xgamma
    x11-apps/xhost
    x11-apps/xinit
    x11-apps/xinput
    x11-apps/xkbcomp
    x11-apps/xkbevd
    x11-apps/xkbutils
    x11-apps/xkill
    x11-apps/xlsatoms
    x11-apps/xlsclients
    x11-apps/xmodmap
    x11-apps/xpr
    x11-apps/xprop
    x11-apps/xrandr
    x11-apps/xrdb
    x11-apps/xrefresh
    x11-apps/xset
    x11-apps/xsetroot
    x11-apps/xvinfo
    x11-apps/xwd
    x11-apps/xwininfo
    x11-apps/xwud
    x11-base/xorg-drivers
    x11-base/xorg-server
    x11-base/xorg-x11
    x11-drivers/xf86-input-evdev
    x11-drivers/xf86-input-keyboard
    x11-drivers/xf86-input-mouse
    x11-drivers/xf86-input-synaptics
    x11-drivers/xf86-video-intel
    x11-libs/cairo
    x11-libs/gdk-pixbuf
    x11-libs/gnome-pty-helper
    x11-libs/gtk+
    x11-libs/gtk+
    x11-libs/gtksourceview
    x11-libs/libICE
    x11-libs/libSM
    x11-libs/libX11
    x11-libs/libXScrnSaver
    x11-libs/libXau
    x11-libs/libXaw
    x11-libs/libXcomposite
    x11-libs/libXcursor
    x11-libs/libXdamage
    x11-libs/libXdmcp
    x11-libs/libXext
    x11-libs/libXfixes
    x11-libs/libXfont
    x11-libs/libXft
    x11-libs/libXi
    x11-libs/libXinerama
    x11-libs/libXmu
    x11-libs/libXpm
    x11-libs/libXrandr
    x11-libs/libXrender
    x11-libs/libXres
    x11-libs/libXt
    x11-libs/libXtst
    x11-libs/libXv
    x11-libs/libXxf86dga
    x11-libs/libXxf86misc
    x11-libs/libXxf86vm
    x11-libs/libdrm
    x11-libs/libfontenc
    x11-libs/libnotify
    x11-libs/libpciaccess
    x11-libs/libwnck
    x11-libs/libxcb
    x11-libs/libxkbfile
    x11-libs/libxklavier
    x11-libs/libxshmfence
    x11-libs/pango
    x11-libs/pixman
    x11-libs/startup-notification
    x11-libs/vte
    x11-libs/xcb-util
    x11-libs/xcb-util-cursor
    x11-libs/xcb-util-image
    x11-libs/xcb-util-keysyms
    x11-libs/xcb-util-renderutil
    x11-libs/xcb-util-wm
    x11-libs/xtrans
    x11-misc/icon-naming-utils
    x11-misc/makedepend
    x11-misc/shared-mime-info
    x11-misc/util-macros
    x11-misc/xbitmaps
    x11-misc/xdg-user-dirs
    x11-misc/xdg-user-dirs-gtk
    x11-misc/xdg-utils
    x11-misc/xkeyboard-config
    x11-misc/xscreensaver
    x11-proto/bigreqsproto
    x11-proto/compositeproto
    x11-proto/damageproto
    x11-proto/dri2proto
    x11-proto/dri3proto
    x11-proto/fixesproto
    x11-proto/fontsproto
    x11-proto/glproto
    x11-proto/inputproto
    x11-proto/kbproto
    x11-proto/presentproto
    x11-proto/randrproto
    x11-proto/recordproto
    x11-proto/renderproto
    x11-proto/resourceproto
    x11-proto/scrnsaverproto
    x11-proto/trapproto
    x11-proto/videoproto
    x11-proto/xcb-proto
    x11-proto/xcmiscproto
    x11-proto/xextproto
    x11-proto/xf86bigfontproto
    x11-proto/xf86dgaproto
    x11-proto/xf86driproto
    x11-proto/xf86miscproto
    x11-proto/xf86rushproto
    x11-proto/xf86vidmodeproto
    x11-proto/xineramaproto
    x11-proto/xproto
    x11-terms/xfce4-terminal
    x11-themes/adwaita-icon-theme
    x11-themes/gnome-icon-theme
    x11-themes/gtk-engines-xfce
    x11-themes/hicolor-icon-theme
    x11-themes/xcursor-themes
    xfce-base/exo
    xfce-base/garcon
    xfce-base/libxfce4ui
    xfce-base/libxfce4util
    xfce-base/thunar
    xfce-base/xfce4-appfinder
    xfce-base/xfce4-meta
    xfce-base/xfce4-panel
    xfce-base/xfce4-session
    xfce-base/xfce4-settings
    xfce-base/xfconf
    xfce-base/xfdesktop
    xfce-base/xfwm4
    xfce-extra/thunar-archive-plugin
    xfce-extra/thunar-volman
    xfce-extra/tumbler
    xfce-extra/xfce4-mixer
    xfce-extra/xfce4-notifyd
    xfce-extra/xfce4-power-manager
    xfce-extra/xfce4-screenshooter
    xfce-extra/xfce4-taskmanager

    emerge -info

    emerge --info
    setlocale: unsupported locale setting
    Portage 2.2.20.1 (python 2.7.10-final-0, funtoo/1.0/linux-gnu/arch/x86-64bit, gcc-4.9.3, glibc-2.20-r2, 3.19.3-1~exp1 x86_64)
    =================================================================
    System uname: Linux-3.19.3-1~exp1-x86_64-Intel-R-_Core-TM-_i7_CPU_M_640_@_2.80GHz-with-gentoo-2.2.0
    KiB Mem:     3912056 total,   3688856 free
    KiB Swap:    8388604 total,   8388604 free
    sh bash 4.3_p39-r1
    ld GNU ld (Funtoo 2.25) 2.25.0
    app-shells/bash:          4.3_p39-r1::gentoo
    dev-lang/perl:            5.22.0::gentoo
    dev-lang/python:          2.7.10-r3::gentoo, 3.3.5-r2::gentoo
    dev-util/cmake:           3.4.1::gentoo
    sys-apps/baselayout:      2.2.0-r6::gentoo
    sys-apps/openrc:          0.18.3-r1::gentoo
    sys-apps/sandbox:         2.9::gentoo
    sys-devel/autoconf:       2.13::gentoo, 2.69-r1::gentoo
    sys-devel/automake:       1.13.4::gentoo, 1.14.1::gentoo, 1.15::gentoo
    sys-devel/binutils:       2.25-r2::gentoo
    sys-devel/gcc:            4.9.3::gentoo
    sys-devel/gcc-config:     1.8::gentoo
    sys-devel/libtool:        2.4.6-r1::gentoo
    sys-devel/make:           4.1-r1::gentoo
    sys-kernel/linux-headers: 4.0::gentoo (virtual/os-headers)
    sys-libs/glibc:           2.20-r2::gentoo
    Repositories:
    
    gentoo
        location: /usr/portage
        sync-type: git
        sync-uri: git://github.com/funtoo/ports-2012.git
        priority: -1000
    
    ACCEPT_KEYWORDS="amd64 ~amd64"
    ACCEPT_LICENSE="* -@EULA Oracle-BCLA-JavaSE"
    CBUILD="x86_64-pc-linux-gnu"
    CFLAGS="-march=westmere -O2 -pipe"
    CHOST="x86_64-pc-linux-gnu"
    CONFIG_PROTECT="/etc /usr/share/gnupg/qualified.txt"
    CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/dconf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo"
    CXXFLAGS="-march=westmere -O2 -pipe"
    DISTDIR="/usr/portage/distfiles"
    FEATURES="assume-digests binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles merge-sync news parallel-fetch preserve-libs protect-owned sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr"
    FFLAGS="-march=westmere -O2 -pipe"
    GENTOO_MIRRORS="http://distfiles.gentoo.org"
    INSTALL_MASK="/usr/lib/systemd/ /lib/systemd/"
    LANG="en_US.UTF-8"
    LDFLAGS="-Wl,-O1 -Wl,--sort-common -Wl,--as-needed"
    MAKEOPTS="-j5"
    PKGDIR="/usr/portage/packages"
    PORTAGE_CONFIGROOT="/"
    PORTAGE_TMPDIR="/var/tmp"
    USE="X a52 aac acl alsa amd64 apng berkdb bluray bzip2 cdda cddb cdio cdr consolekit cracklib crypt cups cxx dbus dri dts dvd dvdr dvdread encode exif faac faad ffmpeg flac gdbm gif gpm gtk ico iconv icu ieee1394 ios ipod ipv6 jpeg jpeg2k lame libass libguess libmpeg2 libnotify lock mad matroska mjpeg mmx modules mp3 mpeg mtp mudflap multilib ncurses nls nptl nsplugin ogg opengl openmp pam pcre pdf png policykit postproc pppd python quicktime readline resolvconf session sndfile sse sse2 ssl startup-notification svg taglib tcpd theora thunar tiff truetype twolame udev unicode v4l vorbis vpx wav wavpack webp win32codecs wmf x264 x265 xattr xml xvid zlib" ABI_X86="32_64 64" ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel ice1724 intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci" ALSA_PCM_PLUGINS="adpcm alaw asym copy dmix dshare dsnoop empty extplug file hooks iec958 ioplug ladspa lfloat linear meter mmap_emul mulaw multi null plug rate route share shm softvol" APACHE2_MODULES="actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias authn_core authz_core socache_shmcb unixd" CALLIGRA_FEATURES="kexi words flow plan sheets stage tables krita karbon braindump author" CAMERAS="ptp2" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="aes mmx mmxext popcnt sse sse2 sse3 sse4_1 sse4_2 ssse3" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf superstar2 timing tsip tripmate tnt ublox ubx" GRUB_PLATFORMS="efi-64 pc" INPUT_DEVICES="evdev synaptics keyboard mouse" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php5-5" PYTHON_ABIS="2.7 3.3" PYTHON_SINGLE_TARGET="python3_3" PYTHON_TARGETS="python2_7 python3_3" QEMU_SOFTMMU_TARGETS="i386 x86_64" QEMU_USER_TARGETS="i386 x86_64" RUBY_TARGETS="ruby20 ruby21 ruby22" USERLAND="GNU" VIDEO_CARDS="intel" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account"
    Unset:  CPPFLAGS, CTARGET, EMERGE_DEFAULT_OPTS, LC_ALL, LINGUAS, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS

     

×
×
  • Create New...