随笔分类 - linux
摘要:tmux 最简操作流程 1.tmux new -s my_session 新建会话tmux new -s my_session 2.Ctrl+b d 按下快捷键Ctrl+b d将会话分离 3.tmux attach -t my_session (tmux attach-session -t my_s
阅读全文
摘要:Shell学习 参考资料:https://www.runoob.com/linux/linux-shell-variable.html 变量 变量的命名规则和其他语言基本一样 your_name="qinjx" echo $your_name echo ${your_name} 推荐使用带花括号的
阅读全文
摘要:redis安装 参考资料 https://www.cnblogs.com/-mo-/p/11487797.html 简单安装 ########################## ubuntu安装 #################################### $sudo apt-get
阅读全文
摘要:elk搭建 参考资料: https://www.cnblogs.com/adawoo/p/11665532.html jdk安装 https://www.cnblogs.com/cheesebar/p/9126171.html elk安装 1. 关闭防火墙和selinux systemctl sto
阅读全文
摘要:docker操作笔记 https://www.runoob.com/docker/docker-container-usage.html 菜鸟教程 安装 使用官方安装脚本自动安装 安装命令如下: curl -fsSL https://get.docker.com | bash -s docker -
阅读全文