takeshi567 wrote:
I do not know what exactly is fish shell
....
see the temperature values in linux
Sounds like you've jumped into some deeper bits of linux quite early in your journey ... so all credit to you for that. There's a learning curve that we all had climb, so you are not alone in that.
"fish" is a shell. A shell takes commands from the command line and passes them to the operating system which includes the kernel. When the user inputs a command, the shell returns the output that the command is asking for. The shell is just a program to achieve that output. The main shell in linux has been "bash" for many distributions, but there are plenty of other shells, "fish" being one of them. There's lots online about shells.
To find out what shell you are running, run:
To find out which shells are on your system run:
To change shells, for example to change your login shell to bash run:
Temperature in linux can be obtained from the lm-sensors program. After it's installed, run, as user:
and the output looks like the following, depending on your system of course:
Code:
[flipflop ~]$ sensors
nouveau-pci-0100
Adapter: PCI adapter
GPU core: 900.00 mV (min = +0.85 V, max = +1.00 V)
temp1: +47.0°C (high = +95.0°C, hyst = +3.0°C)
(crit = +105.0°C, hyst = +5.0°C)
(emerg = +135.0°C, hyst = +5.0°C)
acpitz-acpi-0
Adapter: ACPI interface
temp1: +27.8°C (crit = +119.0°C)
temp2: +29.8°C (crit = +119.0°C)
coretemp-isa-0000
Adapter: ISA adapter
Package id 0: +30.0°C (high = +80.0°C, crit = +100.0°C)
Core 0: +28.0°C (high = +80.0°C, crit = +100.0°C)
Core 1: +29.0°C (high = +80.0°C, crit = +100.0°C)