suyanhj
suyanhj
 新配置的项目,发布的时候,会卡在这里 我在发布的目标主机看代码已经传过来了,但并没有部署到目标目录,软链接也没有创建 想知道的是,这个数据准备的操作具体是指什么?
 在执行写的shell命令时,这里的过程感觉太笼统了,并不是很直观的能看到出现的问题,以及错误的上下文,不知道其他人有没有观察上下文来排错的习惯。。感觉不是很方便 这几天都是一步一个配置,手动试出来的,感觉对新使用的不是太友好 还有一点小建议是,如果可以的话,能把代码检出目录也能手动指定就好了,有时候自动指定的目录不是专门存放数据盘,还得用docker运行的方式来指定数据存放目录,这点也不是很方便
问题1:在源码编译opencc时,默认cmakefile中指定的cmake版本是3.5,编译时实际上会遇到找不到依赖包的问题,如图:   解决: 需要手动下载一份最新的cmake,我用3.26版本就能正常编译 问题2:如果编译时遇到 c++14报错的问题,也需要改cmakefile,指定c++版本 解决: g++ -std=c++11 -E - < /dev/null // 可检查本地gcc支持哪个版本的c++,可以试试c++11,都是向下兼容 sed -ri-bak 's#(.*-std=)c++14$#\1c++11#' CMakeLists.txt // 非交互式修改配置文件
问题1:在源码编译opencc时,默认cmakefile中指定的cmake版本是3.5,编译时实际上会遇到找不到依赖包的问题,如图:  解决: 需要手动下载一份最新的cmake,我用3.26版本就能正常编译 问题2:如果编译时遇到 c++14报错的问题,也需要改cmakefile,指定c++版本 解决: g++ -std=c++11 -E - < /dev/null // 可检查本地gcc支持哪个版本的c++,可以试试c++11,都是向下兼容 sed -ri-bak 's#(.*-std=)c\+\+14$#\1c\+\+11#' CMakeLists.txt //非交互式修改配置文件
  After running the latest jbuncle/nexus-repository-composer there is nothing else configured except the storage and recommended image source
Hello developer, I am learning to use this software, but I have encountered some problems when compiling, I want to use the graphical interface, I refer to the pdf document...
修复python3.8版本以后的latform模块弃用linux_distribution函数,改为使用distro模块
In gke 1.29.4, when deploying with reference to the official documentation, you will encounter two problems. 1. Autopilot does not allow the use of hostpath, which corresponds to the part...
### Problem I found that almost all webhooks in the source code are configured by default to be registered to Kubernetes via URL. However, after the service is deployed to...