slzxf的头像-霜林轩
山东管理员
这家伙很懒,什么都没有写...
N01※更改homebrew镜像源-霜林轩

N01※更改homebrew镜像源

1> homebrew 安装地址 /bin/bash -c '$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)' 2> 替换镜像源 以阿里云的镜像为例 ① 替换brew.git cd '$(brew --r...
N02※迁移wordpress网站-霜林轩

N02※迁移wordpress网站

1> 导出phpMyAdmin里面的数据库文件 2> 打包并下载服务器上的网页文件 3> 在新的服务器的数据库中导入数据库文件 4> 上传网页文件 5> 修改wp-config.php文件 6> 替换域名 在p...
L04※vps搭建moon#为Zerotier传输加速-霜林轩

L04※vps搭建moon#为Zerotier传输加速

1> 配置服务器端 ① 安装配置ZeroTier客户端 curl -s https://install.zerotier.com/ | sudo bash wget https://mirrors.condor.vip/zerotier/zerotier-install.sh && bash zer...
2个月前
1110
L05※centos7.6 安装 MongoDB-霜林轩

L05※centos7.6 安装 MongoDB

1> 下载安装包 wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.6.21.tgz 2> 解压文件并移动到相应的文件夹 tar -zxvf mongodb-linux-x86_64-3.6.21.tgz mv mongodb-linux...
L06※Linux 安装并部署 nodejs-霜林轩

L06※Linux 安装并部署 nodejs

1> 安装nodejs mkdir /usr/local/nodejs && cd /usr/local/nodejs # x86系统 wget https://mirrors.condor.vip/nodejs/node-v18.15.0-linux-x64.tar.xz # 国内 wget https://nodejs....
L07※Linux安装chrome-霜林轩

L07※Linux安装chrome

1> Centos安装chrome ① 安装方法1 a. 修改yum源 cd /etc/yum.repos.d/ vi google-chrome.repo [google-chrome] name=google-chrome baseurl=http://dl.google.com/linux/chrome/rpm/sta...
4个月前
1151
L08※定时执行文件-霜林轩

L08※定时执行文件

1> 设置个人任务调度 crontab -e 30 8 * * * /usr/local/anaconda3/bin/python3 /data/jupyter/scrapy/weather.py 项目含义范围第一个*一小时当中的第几分钟0-59第二个*一天当中的第几个小时...
2年前
561
L10※centos用Dnsmasq搭建dns服务器-霜林轩

L10※centos用Dnsmasq搭建dns服务器

1> 安装Dnsmasq yum -y install dnsmasq 2> 备份默认的Dnsmasq的配置文件 cp /etc/dnsmasq.conf /etc/dnsmasq.conf.bak 3> 配置上游DNS文件的路径 vim /etc/dnsmasq.conf ① Vim中搜索...
L11※linux安装docker-霜林轩

L11※linux安装docker

官方网站 1> ubuntu ① 卸载旧版本 for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do sudo apt-get remove $pkg; done ② 安装 apt 依...
4个月前
3790
L12※通过bind自建doh服务-霜林轩

L12※通过bind自建doh服务

1> 安装bind ① 安装软件 apt-get install bind9 bind9utils dnsutils ② 编辑主配置文件 # vi /etc/bind/named.conf.options options { directory '/var/cache/bind'; // If there is a fir...