关于GpuMall平台提供的学术加速服务说明

​ 

服务目的:本网络加速服务旨在为学术研究者提供一个更快捷的访问途径,专门针对 GitHub 和 HuggingFace 以及边缘站点的相关学术资源网站,此服务旨在解决用户在访问这些学术资源时可能遇到的网络速度缓慢问题。
服务范围:加速服务仅限于上述学术资源网站,不包括其他非学术用途的网站。
服务性质:本服务为非商业性质的学术支持工具,不设服务水平协议(SLA),因此我们不承诺服务的稳定性和可靠性。
服务终止:在极端情况下,如遭遇恶意攻击或必须遵守相关法律法规时,我们有权随时终止本加速服务。

使用方法​

目前学术资源加速仅对于 高可用云 建设,社区云 暂不支持。
体验一下:https://gpumall.com/login?type=register&source=sifou

学术资源加速需根据不同区域使用不同加速地址。

注:开启加速可能会导致 apt-get update 命令报错 Unsupported proxy configured,关闭加速后即可恢复正常。

宁夏一区​

开启http以及git加速

临时开启http加速

export http_proxy="nxdc01.gpumall.com:36930"
export https_proxy="nxdc01.gpumall.com:36930"

永久开启http加速

cat >>/root/.bashrc<export http_proxy="nxdc01.gpumall.com:36930"
export https_proxy="nxdc01.gpumall.com:36930"
EOF
source /root/.bashrc

永久开启git加速

git config --global http.proxy "nxdc01.gpumall.com:36930"
git config --global https.proxy "nxdc01.gpumall.com:36930"

图片

关闭http以及git加速

关闭临时http加速

unset http_proxy && unset https_proxy

关闭永久http加速

sed -i '/export http_proxy="nxdc01.gpumall.com:36930"/d' /root/.bashrc
sed -i '/export https_proxy="nxdc01.gpumall.com:36930"/d' /root/.bashrc
source /root/.bashrc

关闭永久git加速

git config --global --unset http.proxy
git config --global --unset https.proxy

你可能感兴趣的:(关于GpuMall平台提供的学术加速服务说明)