- Download Git:
https://github.com/git-for-windows/git/releases/download/v2.34.1.windows.1/Git-2.34.1-64-bit.exe
- Run git bash in upload folder:
git config --global user.name "nonnichen"
git config --global user.email “i@nonnix.com”
git init
git add . - Show status and commit:
git status
git commit -m "first commit" - Setup remote repository:
git remote add origin https://github.com/nonnichen/nonnichen.github.io
- WEB Authentication then push:
git push -u origin master
Enjoy!
关闭合盖休眠
sudo vi /etc/systemd/logind.conf
修改
#HandleLidSwitch=suspend
为
HandleLidSwitch=ignore
保存后
reboot
or
systemctl restart systemd-logind
查看整个系统的硬件信息
lshw
将输出内容写入文件:
lshw > hw.txt
概要方式显示:
lshw -short
查看CPU信息概要:
lscpu
CPU详细信息:
cat /proc/cpuinfo
CPU型号:
cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c
物理CPU颗数:
cat /proc/cpuinfo | grep physical | uniq -c
CPU是否支持64bit(结果大于0, 说明支持64bit计算. lm指long mode, 支持lm则是64bit):
cat /proc/cpuinfo | grep flags | grep ' lm ' | wc -l
查看显卡信息
lspci |grep VGA
Nvdia:
lspci | grep -i nvidia
nvidia-smi -L
查看该型号推荐的显卡驱动版本:
sudo dpkg --list | grep nvidia-*
查看内存信息
内存支持类型:
sudo dmidecode -t memory |grep -A16 "Memory Device$" |grep "Type:"
每个内存条的大小:
sudo dmidecode -t memory |grep -A16 "Memory Device$" |grep "Size:"
查看硬盘信息
硬盘大小和数量:
sudo fdisk -l |grep "Disk /dev/sd"
硬盘型号:
sudo hdparm -i /dev/sda |grep "Model"
查看PCI信息
lspci -v
查看Ubuntu系统体系结构
uname -a
这是我给朋友们安装直播推流主机时,使用 OBS Studio 的一般配置,具体优化需要使用者自己去尝试优化调整。
推流主机配置与直播主机相比,性能要求不高,推荐使用 Intel 的10代或更高 CPU,普通显卡甚至核显,接口一般需要主板或者显卡提供有 HDMI 接口。
OBS 目前提供 Windows10, MacOS10.13+ 和 Linux 版本,下载网址:
https://obsproject.com
配置如图:
保存重启OBS,然后在主窗口右键,选择添加推流源,比如直播的话就是“显示器采集”
THUNDER
拉取迅雷 DOCKER 镜像:
docker pull nonnichen/nonnixunlei
docker run -d --name Thunder --restart=always -v /mnt/download:/data -p 8899:80 nonnichen/nonnixunlei:latest
获取迅雷激活码 ACTIVE CODE:
docker logs Thunder
前去迅雷网站绑定激活码:
http://yuancheng.xunlei.com
浏览器访问:
http://Server IP:8899
UBUNTU:
apt-get update
apt install docker.io
拉取Registry:
docker run -d -p 5000:5000 --name registry --restart=always -v /opt/data/registry:/tmp/registry registry
查看端口监听:
ps -ef|grep 5000
查看 registry 等镜像:
docker images
给需要上传的镜像打TAG:
docker tag {imageID} IP:5000/imagename
e.g.
docker tag 8090qbcdbalala 192.168.0.55:5000/nonnikms
上传镜像到仓库:
docker push 192.168.0.55:5000/nonnikms
从私有仓库拉取镜像:
docker pull 192.168.0.55:5000/nonnikms
查看 Registry 中所有镜像信息:
curl http://192.168.1.160:5000/v2/_catalog
查看 Registry 中标签列表:
curl http://192.168.1.160:5000/v2/smokeping/tags/list
注:
若 docker push 提示:http: server gave HTTP response to HTTPS client 错误的解决方法:
在客户端 /etc/docker 下添加 daemon.json
{
"insecure-registries": ["192.168.0.55:5000"]
}
重启docker:
systemctl restart docker