You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
629 B

3 years ago
  1. # cloud-computing-course-final
  2. 所需云资源:一台云主机uhost
  3. ucloud:
  4. 账号10195501414@stu.ecnu.edu.cn
  5. 密码password1
  6. 镜像fianl
  7. 通过install.sh安装code-server服务
  8. `sh install.sh`
  9. 运行code-server服务
  10. `code-server`
  11. 更改.config/code-server/config.yaml配置文件
  12. 重启code-server服务
  13. `sudo systemctl restart code-server@$USER`
  14. 通过http://ip:443通过网页访问
  15. 在云主机上配置编程环境,比如c语言、c++就安装GCC
  16. `yum install "gcc-c++.x86_64" -y`
  17. 并且在VSCODE上安装相应的模块,就能编译运行代码了