Page 1 of 1

Linux/Proxmox compatibility

Posted: Mon Feb 26, 2024 7:49 am
by raffaele.vall
Hi,
it is written everywhere that S1 N97 is compatible with Linux and due to the double Ethernet card also with pfsense.
I need to install Proxmox to also virtualize pfsense but the seller told me that the fan speed would not be managed according to the load/temperature of the CPU if I install Linux.
It is true?
If so, it is not true that it is compatible with Linux :o

Re: Linux/Proxmox compatibility

Posted: Mon Feb 26, 2024 9:09 pm
by fbollon
Bonjour
Proxmox installé depuis quelques jours avec 2 VM dont une avec plusieurs containers Docker et je n'ai pas de problèmes de température, bon il fait froid en ce moment ;)

Code: Select all

nvme-pci-0100
Adapter: PCI adapter
Composite:    +52.9°C  (low  = -273.1°C, high = +82.8°C)
                       (crit = +84.8°C)

coretemp-isa-0000
Adapter: ISA adapter
Package id 0:  +44.0°C  (high = +105.0°C, crit = +105.0°C)
Core 0:        +44.0°C  (high = +105.0°C, crit = +105.0°C)
Core 1:        +44.0°C  (high = +105.0°C, crit = +105.0°C)
Core 2:        +44.0°C  (high = +105.0°C, crit = +105.0°C)
Core 3:        +44.0°C  (high = +105.0°C, crit = +105.0°C)

Re: Linux/Proxmox compatibility

Posted: Tue Feb 27, 2024 10:03 am
by raffaele.vall
ok, thanks for the reply, I hope I don't have any problems :D

Re: Linux/Proxmox compatibility

Posted: Fri Mar 01, 2024 8:15 am
by raffaele.vall
Were you able to read the fan speed? With Fancoltrol LMsensors I can't read it, the temperature never drops below 50° even with very low workloads. I have the impression that the fan always has the same speed and does not change it with the temperature. Did you succeed?

Re: Linux/Proxmox compatibility

Posted: Wed Mar 13, 2024 3:01 pm
by raffaele.vall
Sei riuscito a leggere la velocità della ventola? Con Fancoltrol LMsensors non riesco a leggerlo, la temperatura non scende mai sotto i 50° anche con carichi di lavoro molto bassi. Ho l'impressione che la ventola abbia sempre la stessa velocità e non la cambi con la temperatura. Ci sei riuscito?



fbollon wrote: Mon Feb 26, 2024 9:09 pm Bonjour
Proxmox installé depuis quelques jours avec 2 VM dont une avec plusieurs containers Docker et je n'ai pas de problèmes de température, bon il fait froid en ce moment ;)

Code: Select all

nvme-pci-0100
Adapter: PCI adapter
Composite:    +52.9°C  (low  = -273.1°C, high = +82.8°C)
                       (crit = +84.8°C)

coretemp-isa-0000
Adapter: ISA adapter
Package id 0:  +44.0°C  (high = +105.0°C, crit = +105.0°C)
Core 0:        +44.0°C  (high = +105.0°C, crit = +105.0°C)
Core 1:        +44.0°C  (high = +105.0°C, crit = +105.0°C)
Core 2:        +44.0°C  (high = +105.0°C, crit = +105.0°C)
Core 3:        +44.0°C  (high = +105.0°C, crit = +105.0°C)

Re: Linux/Proxmox compatibility

Posted: Fri Mar 22, 2024 3:06 pm
by raffaele.vall
It would be nice if someone more knowledgeable could provide an answer. Thank you :D

Re: Linux/Proxmox compatibility

Posted: Mon Mar 25, 2024 6:39 am
by BobSmith123
I run the latest ubuntu desktop on my S1, and I can confirm that the fan does speed up under heavy loads. you can test it by overloading the cpu with:

Code: Select all

dd if=/dev/zero of=/dev/null
open multiple ssh session into your s1 and run the above to stress test the cpu.

Re: Linux/Proxmox compatibility

Posted: Thu Mar 28, 2024 12:01 pm
by raffaele.vall
BobSmith123 wrote: Mon Mar 25, 2024 6:39 am I run the latest ubuntu desktop on my S1, and I can confirm that the fan does speed up under heavy loads. you can test it by overloading the cpu with:

Code: Select all

dd if=/dev/zero of=/dev/null
open multiple ssh session into your s1 and run the above to stress test the cpu.
Many tks Bob for reply, I will try.
It's strange that the temperature never drops below 48/49 °C.
Other mini PCs I have also reach 40°C with low load
:(

Re: Linux/Proxmox compatibility

Posted: Thu Oct 17, 2024 12:51 am
by jcmichot
non /dev/zero a peu d'interet pour un stress de CPU, vous devez utiliser /dev/random

dd if=/dev/random of=/dev/null bs=1M &

et vous le lancez 4 fois (4 cpu).

Sous FreeBSD l'ACPI a un problème pour le retour des températures, mais le module kernel coretemp fonctionne très bien.

root@minipc:~ # kldload coretemp
root@minipc:~ # sysctl -a | grep temperature
dev.cpu.3.temperature: 47.0C
dev.cpu.2.temperature: 47.0C
dev.cpu.1.temperature: 47.0C
dev.cpu.0.temperature: 45.0C

avec les 4 dd de /dev/random vous montez rapidement à environ 60.0C et l'on entend bien le ventilateur qui change de rythme.

root@minipc:/ # sysctl -a | grep temperature
dev.cpu.3.temperature: 62.0C
dev.cpu.2.temperature: 61.0C
dev.cpu.1.temperature: 59.0C
dev.cpu.0.temperature: 59.0C

Donc je sais pas d'ou vous tenez le fait que le ventilateur ne change pas de vitesse avec Linux mais c'est faux. (J'ai testé sous Debian et pas qu'avec FreeBSD sur un un ACEMAGIC S1 N97).

JC