首页
文章归档
1
Mysql8.0 恢复root权限
2
复制到剪切板
3
JS 中划线转驼峰
4
py-kms 激活步骤
5
JS sm4 国密加解密
Malson
累计撰写
100
篇文章
累计创建
55
个标签
累计收到
0
条评论
栏目
首页
文章归档
搜索
标签搜索
js
激活
py-kms
sm4
国密
卸载
pkg
关联查询
join
中文
正则
dock
mdadm
阵列
raid
文本
映射
ssh
thinkphp
伪静态
samba
php
golang
vue
crontab
http
nginx
mysql
javascript
coding
git
docker
html
mobile
移动端
textarea
css
linux
ffmpeg
centos
扩容
lvm
虚拟机
ubuntu
字体大小
微信浏览器
rem
surface
windows
宝塔
挂载
磁盘
homebrew
mac
随机
目 录
CONTENT
以下是
linux
相关的文章
2022-06-25
Linux 虚拟机扩容
操作虚拟机查看虚拟机磁盘当前大小[root@kvm01 ~]# qemu-img info /vm-images/vm1-clone.img image: /vm-images/vm1-clone.imgfile format: qcow2virtual size: 10G (11206127360
2022-06-25
107
0
0
Linux
2022-06-25
Linux 递归搜索文件内容
$ grep -rn '要搜索的内容' .
2022-06-25
87
0
0
Linux
2022-06-25
Linux 查找文件重复行
去除重复行$ sort file |uniq查找非重复行$ sort file |uniq -u查找重复行$ sort file |uniq -d统计$ sort file | uniq -c
2022-06-25
94
0
0
Linux
2022-06-25
Linux 使用 sed 命令批量替换文本里面的内容
sed -i 's/deb.debian.org/mirrors.aliyun.com/g' /etc/apt/sources.list
2022-06-25
104
0
0
Linux
2022-06-25
Linux 虚拟内存优先级
$ cat /proc/sys/vm/swappiness60该参数可以从0-100进行设置0就是最大限度使用内存,尽量不使用swap100就是积极使用swap这个具体的通过系统的算法进行确定
2022-06-25
84
0
0
Linux
2022-06-25
Linux 指定用户执行命令
$ su -s /bin/bash -c "command" username
2022-06-25
58
0
0
Linux
2022-06-25
Linux crontab输出屏蔽
1>/dev/null 2>&1 的含义shell 中可能经常能看到:>/dev/null 2>&1 命令的结果可以通过 %> 的形式来定义输出/dev/null 代表空设备文件> 代表重定向到哪里,例如:echo "123"
2022-06-25
131
0
0
Linux
2022-06-25
CURL 77 错误
错误提示curl: (77) error setting certificate verify locations: CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath: none解决方法$ apt install --reinstall ca-cer
2022-06-25
83
0
0
Linux
2022-06-25
Linux swap 虚拟内存分配公式
M = Amount of RAM in GB (以 GB 为单位的 RAM 量)S = Amount of swap in GB (以 GB 为单位的 swap 量)If M < 2S = M *2elseS = M + 2 and nerver less than 32 MB
2022-06-25
79
0
0
Linux
2022-06-25
Tmux基础命令
基础命令操作命令快捷键创建会话tmux new -s -分离会话tmux detachCtrl+b d会话列表tmux ls | tmux list-sessionCtrl+b s接入会话tmux attach -t <session-number | session-name>-杀死会
2022-06-25
94
0
0
Linux
1
2