会员
周边
众包
新闻
博问
闪存
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
极简世界
博客园
首页
新随笔
联系
订阅
管理
2024年7月24日
docker 启动各类软件
摘要: docker 启动各类软件
阅读全文
posted @ 2024-07-24 22:26 XuTingYin
阅读(33)
评论(0)
推荐(0)
2024年7月15日
linux 常用实战命令
摘要: 查看系统磁盘信息 lsblk -d -o name,size,rota -d :这个选项代表“详细模式”(display in a tree-like format),它会以树状图的形式显示所有设备,但只显示那些拥有子设备的设备。 -o : 这个选项后面跟的是输出选项,用来指定要显示哪些列 rota
阅读全文
posted @ 2024-07-15 10:52 XuTingYin
阅读(28)
评论(0)
推荐(0)
2024年7月12日
MQTT初探(一)
摘要: MQTT 概述 MQTT(Message Queuing Telemetry Transport,消息队列遥测传输协议)是一种基于发布/订阅(publish/subscribe)模式的"轻量级"通讯协议,该协议构建于TCP/IP协议上,由IBM在1999年发布。MQTT最大优点在于,可以以极少的代码
阅读全文
posted @ 2024-07-12 17:56 XuTingYin
阅读(44)
评论(0)
推荐(0)
2024年7月11日
docker & docker-compose 离线安装
摘要: 离线安装docker & docker-compose
阅读全文
posted @ 2024-07-11 16:03 XuTingYin
阅读(970)
评论(0)
推荐(1)
docker 安装 nginx 并部署 vue 项目
摘要: docker 启动 nginx、部署 vue 项目
阅读全文
posted @ 2024-07-11 15:58 XuTingYin
阅读(500)
评论(0)
推荐(0)
2023年6月27日
FTP服务器搭建
摘要: # 创建FTP服务器 vim ftp_server.sh ```shell #!/bin/bash # 安装vsftpd yum install -y vsftpd # 启动vsftpd服务 systemctl start vsftpd # 设置开机自启动 systemctl enable vsft
阅读全文
posted @ 2023-06-27 16:58 XuTingYin
阅读(68)
评论(0)
推荐(0)
2023年3月13日
gnome-shell 内存占用过高问题排查处理
摘要: 查看内存占用TOP10 ps aux | head -1;ps aux |grep -v PID |sort -rn -k +4 | head -10 查看gnome-shell 内存使用情况 ps auxwww |grep gnome-shell 临时解决gnome-shell 内存占用过高问题
阅读全文
posted @ 2023-03-13 15:51 XuTingYin
阅读(3487)
评论(0)
推荐(0)
2023年3月12日
SQL 基础知识
摘要: SQL(Structured Query Language)“结构化查询语言”,它是对关系型数据库的操作语言。它可以应用到所有关系型数据库中。例如MySQL、Oracle、SQL Server、PostgressSQL、DB2等。
阅读全文
posted @ 2023-03-12 08:57 XuTingYin
阅读(92)
评论(0)
推荐(0)
2023年2月17日
Docker 生产环境常用命令
摘要: Docker 常用命令归总
阅读全文
posted @ 2023-02-17 17:17 XuTingYin
阅读(47)
评论(0)
推荐(0)
2023年2月10日
linux常见问题排查
摘要: 查看用户账号 # 查看系统所有用户 cut --delimiter : --fields 1 /etc/passwd 或者 cut -d : -f 1 /etc/passwd # 查看拥有特殊权限的用户 awk -F: '$3==0{print $1}' /etc/passwd # 查询可以远程登录
阅读全文
posted @ 2023-02-10 14:09 XuTingYin
阅读(130)
评论(0)
推荐(0)
下一页
公告