标签:centos
centos7 安装docker
docker安装 curl -fsSL https://get.docker.com -o get-docker.sh sudo sh get-docker.sh 启动docker sudo systemctl start docker 开机启动 systemctl enabl...
centos搭建emby
搭建EMBY https://emby.media/linux-server.html 替换EMBY源文件 删除原有的EMBY文件 rm -rf /var/lib/emby 下载EMBY搜刮包 wget -P /root https://drive.vox...
centos虚拟内存设置
centos虚拟内存设置 #查看内存 free -m #查看文件系统 df -h 增加虚拟内存 if 表示infile,of表示outfile,bs=1024代表增加的模块大小,count=16384000代表16...
centos下载文件命令
例如下载https://drive.voxhuang.workers.dev/2:/emby.zip链接文件至/root目录 wget -P /root https://drive.voxhuang.workers.dev/2:/emby.zip
centos压缩zip
安装命令 yum install -y unzip zip zip压缩命令 例如压缩/var/lib/emby zip -r emby.zip /var/lib/emby
CentOS7 修改默认时区为 北京时间
首先同步时间 yum install -y ntpdate ntpdate -u cn.pool.ntp.org 然后设置中国时区(北京时间) timedatectl set-timezone Asia/Shanghai 重启OS reboot