Win10 及Win11系统如何查看子系统内文件
在windows 版本升级后提出了WSL的概念,现在为WSL2,如何访问,在打开方式上直接输入以下命令
\\wsl$
在使用WSL安装docker后不建议再映射文件到Windows子系统,文件需要按照上面仍然可用访问。
http代理配置
1、安装httpd:yum install httpd
2、启动:service httpd restart
3、http若链接不上则查看防火墙是否阻塞,若已开启则需关闭防火墙
查看:systemctl status firewalld
service firewalld status
临时关闭:systemctl stop firewalld
永久关闭:systemctl disable firewalld
打开:
systemctl restart firewalld
systemctl enable firewalld
4、修改selinux的config文件:SELINUX=disable
5、http链接在浏览器中查看是否可以登录
6、可以尝试先临时关闭再永久关闭
httpd.conf 文件添加
ProxyRequests On
<Proxy *>
Order allow,deny
Allow from all
# Deny from 127.0.0.1
# Deny from 10.10.10.0/24
</Proxy>
开启 HTTP 代理 - enable mod_proxy_http
开启 FTP 代理 - enable mod_proxy_ftp
开启 HTTPS 代理 - enable mod_proxy_connect
在00-proxy.conf中添加
LoadModule access_compat_module modules/mod_access_compat.so
Maven 配置
<mirror>
<id>Central</id>
<mirrorOf>*</mirrorOf>
<name>Central</name>
<url>http://10.10.10.66:18081/nexus/content/repositories/central/</url>
<blocked>false</blocked>
</mirror>
<mirror>
<id>Releases</id>
<mirrorOf>Releases</mirrorOf>
<name>Releases</name>
<url> http://10.10.10.66:18081/nexus/content/repositories/releases/</url>
<blocked>false</blocked>
</mirror>
npm 配置
npm config set registry https://registry.npmmirror.com/
yarn config set registry https://registry.npmmirror.com/
npm config set proxy=http://10.10.10.66:3128
查看配置
npm config list //查看基本配置
npm config list -l //查看所有配置