Dev
linux 硬盘占用 查看
返回首页
搜索
linux 硬盘占用 查看
发表于
2020-04-16
|
更新于
2026-06-04
|
others
查看各硬盘剩余
1
df
查看各文件夹的占用
1
du -h -d 1 /home/
文章作者:
developer
文章链接:
http://example.com/2020/04/16/linux%20%E7%A1%AC%E7%9B%98%E5%8D%A0%E7%94%A8%20%E6%9F%A5%E7%9C%8B/
版权声明:
本博客所有文章除特别声明外,均采用
CC BY-NC-SA 4.0
许可协议。转载请注明来源
Dev
!
linux
硬盘占用
查看
上一篇
docker nginx 获取真实 客户端 ip
解决办法修改ports例如如下服务 123456789101112131415nginx: image: "nginx:alpine" ports: - target: 80 published: 80 protocol: tcp mode: host - target: 443 published: 443 protocol: tcp mode: host networks: backend: aliases: - "nginx" 其他介绍原文地址https://blog.csdn.net/fengyilin_henu/article/details/84912763 host模式和ingress模式介绍http://c.biancheng.net/view/3195.html 正常发布服务后,使用host模式更新服务 12345docker service update app_nginx \ --publish-rm 8...
下一篇
docker letsencrypt ssl
12345678# 创建docker run -it --rm --name certbot -v "app_nginx_ssl:/etc/letsencrypt" -v "/home:/mnt" certbot/certbot certonly -d hanhui.iguojin.com# 更新docker run -it --rm --name certbot -v "/root/resolv.conf:/etc/resolv.conf" -v "app_nginx_ssl:/etc/letsencrypt" -v "/home:/mnt" certbot/certbot renew# 直接创建docker run -it --rm --name certbot -v "app_nginx_ssl:/etc/letsencrypt" -v "/home:/mnt" certbot/certbot certonly --webroot -...
相关推荐
2022-12-26
kubuntu 卡住 如何重启-
按住ctrl + alt 依次按下 SysRq(PrScrn),R,E,I,S,U,B
2018-02-19
linux zip命令 压缩 不加目录
进入压缩目录 zip -r data.zip *
2018-07-03
linux 文本搜索 grep
实例 1php -i|grep php.ini 前面是命令 后面是要搜索匹配的值
2018-05-09
linux ubuntu 启用 ssh sftp
stfp底层使用ssh协议所以只要启用ssh即可网上一般的教程支离破碎,难以应用于实际工作以下给出正确做法 1234567891. 编辑配置文件vim /etc/ssh/sshd_config2. 具体内容PermitRootLogin truePasswordAuthentication yes 3. 重启sshservice sshd restart 发现有3个错误 123456Could not load host key: /etc/ssh/ssh_host_dsa_keyCould not load host key: /etc/ssh/ssh_host_ecdsa_keyCould not load host key: /etc/ssh/ssh_host_ed25519_key * Restarting OpenBSD Secure Shell server sshd Could not load host key: /...
2020-06-04
linux 用户
12groupadd www-datauseradd -g www-data www-data
2018-11-29
linux 创建软连接
1ln -s /data/wwwroot/default/storage/app/public storage
developer
AI相伴的开发者博客
文章
1023
标签
724
分类
35
Follow Me
公告
This is my Blog
目录
1.
查看各硬盘剩余
2.
查看各文件夹的占用
最新文章
pdf操作
2026-06-04
pdf按章节拆分到文件
2026-05-03
svg转png
2026-04-09
taro+tailwind开发记录
2026-04-07
hono js 使用记录
2026-03-31
搜索
数据加载中