Centos
前言
Centos学习记录
网络配置查看网络配置1234567ip addr ifup ens33 #启用网络ifconfig cd /sbin 可以用 ls | grep "if" 查看是否存在ifconfig命令sudo yum install net-tools
配置文件位置1cat /etc/sysconfig/network-scripts/ifcfg-eth33
12345678910DEVICE=eth0 #描述网卡对应的设备别名BOOTPROTO=static #设置网卡获得ip地址的方式,选项可以为为static,dhcp或bootpONBOOT=yes #系统启动时是否设置此网络接口,设置为yes时,系统启动时激活此设备IPADDR=12.168.1.80 #只有网卡设置成static时,固定IPNETMASK=255.255.255.0 #子网掩码GATEWAY=192.168.174.2 #网关DNS1=192.168.174.2 #DNSNETWORK=192.168.1.0 #网卡对应的网络地址,也就是所属的网段
1 ...
Git
前言
Git学习记录
Git 工具更新12git --versiongit update-git-for-windows
Git config
配置config配置git个人信息和生成ssh密钥打开git bash,输入
1234git config --listgit config --global user.name "JUNO"git config --global user.email "JUNOYAPIPI@gmail.com"ssh-keygen -t rsa -C "JUNOYAPIPI@gmail.com"
然后在GitHub导入SSH密匙(C:\Users\JUNO.ssh\id_rsa.pub)
文件名过长错误1git config --system core.longpaths true
禁止git自动将lf转换成crlf1git config --global core.autocrlf false
提交时转换为LF,检出时不转换1git config --global core. ...
Wechat
文章说明
windows上wechat多开脚本
双开
将下面保存成.bat文件(注意:有中文需要保存ANSI编码格式/第一级路径需要加双引号)start C:"Program Files (x86)”\Tencent\WeChat\wechat.exestart C:"Program Files (x86)”\Tencent\WeChat\wechat.exe
防撤回
GitHub:防撤回补丁
GitHub:Mac防撤回补丁
GitHub:Mac微信功能拓展
GitHub:防撤回逻辑
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick Start创建一个新发布 Create a new post1$ hexo new "My New Post"
More info: Writing
启动服务 Run server12$ hexo server$ hexo s && hexo g
More info: Server
生成静态文件 Generate static files12$ hexo generate$ hexo s && hexo g
More info: Generating
部署到远程仓库 Deploy to remote sites12$ hexo deplo ...