Linux 第2页
L40※ Linux部署webdav服务-霜林轩

L40※ Linux部署webdav服务

1> 下载配置WebDav 开源地址为:https://github.com/hacdias/webdav mkdir /data/webdav mkdir /usr/local/webdav && cd /usr/local/webdav wget https://mirrors.condor.vip/webdav...
slzxf的头像-霜林轩slzxf4个月前
2960
L46※Linux安装nps服务-霜林轩

L46※Linux安装nps服务

github: https://github.com/ehang-io/nps/ 1> 下载nps安装包 mkdir /usr/local/nps_0.26.10 && cd /usr/local/nps_0.26.10 wget https://mirrors.condor.vip/nps/v0.26.10/linux_am...
slzxf的头像-霜林轩slzxf4个月前
700
L21※linux添加中文字体-霜林轩

L21※linux添加中文字体

1> centos 修改中文字体 ① 查看所有字体 yum install fontconfig fc-list ② 查看中文字体 fc-list :lang=zh ③ 找到win10中需要的字体, 上传字体到/root ④ 把字体复制到/usr/share/fonts...
slzxf的头像-霜林轩slzxf4个月前
2480
L20※Linux安装和配置frp服务-霜林轩

L20※Linux安装和配置frp服务

1> 安装和配置frps ① 下载软件 cd /usr/local # 官方下载地址:https://github.com/fatedier/frp/releases wget https://github.com/fatedier/frp/releases/download/v0.37.1/frp_0.37.1_lin...
slzxf的头像-霜林轩slzxf4个月前
2130
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
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
L03※centos搭建jupyter-霜林轩

L03※centos搭建jupyter

1> 下载Anaconda wget https://repo.anaconda.com/archive/Anaconda3-2021.11-Linux-x86_64.sh wget https://mirrors.condor.vip/anaconda/Anaconda3-2021.11-Linux-x86_64.sh # 国内 2> ...
slzxf的头像-霜林轩slzxf4个月前
2721
L37※Dockerfile-霜林轩

L37※Dockerfile

docker build -t docker_name . 1> ubuntu FROM ubuntu:20.04 # 更换镜像源 RUN sed -i 's@http://.*archive.ubuntu.com@http://mirrors.tuna.tsinghua.edu.cn@g' /etc/apt/sources.list RUN...
slzxf的头像-霜林轩slzxf4个月前
931
L49※重置MariaDB或MySQL密码-霜林轩

L49※重置MariaDB或MySQL密码

1> 停止数据库服务器 sudo systemctl stop mysql sudo systemctl stop mariadb 2> 跳过数据库密码验证 sudo mysqld_safe --skip-grant-tables --skip-networking & mysql -uroot use ...
slzxf的头像-霜林轩slzxf6个月前
270
L50※开启nginx浏览目录及美化-霜林轩

L50※开启nginx浏览目录及美化

1> 下载fancyindex模块 cd /usr/local wget https://hub.condor.vip/ngx-fancyindex/ngx-fancyindex-0.5.2.tar.xz tar xvf ngx-fancyindex-0.5.2.tar.xz 2> 重新编译nginx 添加ngx-fancyi...
slzxf的头像-霜林轩slzxf6个月前
450