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.

    Clevo P377SM-A with 980M + Linux Mint 17.1

    Discussion in 'Linux Compatibility and Software' started by Ethrem, May 16, 2015.

  1. Ethrem

    Ethrem Notebook Prophet

    Reputations:
    1,404
    Messages:
    6,706
    Likes Received:
    4,735
    Trophy Points:
    431
    Much to my amazement, this machine works great with Linux.

    There is really only one major annoyance... I can not adjust my LCD brightness.

    SLI has never worked for mobile cards so I'm not so upset about that.

    On the install, I had to edit the boot options and add nomodeset in order to avoid it freezing when it loaded nouveau but I have it installed in EFI mode alongside Windows 8.1 so I can use both.

    Here's Heaven running on it.

    [​IMG]

    I'll probably have to move to MATE so that I can have my thermal sensors though. Doesn't seem like Cinnamon has any dockable ones.
     
  2. ALLurGroceries

    ALLurGroceries  Vegan Vermin Super Moderator

    Reputations:
    15,730
    Messages:
    7,146
    Likes Received:
    2,343
    Trophy Points:
    331
    Did you try acpi_backlight=vendor as a kernel parameter?
     
  3. Ethrem

    Ethrem Notebook Prophet

    Reputations:
    1,404
    Messages:
    6,706
    Likes Received:
    4,735
    Trophy Points:
    431
    Its highly unlikely it will work. It doesn't even work in Windows without the proper Clevo Hotkey software interfacing with the EC. When I hit the FN keys, it shows the brightness indicator going up and down but has no effect.

    I also don't believe the nVidia drivers are recognizing that my display is 120hz.

    While running the UE4 benchmarks on Phoronix yesterday, it froze the system and the caps lock and number lock were flashing before it rebooted itself so something went wrong but I have no idea what it was.
     
  4. ALLurGroceries

    ALLurGroceries  Vegan Vermin Super Moderator

    Reputations:
    15,730
    Messages:
    7,146
    Likes Received:
    2,343
    Trophy Points:
    331
    That's a good sign that the brightness keys work - I'd give it a shot!
     
  5. itoffshore

    itoffshore Notebook Guru

    Reputations:
    26
    Messages:
    52
    Likes Received:
    6
    Trophy Points:
    16
    To adjust screen brightness:

    apt-get install xbacklight

    ~$ xbacklight --help
    usage: xbacklight [options]
    where options are:
    -display <display> or -d <display>
    -help
    -set <percentage> or = <percentage>
    -inc <percentage> or + <percentage>
    -dec <percentage> or - <percentage>
    -get
    -time <fade time in milliseconds>
    -steps <number of steps in fade>
     
    bullshifd likes this.
  6. Mr.Koala

    Mr.Koala Notebook Virtuoso

    Reputations:
    568
    Messages:
    2,307
    Likes Received:
    566
    Trophy Points:
    131
  7. bullshifd

    bullshifd Notebook Enthusiast

    Reputations:
    2
    Messages:
    22
    Likes Received:
    5
    Trophy Points:
    6
    I have a P750DM, I'm running Fedora 22 XFCE but you can probably adapt this to get it to work for you. I used exactly what the arch page said and it works for me. I'm using the proprietary NVIDIA drivers and I have a Quadro M5000M but as soon as I installed the NVIDIA driver it recognized the screen correctly, before the NVIDIA drivers it was driving at 88Hz.

    https://wiki.archlinux.org/index.php/Backlight

    install xbacklight
    install inotify-tools

    make this file

    /usr/local/bin/xbacklightmon

    #!/bin/bash
    max=/sys/class/backlight/acpi_video0/max_brightness
    level=/sys/class/backlight/acpi_video0/actual_brightness
    factor=$(awk '{print $1/100}' <<< $(<$max))

    xblevel() { awk '{print int($1/$2)}' <<< "$(<$level) $factor"; }
    xbacklight -set $(xblevel)
    inotifywait -m -qe modify $level | while read -r file event; do
    xbacklight -set $(xblevel)
    done


    I set xbacklightmon to launch on startup so that it's always running.

    I'm using the proprietary NVIDIA drivers and I have a Quadro M5000M but as soon as I installed the NVIDIA driver it recognized the screen correctly, before the NVIDIA drivers it was driving at 88Hz.
     
  8. 2bad0

    2bad0 Notebook Consultant

    Reputations:
    28
    Messages:
    121
    Likes Received:
    157
    Trophy Points:
    56
    @Ethrem , do you still have linux around,today on 1st go with ubuntu 16.04 and nvidia drivers 361.18, kernel 4.3.0-5-generic EFI mode i have backlight working with no further mods that i'm aware of (unless there happens to be some post script which runs).Clevo p750dmg-970m.I plan to try older releases of kernel plus drivers to see where the change took place.
     
    Last edited: Jan 17, 2016
    Ethrem likes this.
  9. Ethrem

    Ethrem Notebook Prophet

    Reputations:
    1,404
    Messages:
    6,706
    Likes Received:
    4,735
    Trophy Points:
    431
    I haven't tried it lately but 17.2 would not work at all, no matter what switches I tried. Nouveau is a really big hassle and for some reason nothing was overriding the faulty mode settings causing the LCD to go out of range.

    I plan to try Kubuntu when I'm done with the series I'm watching on Hulu, kind of want to check out KDE Pulse so I'll let you know.
     
  10. Ethrem

    Ethrem Notebook Prophet

    Reputations:
    1,404
    Messages:
    6,706
    Likes Received:
    4,735
    Trophy Points:
    431
    Whatever they broke in 17.2 they fixed in 17.3 - booted with --nomodeset, installed, enabled driver for nVidia. Voila.
     
    i_pk_pjers_i and alexhawker like this.
  11. 2bad0

    2bad0 Notebook Consultant

    Reputations:
    28
    Messages:
    121
    Likes Received:
    157
    Trophy Points:
    56
    Great news,is your brightness good as well?
     
    Ethrem likes this.
  12. Ethrem

    Ethrem Notebook Prophet

    Reputations:
    1,404
    Messages:
    6,706
    Likes Received:
    4,735
    Trophy Points:
    431
    I had to install xbacklight and just adjust it manually but it's better than nothing.
     
    2bad0 likes this.