Wed. Jul 22nd, 2026

linux

linux安装kodexplorer

1.从可道云kodexplorer官网下载最新的版本,并解压到web根目录(/var/www/html) sudo wget http://static.kodcloud.com/update/download/kodexplorer4.36.zip(可下载至最新版本) sudo unzip kodexplorer4.36.zip -d /var/www/html/ cd /var/www/html/(进入kodexplorer web目录) 2.kodexplorer在安装的过程中需要对一些目录有写的权限,为此,web服务器用户(www-data对于基于Debian的系统)必须要拥有app、data、config目录的权限。运行以下命令完成: //#kodexplorer 目录下…

centos 网络配置

登陆系统后登陆 切换到网卡的配置文件目录/etc/sysconfig/network-scripts下 # cd /etc/sysconfig/network-scripts 查看网卡名称 ip addr 编辑一个网卡名字的配置文件,如ifcfg-网卡名 (ifcfg-em1) vi ifcfg-em1 把onboot=no 改成 onboot=yes…

centos8 更换国内源 阿里源

centos8更换国内源 1备份旧的配置文件 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup 2下载新的 CentOS-Base.repo 到 /etc/yum.repos.d/ wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-8.repo 3替换部分字段(非阿里云机器需要做) sed…