Announcement

Collapse
No announcement yet.

FAQ: Version info - Regenerated

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    FAQ: Version info - Regenerated

    Regenerated > Topic: Lost Information, old topic=3098839.0


    KDE version:
    Start a KDE program (kate) > Help > About KDE ...


    Konsole

    man lsb_release:
    NAME
    lsb_release - print distribution-specific information

    SYNOPSIS
    lsb_release [options]

    DESCRIPTION
    The lsb_release command provides certain LSB (Linux Standard Base) and
    distribution-specific information.

    If no options are given, the -v option is assumed.

    -a, --all
    Display all of the above information.
    Example:
    Code:
    lsb_release -a
    No LSB modules are available.
    Distributor ID: Ubuntu
    Description: Ubuntu jaunty (development branch)
    Release: 9.04
    Codename: jaunty
    The "lsb_release" command is reading the information from the /etc/lsb-release.


    man uname:
    NAME
    uname - print system information

    SYNOPSIS
    uname [OPTION]...

    DESCRIPTION
    Print certain system information. With no OPTION, same as -s.

    -a, --all
    print all information, in the following order, except omit -p
    and -i if unknown:
    Example:
    Code:
    uname -a
    Linux ammu2500L 2.6.28-11-generic #37-Ubuntu SMP Mon Mar 23 16:40:23 UTC 2009 i686 GNU/Linux

    man kde-config:
    NAME
    kde-config — A little program to output installation paths

    SYNOPSIS
    kde-config [Qt-options] [KDE-options] [--exec-prefix] [--expandvars]
    [--install type] [--localprefix] [--path type] [--prefix] [--types]
    [--userpath type]

    -v, --version
    Show version information.
    Examples:
    KDE 3 version info
    Code:
    kde-config --version
    Qt: 3.3.8b
    KDE: 3.5.10
    kde-config: 1.0
    KDE 4 version info
    Code:
    kde4-config --version
    Qt: 4.5.0
    KDE: 4.2.1 (KDE 4.2.1)
    kde4-config: 1.0
    KF5 version info
    Code:
     kf5-config --version
    Qt: 5.4.1
    KDE Frameworks: 5.9.0
    kf5-config: 1.0

    The Ubuntu is based to the Debian:
    Code:
    cat /etc/debian_version
    squeeze/sid
    Other files to have the version strings:
    Code:
    cat /etc/issue.net
    Ubuntu 10.04.1 LTS

    With graphics

    > Topic: OpenSUSE like sysinfo in Kubuntu


    .. and with a plasmoid > Yasp-Scripted

    A script:
    Code:
    default title:color="Black" title:font="Dejavu Sans, 12" title:shadow="Sunken" title:alignment="Center"
    default value:color="Black" value:font="Dejavu Sans, 8" value:alignment="Left"
    
    title text="Version Info"
    
    default interval="single"
    
    sensor name="Release" type="program" cmd="lsb_release -i -d -r -c"
    
    value icon="/usr/share/doc/plasma-widget-yasp-scripted/yasp_scripts/kubuntu-version/KuLogo.png" 
    iconsize="64" key=" " icon_click="kde-open [url]http://kubuntuforums.net/forums/index.php?topic=3098839.0"[/url] use="Release"
    
    sensor name="Kernel" type="program" cmd="echo Kernel: | tr -d '\n' && uname -r"
    value use="Kernel"
    
    sensor name="KDEQt" type="program" cmd="kde4-config --version | grep -v kde4"
    value use="KDEQt"

    Links:
    > Topic: Plasma, plasmoids and short how to recover
    Last edited by Rog132; May 23, 2015, 12:12 PM.
    A good place to start: Topic: Top 20 Kubuntu FAQs & Answers
    Searching FAQ's: Google Search 'FAQ from Kubuntuforums'

    #2
    Replacing kio_sysinfo with kinfocenter

    http://kdeatopensuse.wordpress.com/2...h-kinfocenter/
    Replacing kio_sysinfo with kinfocenter
    Posted by: rabauke on: January 19, 2013

    From openSUSE 12.3 on and currently already for the RC packages of KDE SC 4.10, kio_sysinfo will be replaced by kinfocenter...

    Missing information from kinfocenter’s summary I noticed so far:

    temperatures
    free hard disk space for each partition
    current CPU frequency

    Most info is available, even in more detail than kio_sysinfo did show it, yet not as part of the summary. E.g. graphics info, memory stats etc...

    KInfoCenter has always been part of the SC. Any improvements we make will be upstreamed....
    Kinfocenter: http://www.kde.org/applications/system/kinfocenter/




    inxi

    :~$ apt-cache show inxi
    Package: inxi
    Priority: extra
    Section: universe/misc
    Installed-Size: 438

    Architecture: all
    Version: 1.9.12-1
    Depends: bash (>= 3.0), gawk, pciutils, procps
    Recommends: dmidecode, file, hddtemp, iproute, lm-sensors, mesa-utils, module-init-tools, net-tools, sudo, usbutils, x11-utils, x11-xserver-utils
    Filename: pool/universe/i/inxi/inxi_1.9.12-1_all.deb

    Description: full featured system information script
    Inxi is a system information script that can display various things about
    your hardware and software to users in an IRC chatroom or support forum.
    It runs with the /exec command in most IRC clients.

    Homepage: http://code.google.com/p/inxi/

    Origin: Ubuntu
    Ubuntu packages: http://packages.ubuntu.com/search?ke...ll&section=all

    man inxi
    man inxi

    INXI(1) inxi manual INXI(1)

    NAME
    inxi - Command line system information script for console and IRC

    SYNOPSIS
    inxi - Single line, short form. Very basic output.

    inxi [-AbCdDfFGhHiIlMnNopPrRsSuw] [-c NUMBER] [-v NUMBER]

    inxi [-t (c or m or cm or mc NUMBER)] [-x -OPTION(s)] [-xx -OPTION(s)] [-xxx -OPTION(s)]

    inxi [--help] [--recommends] [--version] [-@ NUMBER]

    DESCRIPTION
    inxi is a command line system information script built for for console and IRC. It is also used for forum technical
    support, as a debugging tool, to quickly ascertain user system configuration and hardware. inxi shows system hard‐
    ware, CPU, drivers, Xorg, Desktop, Kernel, GCC version(s), Processes, RAM usage, and a wide variety of other useful
    information.

    inxi output varies between CLI and IRC, with some default filters and color options applied to IRC use. Script col‐
    ors can be turned off if desired with -c 0, or changed using the -c color options listed in the OPTIONS section
    below...
    Have you tried ?

    - How to Ask a Question on the Internet and Get It Answered
    - How To Ask Questions The Smart Way

    Comment


      #3
      About System

      Earlier: http://www.kubuntuforums.net/showthr...-10-could-have


      Now

      https://lists.ubuntu.com/archives/sa...st/009089.html
      about-distro (0.0git20130828-0ubuntu1) saucy; urgency=low

      * Initial release LP: #215383

      Date: Wed, 28 Aug 2013 13:35:01 +0100

      KInfocenter:


      #kubuntu-devel : http://irclogs.ubuntu.com/2013/08/28...el.html#t11:41
      A good place to start: Topic: Top 20 Kubuntu FAQs & Answers
      Searching FAQ's: Google Search 'FAQ from Kubuntuforums'

      Comment


        #4
        About version numbers

        Earlier: https://www.kubuntuforums.net/showth...l=1#post342024

        KDE bug: https://bugs.kde.org/show_bug.cgi?id=329158

        Short: The 'KDE SC Version' version in the KInfocenter is telling the build moment KDE library version. It is not telling what you are now using.

        A good place to start: Topic: Top 20 Kubuntu FAQs & Answers
        Searching FAQ's: Google Search 'FAQ from Kubuntuforums'

        Comment

        Working...
        X