51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

linux

linux 怎么查看文件的编码格式

linux 怎么查看文件的编码格式

厉飞雨 阅读(66) 评论(0) 赞(6)

linux 怎么查看文件的编码格式 vim 在编辑模式 输入 :set fileencoding ![](http://static.51tbox.com/static/2024-08-29/col/1e2899f8e5ebca22584de5fb4130edad/2308ab9ee70e4dd1aab32dc29c056ff2.png.jpg) 然后就显示编码了 !...

SS linux ss 命令 (netstat )

SS linux ss 命令 (netstat )

厉飞雨 阅读(65) 评论(0) 赞(4)

netstat 和 ss 对比 <https://mp.weixin.qq.com/s/idiSUqrY6EIZIdbXNRA6qA> netstat -tcnlp |grep 8080 ss 命令由 iproute2 软件包提供(`yum install iproute`)、 ``` ss -tunlp ``` iproute 2 包中的命令可以...

linux sysctl 命令(内核参数) 修改虚拟内存映射上限

linux sysctl 命令(内核参数) 修改虚拟内存映射上限

厉飞雨 阅读(74) 评论(0) 赞(4)

sysctl 可以 动态地修改内核的运行参数 sysctl -a #查看所有的内核参数 (1)如果想永久修改,需要 在 目录 下 /etc/sysctl.d/ 创建一个 .conf 文件 比如我们在es 服务中 想要修改虚拟内存映射的上限 可以: cat > /etc/sysctl.d/es.conf <<EOF vm.m...

linux 自定义命令 yy

linux 自定义命令 yy

厉飞雨 阅读(62) 评论(0) 赞(7)

比如我经常使用 egrep -v "^#|^$" /baimei/softwares/elasticsearch-7.17.5/config/elasticsearch.yml ![](http://static.51tbox.com/static/2024-08-29/col/736a1cd1a5a766fe589fb445157992fc/0...

nexus安装(linux安装 nexus)

nexus安装(linux安装 nexus)

厉飞雨 阅读(68) 评论(0) 赞(5)

nexus搭建maven私有仓库教程(nexus安装) 在 202上配置 ![](http://static.51tbox.com/static/2024-08-29/col/e983ab4fad64db65cb7c5750a44868a1/6535fea2f0c147e3858e34959ea3b0f5.png.jpg) 10.0.0.202:8081 admin ad...

linux mv 命令

linux mv 命令

厉飞雨 阅读(66) 评论(0) 赞(4)

把 es.sh 改成 jdk.sh ![](http://static.51tbox.com/static/2024-08-29/col/d2198541b19848828ecd4263c23addc9/615cfeaaaa0e4b419cbaedbcccc93a89.png.jpg)

linux journalctl 命令

linux journalctl 命令

厉飞雨 阅读(66) 评论(0) 赞(6)

journalctl journalctl是 systemd 的 辅助组件,其主要作用是管理系统的事件日志记录。 journalctl可以查看所有的系统日志文件,由于日志信息量很大,journalctl还提供了各种参数帮助用户更快速的定位到日志信息。 \*\*查看某些服务的日志:journalctl -u \*\*\*.service journalctl -u htt...

maven安装 (linux)

maven安装 (linux)

厉飞雨 阅读(60) 评论(0) 赞(7)

Linux安装maven 这里在 要在 jenkins 服务器 201上装 maven 。 wget https://mirrors.tuna.tsinghua.edu.cn/apache/maven/maven-3/3.8.8/binaries/apache-maven-3.8.8-bin.tar.gz ### 1、下载Maven 3安装包 官网:h...

linux安装jdk (安装 oracle 正版 jdk)

linux安装jdk (安装 oracle 正版 jdk)

厉飞雨 阅读(107) 评论(0) 赞(7)

jdk 安装 jdk 我放到了这个网盘上: https://url69.ctfile.com/d/253469-55980211-e7bb3a?p=2206 (访问密码: 2206) ```hljs css rpm -ivh jdk-8u181-linux-x64.rpm ``` ![](http://static.51tbox.com/static/2024-08-...

linux cut 命令详解

linux cut 命令详解

厉飞雨 阅读(62) 评论(0) 赞(7)

linux cut 命令 cut - remove sections from each line of files cut 命令从文件的每一行剪切字节、字符和字段并将这些字节、字符和字段输出。 这里白眉用 切割字符来演示下: ``` echo abcd3ef | cut -c 1-5 ``` ![](http://static.51tbox.com/static/2...