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

Linux

Linux

  • 1
  • centos7上部署wireguard vpn

    wahaha
    阅读(2)赞(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挂载windows共享目录

    wahaha
    阅读(255)赞(0)

    首先centos需要安装cifs-utils [root@centos ~]# yum -y install cifs-utils 挂载命令 [root@centos ~]# mount -t cifs -o username='cento...

    Linux

  • 6
  • centos7安装filebrowser

    wahaha
    阅读(271)赞(0)

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

    Linux

  • 7
  • centos7部署rsync

    wahaha
    阅读(273)赞(0)

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

    Linux

  • 8
  • centos7源码安装ffmpeg6.1

    wahaha
    阅读(285)赞(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

  • 9
  • centos7安装nfs

    wahaha
    阅读(287)赞(0)

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

    Linux

  • 10
  • centos7添加静态路由

    wahaha
    阅读(360)赞(0)

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