随笔分类 - 基础设施
摘要:本地创建的工程项目如何提交到GitHub指定仓库中...... cargo new projectName #本地创建工程 cd projectName git init #初始化gi本地仓库 git add . #把本地全部文件加载到git本地仓库 (也可以指定文件加载) git commit -
阅读全文
摘要:直接官网下载,linux版本就可以,在执行时提示 kairuszhang@kairuszhang:~/下载/meld-3.22.2/bin$ ./meld Meld requires GtkSourceView 4.0 or higher. GLib-GIO-Message: 23:02:19.77
阅读全文
摘要:在Rust中,#[inline]是一个属性(attribute),用于告诉编译器对函数进行内联展开。 内联展开是一种编译器优化技术,它将函数的代码直接嵌入到调用处,而不是通过函数调用的方式执行。这样做可以减少函数调用的开销,提高程序的执行效率,但也会增加代码的体积。 在Rust中,#[inline]
阅读全文
摘要:不要忘记加参数 -R 循环文件夹每个文件!! songroom@DESKTOP-MEDPUTU:~/rust_test$ sudo chmod -R 777 ~/rust_test
阅读全文
摘要:安装教程和相应的百度网盘文件可自行搜索下载: 安装过程遇到的 问题1:Association时,提示:The following error occurred while appliying SystemRoot: 拒绝访问。 解决方法:gpedit.msc打开,找到:计算机配置-->Windows
阅读全文
摘要:python3-xmlschema python3-elementpath 安装不上,无法定位 使用pip install xmlschema && pip install elementpath 安装 libsdl2.dev无法安装问题,,使用aptitude install libsdl2.de
阅读全文
摘要:问题产生:MobaXterm中ssh登录后,ftp文件传输服务器登陆账户权限不被允许进行文件上传, Mobaxterm出现permission denied的解决办法 解决方案:1、提升登录账户的权限为root权限(引出问题ssh默认不允许root权限账户登录),可以解决问题; 2、修改ftp指定目
阅读全文
摘要:参考博文:https://developer.aliyun.com/mirror/centos rm /etc/yum.repos.d/CentOS-* 所有文件全部删除 wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun
阅读全文
摘要:https://blog.csdn.net/qq_44323306/article/details/122009436
阅读全文
摘要:提示有链接更新问题, 进入文件->信息,右侧属性-->编辑指向文件的链接,断开超链接
阅读全文
