logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

编译内核报错 No rule to make target ‘debian/canonical-certs.pem‘ 或 ‘canonical-revoked-certs.pem‘ 的解决方法

Ubuntu 编译 Linux 内核经常会遇到如下错误:如果报错 canonical-certs.pem:如下:make[1]: *** No rule to make target 'debian/canonical-certs.pem', needed by 'certs/x509_certificate_list'.Stop.make: *** [Makefile:1868: certs]

#linux
修改git远程仓库的名字方法

在网页端修改仓库名称在本机操作如下:方案一:git remote set-url origin [new_git_address]方案二:git remote rm origingit remote add origin [new_git_address]然后验证url的更改情况:git remote -v初次 push 的时候需要指定源git push --set-upstream origin

#git
Github Copilot Chat申请,安装,及常见问题解决

Copilot Chat 是Copilot X 引入的预览功能,不但可以像Chatgpt一样聊天,也可以解释代码,bug 修复,也可以生成单元测试。是一个非常有吸引力的功能。

文章图片
#github
一张表读懂Conda 和 Pip的区别

理解Conda 和 Pip的区别表格比较补充解释表格比较condapip种类二进制文件wheel 文件或源码是否需要编译器否是包类型任何只支持python创建环境是否,需要依赖virtualenv 或者env检查依赖是否包来源Anaconda repo and cloudPython Package Index (PyPI)含有的Python包数量小大安装方法独立安装随python解释器安装补充解

#python#pip
ftp 卡在 150 Opening data channel for directory listing of “/“

问题在 Ubuntu 使用命令行 ftp 时,使用 ls 命令会出现卡在 150 Opening data channel for directory listing of "/" 的情况。如下$ ftp 192.168.0.100Connected to 192.168.0.100.220-FileZilla Server 0.9.58 beta230 Logged onRemote syste

#linux
使用man命令,出现 ”No manual entry for” 的解决办法

在使用man 命令的时候,经常会出现没有相关条目的情况。

#linux
centos 7安装新版本 gcc

centos 7 安装 gcc 和 g++ 的命令分别如下:yum install gccyum install gcc-c++但是安装的版本是:(GCC) 4.8.5 20150623 (Red Hat 4.8.5-44)安装更高版本的 gcc 有两种方式这里以 gcc 7.3 为例1. 手动编译具体步骤参考:build gcc from source on centos 7可以编译成功,也可以

#linux#centos
暂无文章信息