不需要。Ubuntu更换主板之后,网络不能用,需要重新配置网络但不需要重装,首先要查看新主板的mac地址dmesg|grepeth,修改网络信息,该配置文件是/etc/udev/rulesd, 文件名是:70-persistent-netrules,修改mac对应的接口名称即可。
Lm_sensors是一个 命令 行工具,用于显示所有芯片传感器数据的当前读数,包括CPU温度。默认情况下,Ubuntu LInux没有安装Lm_Sensors,因此,我们必须自己安装它们。
bob@bob-PC:~$ sudo apt install lm-sensors
检测硬件
接下来,我们需要检测安装在电脑上的硬件监控芯片。现在我们可以开始检测电脑的硬件传感器了:
bob@bob-PC:~$ sudo sensors-detect
# sensors-detect revision 6284 (2015-05-31 14:00:33 +0200)
# System: VMware, Inc VMware Virtual Platform [None]
# Board: Intel Corporation 440BX Desktop Reference Platform
# Kernel: 4150-30Ubuntu-generic x86_64
# Processor: Intel(R) Core(TM) i7-8700 CPU @ 320GHz (6/158/10)
This program will help you determine which kernel modules you need
to load to use lm_sensors most effectively It is generally safe
and recommended to accept the default answers to all questions,
unless you know what you're doing
Some south bridges, CPUs or memory controllers contain embedded sensors
Do you want to scan for them This is totally safe (YES/no): yes
Silicon Integrated Systems SIS5595 No
VIA VT82C686 Integrated Sensors No
VIA VT8231 Integrated Sensors No
AMD K8 thermal sensors No
AMD Family 10h thermal sensors No
AMD Family 11h thermal sensors No
AMD Family 12h and 14h thermal sensors No
AMD Family 15h thermal sensors No
AMD Family 16h thermal sensors No
AMD Family 17h thermal sensors No
AMD Family 15h power sensors No
AMD Family 16h power sensors No
Intel digital thermal sensor Success!
(driver `coretemp')
Intel AMB FB-DIMM thermal sensor No
Intel 5500/5520/X58 thermal sensor No
VIA C7 thermal sensor No
VIA Nano thermal sensor No
Some Super I/O chips contain embedded sensors We have to write to
standard I/O ports to probe them This is usually safe
Do you want to scan for Super I/O sensors (YES/no): yes
显示cpu温度
可以通过一下命令查看温度数据了:
bob@bob-PC:~$ sensors
iwlwifi_1-virtual-0
Adapter: Virtual device
temp1: +330°C
pch_skylake-virtual-0
Adapter: Virtual device
temp1: +385°C
BAT0-acpi-0
Adapter: ACPI interface
in0: +1245 V
coretemp-isa-0000
Adapter: ISA adapter
Package id 0: +390°C (high = +1000°C, crit = +1000°C)
Core 0: +390°C (high = +1000°C, crit = +1000°C)
Core 1: +380°C (high = +1000°C, crit = +1000°C)
thinkpad-isa-0000
Adapter: ISA adapter
fan1: 0 RPM
temp1: +380°C
temp2: N/A
temp3: +00°C
temp4: +00°C
temp5: +00°C
temp6: +00°C
temp7: +00°C
temp8: +00°C
BAT1-acpi-0
Adapter: ACPI interface
in0: +1249 V
acpitz-acpi-0
Adapter: ACPI interface
temp1: +380°C (crit = +1280°C)
还可以使用watch命令实时关注:
bob@bob-PC:~$ watch sensors
使用图形化工具psensor显示cpu温度
使用Psensor,您可以检查以下各项:
主板、CPU传感器和NVidia GPU的温度
硬盘驱动器的温度
风扇的转速
监视CPU使用情况
最新版本的Psensor还为Ubuntu提供了一个applet指示器,因此在Ubuntu上更容易监控硬件温度。您可以选择在顶部面板中显示温度。它甚至可以在温度超过极限时发送桌面通知。
我们可以使用下面的命令安装Psensor:
bob@bob-PC:~/Desktop$ sudo apt install -y psensor
打开ubuntu的launchpad,在里面找到psensor,打开该应用就可以看到多个传感器:
使用图形化工具hardinfo
Hardinfo是Linux中用于在图形化界面中显示硬件信息的工具。可以使用它检测cpu的温度。以下命令安装hardinfo:
bob@bob-PC:~/Desktop$ sudo apt install hardinfo
# 运行一下命令打开hardinfo
bob@bob-PC:~/Desktop$ sudo hardinfo
总结
在本教程中,我们将学习如何从命令行和桌面获取Ubuntu Linux上的CPU温度。
哎,生命在于折腾。。。
新加一块儿ssd,单独用来装linux系统,几天来专门装这个环境,反复装有几十回,终于把环境装个靠谱能的训练的环境出来。不记录一下对不起这些天的辛苦。
两个大方面:
一、装linux系统
装linux系统碰到如下几个问题:
1、bios设置如何配置
主板是华硕Z390P,此主板很不靠谱,不推荐使用。
此主板官网文档不支持linux系统,但是通过一些方法可以安装ubuntu1804或ubuntu1904。centos8不能安装,唉。
其中一个关碍就是bios配置,就z390p这块板子,要改csm兼容模式,disable=>enable,相对于默认设置仅此一处更改,千万别乱改,什么快速启动之类的都不用改。
2、ssd配置
ssd是nvme协议的,本身linux支持起来就不太正常,需要做如下处理:
分三个区:
- 先分一个1G的出来,刷成fat32格式,不选挂在,安装系统时默认装引导(此分区极其重要,必不可少)
- 再分一个60G左右的空间,ext4文件格式,挂在为/
- 剩下空间一个区,ext4文件格式,挂在为/home
3、安装ubuntu时配置
拔网线!按界面 *** 作步骤该设什么设什么,一定要拔网线。
4、进了系统后,拔这个界面全部取消选定
下一篇,将会把第二篇中的模型用tensorflow200API重写一遍,体会一下两个版本api的区别,检测一下性能提升,当前性能18s训练100step,captcha模型训练出来需要10-12小时,不知20能提升多少。
安装ssh服务
在Ubuntu服务器上安装ssh
安装方法:
apt-get install ssh
安装完成后验证是否SSH安装成功
验证方法:
在命令行模式下执行命令:ssh -V
结果显示ssh版本证明成功
查看Server端phenix用户家目录下是否存在隐藏目录"ssh"
在安装ssh完成后,进入phenix用户家目录,使用命令:ls -al 查看目录结构中是否存在隐藏目录“ssh”
若存在,则 *** 作正确,若不存在,解决方法如下:
1,按照步骤一,重新安装一遍ssh服务
2,若安装成功后还不存在"ssh"目录,则使用mkdir ssh 在/home目录下新建一个ssh目录
一般来说,多数系统在安装完ssh服务后,默认都会自动建立“ssh”隐藏目录,只有少数需要手动创建。
以上就是关于Linux安装基本命令全部的内容,包括:Linux安装基本命令、微星主板安装ubuntu时bios设置、硬盘安装ubuntu等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)