The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    GHOST, a critical Linux security hole, is revealed

    Discussion in 'Linux Compatibility and Software' started by ajkula66, Jan 29, 2015.

  1. ajkula66

    ajkula66 Courage and Consequence

    Reputations:
    3,018
    Messages:
    3,198
    Likes Received:
    2,318
    Trophy Points:
    231
  2. UNCNDL1

    UNCNDL1 Notebook Deity

    Reputations:
    225
    Messages:
    795
    Likes Received:
    183
    Trophy Points:
    56
    The author's ending words, "My advice to you is to now, not later today, now, update your Linux system as soon as possible. After patching it, you should then reboot the system. I know for Linux it's rarely needed to reboot, but since gethostbyname is called on by so many core processes, such as auditd, dbus-daem, dhclient, init, master, mysqld, rsyslogd, sshd, udevd, and xinetd, you want to make absolutely sure that all your system's running programs are using the patched code." Now, if someone can show a newbie how to exactly make sure my system has been updated and nothing to worry about...
     
  3. alexhawker

    alexhawker Spent Gladiator

    Reputations:
    500
    Messages:
    2,540
    Likes Received:
    792
    Trophy Points:
    131
    In something like Ubuntu, open a terminal session.

    Type sudo apt-get update
    Hit Enter, wait for it to complete (requires internet)
    Type sudo apt-get upgrade
    Type Y, hit enter, wait.

    Reboot.
     
  4. Falco152

    Falco152 Notebook Demon

    Reputations:
    442
    Messages:
    1,882
    Likes Received:
    75
    Trophy Points:
    66
    If on Ubuntu /w Unity DE with internet access.

    Hit the launcher menu button with the super key (Windows Key).
    Search for software updater.
    Apply Update.

    Reboot.


    Terminal:
    sudo apt-get update; sudo apt-get upgrade -y && sudo reboot
    ldd --version

    check if later than 2.17
     
  5. raptir

    raptir Notebook Deity

    Reputations:
    108
    Messages:
    904
    Likes Received:
    50
    Trophy Points:
    41
    Keep in mind that if you are on an LTS release of Ubuntu (which are the only affected releases that are still supported) you will not see a version later than 2.15. To determine the specific revision you have, run...

    Code:
    apt-cache policy libc6
    This will spit out something like...

    Code:
    libc6:
       Installed: 2.15-0ubuntu10.10
       Candidate: 2.15-0ubuntu10.10
       Version Table: etc...
    
    http://www.ubuntu.com/usn/usn-2485-1/

    Make sure the ubuntu revision you have installed is at least what is listed in that article, then reboot to make sure you are actually using it.