December 27 2018
Notebook
nvidia drivers1
- I always did it like here
- but now I always get
E: Unable to locate package nvidia-410
- so I opend
Software and Updates
via cmd withsudo software-properties-gtk
- first I deleted all the graphics drivers ppas in
other software
- but then also installed the driver via this tool in the
additional drivers
tab - reboot
- checked for the install by opening
$
nvidia-settings
- it schould look something like this:
- or just use
lsmod | grep nvidia
and if you get an output the driver has sucessfully installed
CPU temp2
- my notebook freezes from time to time and even SysRq shortcuts won’t help
- I have to look further into it but for now I installed
lm-sensors
sudo apt-get install lm-sensors
- start it with
sudo sensors-detect
accept everything with yes - run
sensors
to see the temps - output:
hisfantor@ ~ () $ sensors
coretemp-isa-0000
Adapter: ISA adapter
Package id 0: +62.0°C (high = +100.0°C, crit = +100.0°C)
Core 0: +51.0°C (high = +100.0°C, crit = +100.0°C)
Core 1: +51.0°C (high = +100.0°C, crit = +100.0°C)
Core 2: +54.0°C (high = +100.0°C, crit = +100.0°C)
Core 3: +62.0°C (high = +100.0°C, crit = +100.0°C)
acpitz-virtual-0
Adapter: Virtual device
temp1: +62.0°C (crit = +105.0°C)
iwlwifi-virtual-0
Adapter: Virtual device
temp1: +42.0°C
pch_skylake-virtual-0
Adapter: Virtual device
temp1: +45.0°C
- don’t know why high and crit aren’t working properly but whatever
jekyll error3
- got this while testing locally
Liquid Exception: no implicit conversion of Float into String in /_layouts/post.html
jekyll 3.8.1 | Error: no implicit conversion of Float into String
- the problem was that I used the date as my post title:
---
layout: post
title: 27.12
published: false
---
- changed it to
day27
and it works fine