npm默认使用的源是 ttps://registry.npmjs.org/ ,在国内使用,延迟比较大。还可能导致速度非常慢。这个配置可以修改。
查看默认的源
npm config get registry
https://registry.npmjs.org/
...
今天需要检查一下,定时任务,发现,文件 /var/log/cron.log 不存在,最后了解到 debian 10 默认是没有开启 cron 日志。
查找 cron 相关的配置文件
find /etc -name "*.conf" | xargs grep "cron.log"
...
今天在服务器上,设置了一个静态的ip,最后发现有两个ip地址,一定是配置出了问题。
通过 ip a 查看
ip a | grep inet
inet 127.0.0.1/8 scope host lo
inet6 ::1/128 scope host
in...
window 下使用 git 使用 sock5 代理的配置。可以直接在 cmd 下输入下面的配置,前提记得安装好git
git config --global https.proxy socks5://127.0.0.1:1080
git config --global http.prox...
centos8 后,对于网络的操作。使用 nmcli 命令,比如修改了网络的配置文件,可以使用 nmcli c reload 重启。
[root@localhost ~]# nmcli --help
Usage: nmcli [OPTIONS] OBJECT { COMM...
rocky linux使用用国内的镜像速度会快很多,这里使用阿里云的国内镜像。
sed -e 's|^mirrorlist=|#mirrorlist=|g' \
-e 's|^#baseurl=http://dl.rockylinux.org/$contentdir|baseurl...
刚刚安装了 rocky 8.5 ,使用的是 最下的版本安装。安装执行了以下命令。
[root@localhost ~]# hostnamectl
Static hostname: localhost.localdomain
Icon name: compu...