安装 centos

centos 下载地址

这里我选择 安装 标准版本的

CentOS-7.0-x86_64-DVD-1503-01.iso

配置 ssh免登录

[[post/14.新语言学习记录/linux/ssh/linux免登陆踩坑]]

ubuntu

换 apt源教程

1
 vi /etc/apt/sources.list

注意版本: 我的是 ubuntu 20.04TLS, 其他版本可能不一样。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10

# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse

ubuntu安装 xrdp

参考博客

wsl2 ubuntu开启声音

参考文章

pulseaudio下载

按照文中来进行配置

然后配置 pulse_server

1
2
3
$ sudo vim /etc/profile
# 末尾再增加一行,注意IP地址应当与之前写的DISPLAY变量后面使用的一致
export PULSE_SERVER=tcp:192.168.112.1

使用xrdp工具连接,就可以播放声音了

wsl 设置 http 代理 使用 clash for windows

参考链接

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
# WSL通过Win访问网络,所以WSL的网关指向的是Windows,DNS服务器指向的也是Windows,设置WSL的proxy为win的代理ip+端口即可
# WSL中的DNS server在/etc/resolv.conf中查看,该文件是由/etc/wsl.conf自动生成的。
# 如果关闭了wsl.conf中自动生成resolve.conf并自行修改了resolve.conf,DNS nameserver并不是本机win ip
# 需要开启wsl.conf的自动生成,再运行以下命令
# https://zhuanlan.zhihu.com/p/153124468

# 添加到环境变量设置中,例如~/.zshrc
export hostip=$(cat /etc/resolv.conf |grep -oP '(?<=nameserver\ ).*')
export https_proxy="http://${hostip}:7890"
export http_proxy="http://${hostip}:7890"