最新发布第3页
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...
slzxf的头像-霜林轩slzxf2个月前
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...
slzxf的头像-霜林轩slzxf2年前
850
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....
slzxf的头像-霜林轩slzxf4个月前
3020
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...
slzxf的头像-霜林轩slzxf4个月前
1151
L08※定时执行文件-霜林轩

L08※定时执行文件

1> 设置个人任务调度 crontab -e 30 8 * * * /usr/local/anaconda3/bin/python3 /data/jupyter/scrapy/weather.py 项目含义范围第一个*一小时当中的第几分钟0-59第二个*一天当中的第几个小时...
slzxf的头像-霜林轩slzxf2年前
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中搜索...
slzxf的头像-霜林轩slzxf2年前
651
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 依...
slzxf的头像-霜林轩slzxf4个月前
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...
slzxf的头像-霜林轩slzxf3个月前
2160
L13※centos 搭建ftp服务器-霜林轩

L13※centos 搭建ftp服务器

1> 安装vsftpd yum install -y vsftpd systemctl start vsftpd systemctl enable vsftpd 2> 为ftp创建用户 useradd ftpuser passwd ftpuser 3> 创建ftp文件目录 mkdir /home/ftpuser/d...
slzxf的头像-霜林轩slzxf2年前
1041
L14※ubuntu 修改ip地址-霜林轩

L14※ubuntu 修改ip地址

1> ubuntu 18.04 ① 修改配置文件/etc/network/interfaces vim /etc/network/interfaces auto lo iface lo inet loopback auto eth0 #设置自动启动eth0接口,eth0根据ifconfig中的网卡名进行...
slzxf的头像-霜林轩slzxf2年前
1421