常用linux命令
常用:
1 | pwd 查看路径 |
查询进程:
1 | netstat -anp | grep 端口号 |
清除进程:
1 | kill -9 端口号 |
nuxt打包:
1 | npm run build |
nuxt启动:
1 | nohup npm run start > run.log 2>&1 & |
防火墙新增端口:
1 | firewall-cmd --zone=public --add-port=端口号/tcp --permanent |
git
1 | 初始化: |
配置windows默认换行字符
1 | git config --global core.autocrlf false |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 CY的笔记!