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.

    Wifi not working?

    Discussion in 'Sager and Clevo' started by 12000Monkeys, Jul 17, 2017.

  1. 12000Monkeys

    12000Monkeys Notebook Enthusiast

    Reputations:
    0
    Messages:
    11
    Likes Received:
    2
    Trophy Points:
    6
    Hi there.
    Clevo P670HS-G is my machine. I run Linux mint 18.1.
    When I updated my box I suddenly lost the wifi.
    It was a mainline update.
    It just disappeared from the Networks Connection...
    So how can I get it back? Any backports or so?
    Any help would be very much appreciated!


    Regards
    Mikael
     
  2. Meaker@Sager

    Meaker@Sager Company Representative

    Reputations:
    9,436
    Messages:
    58,194
    Likes Received:
    17,909
    Trophy Points:
    931
    I would restore from before the update and see if it's still there.
     
  3. bruno.uy

    bruno.uy Notebook Enthusiast

    Reputations:
    0
    Messages:
    40
    Likes Received:
    24
    Trophy Points:
    16
    Find out what driver versions System76 uses, a Clevo reseller for Linux.
     
  4. 12000Monkeys

    12000Monkeys Notebook Enthusiast

    Reputations:
    0
    Messages:
    11
    Likes Received:
    2
    Trophy Points:
    6
    JeremyB on the great Mint forum.
    This should work as I think the 4.10 kernel may break the Nvidia driver


    CODE: SELECT ALL

    sudo apt-get update && sudo apt-get install git build-essential linux-headers-generic
    CODE: SELECT ALL

    git clone https://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/backport-iwlwifi.git -b release/LinuxCore28
    CODE: SELECT ALL

    cd backport-iwlwifi
    CODE: SELECT ALL

    make defconfig-iwlwifi-public
    CODE: SELECT ALL

    sed -i 's/CPTCFG_IWLMVM_VENDOR_CMDS=y/# CPTCFG_IWLMVM_VENDOR_CMDS is not set/' .config
    CODE: SELECT ALL

    make -j4
    CODE: SELECT ALL

    sudo make install
    Reboot

    If you update your kernel to a newer 4.4 kernel you will need to
    CODE: SELECT ALL

    cd backport-iwlwifi
    CODE: SELECT ALL

    make clean
    CODE: SELECT ALL

    make defconfig-iwlwifi-public
    CODE: SELECT ALL

    sed -i 's/CPTCFG_IWLMVM_VENDOR_CMDS=y/# CPTCFG_IWLMVM_VENDOR_CMDS is not set/' .config
    CODE: SELECT ALL

    make -j4
    CODE: SELECT ALL

    sudo make install
    Reboot