apt相关的命令笔记 apt-install update 更新安装包缓存列表 apt-cache policy nodejs 查看nodejs 缓存列表中有哪些版本 apt-cache search 命令,查看命令在哪个包下,然后可以 apt-get install 安装哪个包
npm install,npm 镜像源 参考:https://blog.csdn.net/zsd_31/article/details/121182676 参考:https://blog.csdn.net/qq940853667/article/details/70837646 安装 ubuntu安
openssl 生成keypair,证书 mkdir conf openssl req -new -newkey rsa:4096 -days 365 -subj "/CN=localhost" \ -nodes -x509 -keyout conf/auth.key -out co
Linux环境使用apt-get安装telnet、curl、ifconfig、vim、ping等工具【转】 参考 https://www.cnblogs.com/east7/p/15834866.html 当在Linux服务器执行Telnet命令时,如果提示command not found:
linux 目录分层 1、系统级 /bin,/sbin 2、用户应用级 /usr/bin,/usr/sbin 3、用户手动应用级 /usr/local 一般,手动安装程序放到/usr/local/下面 4、用户自己的家 /root, /home/普通用户
关于springboot项目dockerfile构建镜像的相关问题${0} ${@} 参考:https://github.com/aneasystone/weekly-practice/blob/main/notes/week011-spring-boot-on-docker/README.md
Linux 命令行文本操作快捷键 参考:https://vra.github.io/2018/01/27/linux-cmdline-edit-shortcuts/ 可能有些人不知道,Linux命令行也有一些方便文本操作的快捷键,如跳到行首的快捷键是Ctrl-a,,跳到行尾的快捷键是Ctrl-e,删
springboot yml 配置文件的占位符真实的值在哪里配置 springboot yml 配置文件的站位符 类似 enableAutoCheckLink: ${ONEBLOG_APP_ENABLE_CHECK_LINK:false} 真实的值在哪里配置 Spring Boot的YAML配置文件
linux shell中$0,$?,$!等的特殊用法 参考:https://www.cnblogs.com/viviane/p/11101643.html 一、Shell脚本中$0、$?、$!、$$、$*、$#、$@等的意义说明 (1)$$ Shell本身的PID(ProcessID,即脚本运行的当