CPU、显卡天梯图

CPU天梯图

CPU天梯图

移动端笔记本电脑显卡天梯图

移动端笔记本电脑显卡天梯图

桌面级台式电脑显卡天梯图

桌面级台式电脑显卡天梯图

树莓派使用无线连接网络

不使用netplan

1. 安装工具

1
$ sudo apt install ifupdown

2. 修改/etc/network/interfaces文件

1
$ sudo vim /etc/network/interfaces
# ifupdown has been replaced by netplan(5) on this system.  See
# /etc/netplan for current configuration.
# To re-enable ifupdown on this system, you can run:
#    sudo apt install ifupdown

auto wlan0
allow-hotplug wlan0
#iface wlan0 inet static
iface wlan0 inet dhcp
#       address 192.168.1.52
#       netmask 255.255.255.0
        wpa_conf /etc/wpa_supplicant/wpa_supplicant.conf

3. 修改/etc/wpa_supplicant/wpa_supplicant.conf文件

1
$ sudo vim /etc/wpa_supplicant/wpa_supplicant.conf
ctrl_interface=/var/run/wpa_supplicant
#ap_scan=1

network={
       ssid="SSID"
       scan_ssid=1
       psk="password"
       priority=5
}

4. 重启网卡

1
$ sudo ifdown wlan0

回显:

……

hexo的使用

安装Hexo

初始化文件夹

1
2
3
4
$ hexo init myblog

$ cd myblog
$ npm install

安装主题

1
2
3
$ git clone git@github.com:forsigner/fexo.git themes/fexo

$ npm install hexo-deployer-git --save

常用hexo命令

1
2
3
$ hexo g
$ hexo s
$ hexo d

迁移hexo需要移动的文件(夹)

_config.yml
package.json
scaffolds/
source/
themes/
1
2
3
$ npm install hexo-cli -g
$ npm install
$ npm install hexo-deployer-git --save  // 文章部署到 git 的模块