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

Linux

Linux

  • 1
  • centos7使用谷歌验证器

    wahaha
    阅读(3)赞(0)

    本次演示的使用场景:当普通用户通过ssh登录系统之后需要sudo su -命令切换到root身份时需要使用谷歌验证器提供验证即可,而不需要输入用户密码 1、安装包 yum install -y epel-release yum instal...

    Linux

  • 2
  • centos7上部署wireguard vpn

    wahaha
    阅读(36)赞(0)

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

    Linux

  • 3
  • centos7使用sftp

    wahaha
    阅读(35)赞(0)

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

    Linux

  • 5
  • vsftpd踩坑日记

    wahaha
    阅读(62)赞(0)

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

    Linux

  • 6
  • centos7挂载windows共享目录

    wahaha
    阅读(281)赞(0)

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

    Linux

  • 7
  • centos7安装filebrowser

    wahaha
    阅读(296)赞(0)

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

    Linux

  • 8
  • centos7部署rsync

    wahaha
    阅读(295)赞(0)

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

    Linux

  • 9
  • centos7源码安装ffmpeg6.1

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

  • 10
  • centos7安装nfs

    wahaha
    阅读(304)赞(0)

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