docker警告WARING:No swap limit support

Ubuntu 20.04LTS

安装docker之后运行 docker info 出现报警:

root@k8s-node2:/home/k8s# docker info | grep Cgroup
Cgroup Driver: cgroupfs
WARNING: No swap limit support

要解决问题,需要修改/etc/default/grub文件

root@k8s-node2:/home/k8s# vim /etc/default/grub

找到 …

点击查看更多…

Nginx 开启目录浏览

image1

默认配置下Nginx 是不允许目录浏览的。

编辑 /etc/nginx/conf.d/default.conf

找到 location / { ……}

添加参数,并去除原有index 的定义配置。

location / {

autoindex on;

autoindex_localtime on;

}

点击查看更多…

git 命令设置代理

Centos 设置定时任务

1

  1. $ yum install crontabs

    $ systemctl enable crond

    $ systemctl start crond

  2. vim /etc/crontab

    在配置中添加规则

    59 0 * * * root /usr/bin/sarg

    0 12 * * * root /usr/bin/sarg

    0 18 * * * root /user/bin/sarg

  3. $ crontab /etc/crontab
    

  4. $ crontab -l
    

    .. raw:: html
    

    </p>

点击查看更多…

Ubuntu NTFS 硬盘无法写入

可能因为在挂载wimdows盘后,强制关机造成的,可使用
sudo ntfsfix /dev/***
来修复。其中,***为具体哪个盘,例如sudo ntfsfix /dev/sda4
点击查看更多…