-5

I am using a Laptop Dell 15 5555. What can i do.

CPU~Quad core AMD A10-8700P Radeon R6 10 Compute Cores 4C+6G (-MCP-) speed/max~1300/1800 MHz Kernel~4.10.0-33-generic x86_64 Up~4 min Mem~1048.2/11518.6MB HDD~1000.2GB(2.5% used) Procs~225 Client~Shell inxi~2.2.35

  • It runs an AMD APU so you may try the AMD proprietary drivers. –  Sep 19 '17 at 16:34
  • 1
    This may be helpful: https://askubuntu.com/questions/400/tips-to-extend-battery-life-for-laptops-and-notebooks – pomsky Sep 19 '17 at 16:36
  • @MichaelBay How I know if I am use AMD proprietary drivers – Marco Leslie Sep 19 '17 at 16:41
  • Simple, if you don't know you don't have them because it must be installed by the user. The default is radeon or amdgpu, both open source. –  Sep 19 '17 at 16:47

1 Answers1

-1

Just install TLP Power Management on your ubuntu. Like my laptop before installed TLP , the battery drain very fast. to install it, open your terminal and type :

sudo add-apt-repository ppa:linrunner/tlp

after that run this command :

sudo apt-get update

after update, install the TLP using this command :

sudo apt-get install tlp tlp-rdw

to start the TLP, run this command :

sudo tlp start

to show the status, run this command :

sudo tlp stat

hope it will work for you, because it works for me.

Deki
  • 645