首页
壁纸
Search
1
adb install -r -l -t -s -d -g 的解释
39,594 阅读
2
给孙小姐的一封情书
3,270 阅读
3
Windows SDK version 8.1 下载地址
144 阅读
4
C#,Aforge调用摄像头,实时处理图像,灰度化/二值化
124 阅读
5
handsome常用操作
113 阅读
取次花丛懒回顾
默认分类
C#
MySQL
LabVIEW
Java
Android
PHP
Python
handsome
相册
百度地图
嵌入式
嵌入式Ubuntu
linux
Search
标签搜索
handsome
C#
Git
王某人
累计撰写
61
篇文章
累计收到
17
条评论
首页
栏目
取次花丛懒回顾
默认分类
C#
MySQL
LabVIEW
Java
Android
PHP
Python
handsome
相册
百度地图
嵌入式
嵌入式Ubuntu
linux
页面
壁纸
搜索到
61
篇与
的结果
2023-11-10
cmd更改编码方式
更改为GBK编码(默认就是GBK编码)chcp 936更改为UTF8编码chcp 65001查看cmd窗口charset:方法1在命令行标题栏上点击右键,选择"属性"->“选项”,查看当前的charset。查看cmd窗口charset:方法2在cmd窗口中输入命令:chcp查表:字符内码 描述437 MS-DOS 美国英语936 简体中文(GBK)(默认)950 繁体中文(大五码)850 多语种 (MS-DOS Latin1)65000 UTF-7 Unicode65001 UTF-8 Unicodecmd窗口设置charset=utf-8执行命令:CHCP 65001cmd窗口设置charset=gbk执行命令:CHCP 936cmd带设置charset参数启动Start Run (Win+R)Type cmd /K chcp 65001
2023年11月10日
9 阅读
0 评论
1 点赞
2023-11-08
i.mx6ull | 开发板系统更新笔记
暂无简介
2023年11月08日
7 阅读
0 评论
0 点赞
2023-11-05
arm Ubuntu | 安装中文包
Ubuntu中文显示乱码输出乱码,为了使调试程序方便安装中文语言包使其支持中文apt install language-pack-zh-hans配置语言环境变量vim /etc/environment在下面添加如下两行:LANG="zh_CN.UTF-8" LANGUAGE="zh_CN:zh:en_US:en"保存后,执行命令:sudo locale-gen完成后重启即可正常显示reboot嵌入式板子无需安装字体了吧
2023年11月05日
5 阅读
0 评论
0 点赞
2023-11-01
编译 openwrt 及初始配置-及部分排错
参考上篇,搭建命令行代理克隆git clone https://github.com/openwrt/openwrt.git逐条输入下列命令(及时验证是否安装成功):sudo apt-get install g++sudo apt-get install libncurses5-devsudo apt-get install zlib1g-devsudo apt-get install bisonsudo apt-get install flexsudo apt-get install unzipsudo apt-get install autoconfsudo apt-get install gawksudo apt-get install makesudo apt-get install gettextsudo apt-get install gccsudo apt-get install binutilssudo apt-get install patchsudo apt-get install bzip2sudo apt-get install libz-devsudo apt-get install asciidocsudo apt-get install subversionsudo apt-get install sphinxsearchsudo apt-get install libtoolsudo apt-get install sphinx-commonsudo apt install gitgcc 要求 4.8 以上./scripts/feeds update -a错误1:fatal: unable to access 'https://git.openwrt.org/feed/telephony.git/': server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none新的 ca curl 不认识。解决方法:export GIT_SSL_NO_VERIFY=1或者 sudo apt-get updatesudo apt-get install ca-certificates错误2Build dependency: Please install the GNU C Compiler (gcc) 8 or laterBuild dependency: Please reinstall the GNU C Compiler (8 or later) - it appears to be brokenBuild dependency: Please install the GNU C++ Compiler (g++) 8 or laterBuild dependency: Please reinstall the GNU C++ Compiler (8 or later) - it appears to be brokenBuild dependency: Please install Python >= 3.7Build dependency: Please install Python >= 3.7Build dependency: Please install the Python3 distutils moduleBuild dependency: Please install the Python3 stdlib module不能在使用 ubuntu 16.0.4 编译了,改用 ubuntu 20.0.4 可以正常编译./scripts/feeds install -a配置make menuconfig选择
2023年11月01日
17 阅读
0 评论
1 点赞
2023-11-01
ubuntu windows 设置命令行代理 设置git代理
搭建代理服务器这玩意好像不能发设置代理代理命令公式export ALL_PROXY="socks5://代理服务器IP地址:代理端口"例如:export ALL_PROXY="socks5://127.0.0.1:1080" export all_proxy="socks5://127.0.0.1:1080" export http_proxy=http://192.168.41.217:10811 export https_proxy=http://192.168.41.217:10811取消设置的代理unset ALL_PROXY unset all_proxy unset http_proxy unset https_proxygit设置代理首先确认ip和端口,例如ip为127.0.0.1, 端口为1080, 打开终端,运行以下命令:git config --global http.proxy 'socks5://127.0.0.1:1080' git config --global https.proxy 'socks5://127.0.0.1:1080'查看:cat ~/.gitconfig发现是多了这两项配置[http]proxy = socks5://127.0.0.1:1080[https]proxy = socks5://127.0.0.1:1080git取消socks代理git config --global --unset http.proxy git config --global --unset https.proxywindows终端配置代理set HTTP_PROXY=http://127.0.0.1:10811 set HTTPS_PROXY=http://127.0.0.1:10811
2023年11月01日
6 阅读
0 评论
0 点赞
1
2
...
13