The CPU load stays at 5-10% while using Chrome. Even before reapplying the paste, which by the way greatly helped. If you see the picture above, it barely had anything on processor and the graphics card, it was all on the sides dried up.
-
-
Meaker@Sager Company Representative
-
Last edited: Apr 9, 2017
-
Absentmindedscholar Notebook Enthusiast
Just throwing this out to fellow P640re owners, on the off chance one of you might be using Linux.
Simple question, does anyone have any information on enabling the optimus graphics with xorg? Currently, if I do an optimus setup using the NVidia-drivers, I get to a blackscreen. xrandir reports no devices. I can get a functioning screen with no config using xorg-x11 opengl drivers, but then I get no graphics acceleration. So anyone got any experiences that may help? -
ya, i have the same issue. one thing that i tried was changing it then rebooting. sometimes it worked, sometimes it didn't. have you looked into using prime-selector? also, try using the x-org updates ppa. they tend to have some of the bleeding edge stuff and i've had some luck in that area. but i have also bricked my install with it too. just be prepared to drop to console to fix whatever ya f**k up LOL.
-
Absentmindedscholar Notebook Enthusiast
-
does clevo p640re has intel DPTF driver?
-
Hi guys,
I bought a P640RE right when it came out, with an i7 6820hk and a gtx 970m. A week ago I got home and the machine wouldn't turn on. Called the seller, and after testing they had to send the barebone to wherever Clevo's factory is. The thing is, what will happen if there is nothing to do? It is still under warranty but there aren't any of this type around. You only see the gtx 1050ti with a i7 7700hq, and in my eyes I would be losing if I got one of those because I lose the unlocked cpu and the better gpu. What are your opinions? Should I ask the seller for a discount because I got the bad side of the deal?
Thanks guys, hoping for a reply soon -
Support.1@XOTIC PC Company Representative
I would check to see what they can do for you first under warranty. It might be possible that they still have access to the i7 6820HK / 970m motherboard or can fix it with another type of repair. But if they aren't able to, then see what options they might be able to do for you.
-
Thank you for the fast response!
Do you think I would be at a disadvantage if the seller offers me the gtx 1050ti with a i7 7700hq? If so, should I ask for some sort of material to break even? (ssd, ram, ...)
Or am I being too strict and that version runs equal to mine?
Thanks once again -
Meaker@Sager Company Representative
The 1050ti is on par if not a little faster than the 970m.
-
Support.1@XOTIC PC Company Representative
I love this site for an example. But you can check out gaming performance here to see how cards stack up.
https://www.notebookcheck.net/Computer-Games-on-Laptop-Graphic-Cards.13849.0.html -
I will contact the seller tomorrow because they are already closed. -
on a side note, im sure the retailer would be willing to work with you in regards to finding atleast some sort of common ground if they don't have a 6820HK board available.
i've learned that a lot of the dealers here are pretty reputable and take care of their customers. -
Meaker@Sager Company Representative
A tuned 7700HQ would still perform very well with the 1050ti and in general but as above I would talk to support and ask them about options.
-
I'm trying to figure out ways to fix my terrible linux battery life - I have a feeling knocking out the discrete graphics card with optimus would be a decent way.
Sadly I can't seem to figure out how to get the prema mod now that the thread is over -
In my custom "extreme powersave" mode (Nvidia card offline, 2 of 8 CPU cores online, 1% brightness, and some other powersave tuning) my laptop consumes 8-11 W thus battery life is 4-5 hours.Last edited: May 6, 2017 -
Meaker@Sager Company Representative
Yeah turning off the dGPU alone would help save a huge chunk at idle, you wont get huge gains without that.
-
Oh damn, I'll have to give bumblebee a shot, cheers.
-
Meaker@Sager Company Representative
-
it should work with 17.04 as well
http://www.webupd8.org/2016/08/how-to-install-and-configure-bumblebee.html -
Didn't realise that 17.4 was released
"
GNOME 3.24 comes with support for machines that have two graphics cards. If you have this hardware, you can now select which GPU to use when launching an application. Settings will also give information on both graphics cards.
"
Now that's interesting -
-
Once again I need some help.
Just got into college and need to run linux (the PCs there run Lubuntu/Xubuntu and I will run the same to minimize compatibility issues in projects), and I will be dualbooting between lubuntu and windows10.
The thing is the laptop barely reaches 3 hours in windows 10 and I heard that linux is way worse.
Any way to improve battery in linux(lubuntu)? I don't know much about linux so I would appreciate some tutorials to implement the tweaks. Any possibility of reaching near the 3 hour mark? I want to disable the dedicated gpu too, like you guys said (is it possible to toggle it on and off without rebooting?)
Thanks -
Then adjust this script for your needs:
Code:#!/bin/bash #### tweaks sorted by power saving impact # disable nvidia gpu modprobe bbswitch; echo OFF > /proc/acpi/bbswitch; dmesg | grep bbswitch; # disable 6 cpu cores echo 0 > /sys/devices/system/cpu/cpu2/online; echo 0 > /sys/devices/system/cpu/cpu3/online; echo 0 > /sys/devices/system/cpu/cpu4/online; echo 0 > /sys/devices/system/cpu/cpu5/online; echo 0 > /sys/devices/system/cpu/cpu6/online; echo 0 > /sys/devices/system/cpu/cpu7/online; # intel gpu powersave echo 1 > /sys/module/i915/parameters/powersave; intel_gpu_frequency --min; modprobe drm_kms_helper; echo "N" > /sys/module/drm_kms_helper/parameters/poll; # cpu powersave echo 1 > /sys/devices/system/cpu/intel_pstate/no_turbo; echo powersave | tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor; echo hpet > /sys/devices/system/clocksource/clocksource0/current_clocksource; # pci/i2c devices echo "powersave" > /sys/module/pcie_aspm/parameters/policy; for i in $(ls /sys/bus/{pci,i2c}/devices/*/power/control); do echo auto > "$i"; done; # usb devices echo auto | tee /sys/bus/usb/devices/*/power/level; echo 1 | tee /sys/bus/usb/devices/*/power/autosuspend; # wifi powersave iwconfig wlan0 power timeout 500ms; iwconfig wlan0 power on txpower 1; iw dev wlan0 set power_save on; # disable bluetooth hciconfig hci0 down; modprobe -r hci_usb btusb btintel bluetooth; # sata powersave echo min_power | tee /sys/class/scsi_host/host*/link_power_management_policy; # audio echo 1 > /sys/module/snd_hda_intel/parameters/power_save; echo Y > /sys/module/snd_hda_intel/parameters/power_save_controller; # memory echo "-> vm"; echo 30000 > /proc/sys/vm/dirty_expire_centisecs; echo 30000 > /proc/sys/vm/dirty_writeback_centisecs; echo 60 > /proc/sys/vm/dirty_background_ratio; echo 95 > /proc/sys/vm/dirty_ratio; echo 50 > /proc/sys/vm/vfs_cache_pressure; # services for i in postfix exim ntp nfs smb xinetd cups rsyslog systemd-journald cron haveged mcelog polkit systemd-logind do echo "$i"; service $i stop; done
This script will make your laptop consume ~10 W so battery life will be ~4.5 hours.
Also run "powertop" and act according to its suggestions.Last edited: Sep 22, 2017 -
which build of nix did you test this on? i might consider tweaking it a bit and running it myself.Ionising_Radiation likes this. -
-
-
It should work on all distributions with minor edits as most distributions have the same paths specified.
If it will return "no such file or directory" on some line - find the right path (e.g. "find /sys/ -type f -name no_turbo") and post it here for fellow Ubuntu users. -
-
Is there any way that you could tell me how to change the kernel?
I tried to install xubuntu alongside with w10 but after the install and it telling me to restart, the computer just freezes when I click the restart button and when I force it to shut down and try to login, it freezes in the blue default background after I login (the mouse still moves, but I have nothing to do besides a completely blue screen and the fans raging)
I know, complete noob... But I love this machine and need it to run linux -
-
also how many post do i need to send pms?
thanks -
About the freezes - seems that you are having this issue: https://github.com/Bumblebee-Project/Bumblebee/issues/764
In short - you should add something likeCode:acpi_osi=! acpi_osi="Windows 2009"
Code:acpi_osi="!Windows 2015"
-
Send him a PM[/QUOTE]
how many post is required to send pms?
+ where is the location of the second m,2? slot for the lte modem? addig an m.2 ssd in that slot is possible? -
Search this thread for "modem" or "m.2" and you'll find photos. -
-
anyone? -
Anyone encountering issues after updating Windows to Version 1709 "Fall Creators" update ?
After upgrading, my Nvidia GTX970M stopped functioning. Any game which relies on the Nvidia GPU will crash. I used the Nvidia Control Panel to force the game to use the integrated Intel HD 530 and it worked. -
Meaker@Sager Company Representative
Have you rolled back the update to test if it was the cause?
-
Spartan@HIDevolution Company Representative
If you manage to update you drivers, and still face these issues, try this:
How to properly update your nVIDIA graphics card driver
If that also didn't help fix the problem, then you need to do a clean install:
NBR Windows 10 Clean Installation Guide
Windows 10 Tweaks and Fixes (Index post #1)
Phoenix Software Updates
You can get a lot of the drivers from the below thread as some of them work on multiple laptops like the Wireless or Intel Chipset Drivers. Also depending on what card reader your laptop has, you may be able to use the Realtek Card Reader drivers from this thread as well:
MSI GT73VR 7RF TITAN PRO Drivers
-
Hello guys
First, gotta say I'm really happy to find this sub ! I love modding my p640RE and had a few questions for you guys :
1) Is there any site proposing spare parts ?
2) In any case, where could I find a top case ? (in case of modding gone wrong AHAH).
Thank's -
I tried to mod it myself but could not flash it back (protected?). I tried to send you PM but I don't see how to do it here
Maybe my account is still too new.
(I know the BIOS is able to handle the ATA password because when I insert protected HDD in the notebook I get
the password prompt. But the algorithm used to translate keycodes to password is usually different machne to machine) -
Meaker@Sager Company Representative
Why not use something like bitlocker?
-
I have Samsung 850 EVO which has hardware AES encryption. In fact, the drive is encrypted
anyway, but it you set the ATA password then the symetrical key for AES gets encrypted and protected
with this ATA password. So basically, once you set this up, you get hardware based encryption in
a very secure way and also a solution that does not in any way affect performance. -
Meaker@Sager Company Representative
The 850 EVO can accelerate bitlocker IIRC.
-
Hey everyone!
I know this is not tech support, but I was wondering, did any experience flickers on their laptop monitor before? I am 100% sure it's a hardware problem, I was thinking it might be a loose wire. (I clean it every month or so) I owned this beast for 1,5 year now and I just started getting this problem. Whenever I am moving the lid it occurs.
Any help is appreciated, thanks! -
Donald@Paladin44 Retired
-
*** Official Clevo P640RE/Sager NP8640 Owner's Lounge ***
Discussion in 'Sager/Clevo Reviews & Owners' Lounges' started by NordicRaven, Sep 15, 2015.