娃哈哈好喝-真的!
技术够用就行,吃好喝好睡好!

标签:Linux

Linux

  • 1
  • centos7上部署wireguard vpn

    wahaha
    阅读(3)赞(0)

    1、系统环境准备 需要装个kernel-plus的内核 yum源可以使用阿里的 yum install -y yum-utils epel-release yum-config-manager --setopt=centosplus.inc...

    Linux

  • 2
  • centos7使用sftp

    wahaha
    阅读(6)赞(0)

    1、创建目录 以/data/ftp这个目录为例 2、创建用户 先创建一个sftp组 groupadd ftpusers 创建ftpuser用户,要指定用户不能登录系统/sbin/nologin useradd -g ftpusers -d ...

    Linux

  • 4
  • vsftpd踩坑日记

    wahaha
    阅读(40)赞(0)

    vsftpd踩坑日记 运维都知道但凡能用其他工具代替ftp的绝对不会用ftp,没办法项目三方必须要用到ftp,所以就搭一个,过程就省略了,把配置贴出来,以及花了我几个小时踩的坑发出来给有需要的人 环境: os:centos7.9,yum源是...

    Linux

  • 5
  • centos7安装filebrowser

    wahaha
    阅读(272)赞(0)

    官网地址:https://filebrowser.org/installation 本次演示用传统方式安装,官网有docker方式部署 安装 [root@centos ~]# curl -fsSL https://raw.githubuse...

    Linux

  • 6
  • centos7部署rsync

    wahaha
    阅读(273)赞(0)

    1、服务端配置 安装rsync [root@centos ~]# yum -y install rsync 修改配置文件,如果这个文件没有可以自己创建,文件名字相同就可以 [root@centos ~]# vim /etc/rsyncd.c...

    Linux

  • 7
  • centos7源码安装ffmpeg6.1

    wahaha
    阅读(286)赞(0)

    首先安装依赖 1、安装nasm [root@centos ~]# wget https://www.nasm.us/pub/nasm/releasebuilds/2.16.03/nasm-2.16.03.tar.gz [root@cento...

    Linux

  • 8
  • centos7安装nfs

    wahaha
    阅读(287)赞(0)

    1、服务端 # 安装nfs [root@nfs-server ~]# yum -y install nfs-utils # 允许开机启动 [root@nfs-server ~]# systemctl enable rpcbind [root...

    Linux

  • 9
  • centos7添加静态路由

    wahaha
    阅读(360)赞(0)

    route常用选项和参数 常用选项 -A:设置地址类型; -C:打印将Linux核心的路由缓存; -v:详细信息模式; -n:不执行DNS反向查找,直接显示数字形式的IP地址; -e:netstat格式显示路由表; -net:到一个网络的路...

    Linux

  • 10
  • xargs参数详解

    wahaha
    阅读(411)赞(0)

    1、支持的参数列表 -a file 从文件中读入作为 stdin -e flag ,注意有的时候可能会是-E,flag必须是一个以空格分隔的标志,当xargs分析到含有flag这个标志的时候就停止。 -p 当每次执行一个argument的时...