Results 1 to 3 of 3

Thread: system config command ..?

  1. #1
    Join Date
    Nov 2012
    Beans
    20

    system config command ..?

    I want to know that how can I see my system configuration like RAM,hard drive etc . through CLI and GUI .....??

  2. #2
    Join Date
    Nov 2007
    Location
    London, England
    Beans
    7,701

    Re: system config command ..?

    Command prompt:
    Code:
    lshw | less
    or for even more detail:
    Code:
    sudo -i
    lshw | less
    exit
    I don't know of a GUI equivalent.

  3. #3
    Join Date
    Jun 2011
    Location
    United Kingdom
    Beans
    Hidden!
    Distro
    Lubuntu Development Release

    Re: system config command ..?

    GUI: multiple places, depending on DE, version, preferences...the point of a GUI is that you can find them.

    CLI: (these should cover most things):

    Generic hardware:
    Code:
    lshw
    PCI(e) hardware:
    Code:
    lspci
    USB hardware:
    Code:
    lsusb
    CPU information:
    Code:
    lscpu
    Memory (total/free):
    Code:
    free
    GPU information/capabilities, OpenGL capabilities.
    Code:
    glxinfo

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
  •