Veitch Kyrie's Blog

Thinking will not overcome fear but action will.

遇到的问题之could not read symbols

问题分析及解决

遇到的问题—could not read symbols: Archive has no index; run ranlib to add one 原因是一开始编译的点o文件用了32位编译器,然后重新编译的时候用了64位编译器,所以连接的时候出错,只需要make clean之后 重新make即可

遇到的问题之Your dtc is too old, please upgrade to dtc 1.4 or newer

遇到问题分析及解决

遇到的问题—Your dtc is too old, please upgrade to dtc 1.4 or newer 解决方法: 安装device-tree-compiler apt-get install device-tree-compiler,安装后就可以成功编译。

解决ubuntu(16.04版本)和windows电脑之间无法复制粘贴问题

跨平台复制问题

解决ubuntu(16.04版本)和windows电脑之间无法复制粘贴问题 STEP1 sudo apt-get autoremove open-vm-tools sudo apt-get install open-vm-tools-desktop STEP2 reboot ubuntu system 如果还不行 1.修改注释VMware config文件:sudo vim...

[转]linux lsof命令详解 简介 lsof(list open files)是一个列出当前系统打开文件的工具。在linux环境下,任何事物都以文件的形式存在,通过文件不仅仅可以访问常规数据,还可以访问网络连接和硬件。所以如传输控制协议 (TCP) 和用户数据报协议 (UDP) 套接字等,系统在后台都为该应用程序分配了一个文件描述符,无论这个文件的本质如何,该文件描述符为应用程序与...

[转]30个极大提高开发效率的Visual Studio Code插件

gdb 单步调试

gdb 单步调试 /> b file:the line of function you want to debug(b set breakpoint) /> r (run the function) /> s(step into current line’s sub function and don’t step out ) /> n (continute r...

bcompare有效期问题

打破规则,强制保存

破解bcompare 虚拟机安装的是正版的becompare软件,license30天有效期,如果过期了还想继续使用,执行下面操作: sudo rm -rf ~/.config/bcompare/registry.dat

C++之Queue用法总结

打破规则,强制保存

C++ Queue用法总结 **queue Queue —>定义一个queue变量** //以下为C的实现,作为对比 typedef int Position; typedef struct QNode *PtrToQNode; struct QNode { ElementType *Data;//存储元素的数组 Position Front, Rear;//队列...

查看端口状态的命令lsof

端口状态

查看端口状态的命令lsof 使用方法: lsof -i:80 #80对应HTTP端口 lsof -i:443 #443对应HTTPS端口 端口正常会输出状态 。

Curl获取重定向连接内容

Curl获取重定向连接内容 curl -I www.baidu.com //显示 HTTP 头,而不显示文件内容,可以使用 -I 选项 curl -i www.baidu.com //也可以同时显示 HTTP 头和文件内容,使用 -i 选项: 如果直接使用 curl 打开某些被重定向后的链接,这种情况下就无法获取我们想要的网页内容。例如: curl http://codebelief...