博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux系统重要源码、工具归档
阅读量:4108 次
发布时间:2019-05-25

本文共 1404 字,大约阅读时间需要 4 分钟。

virtualBOX + ubuntu系统

说明:以下操作是个人新装了kylin系统,没有任何开发工具和配置的操作
1 vim安装:

sudo apt-get install vim

2 git安装:

apt install git

3 make安装:

sudo apt install make

sudo apt-get install libncurses5-dev libncursesw5-dev //支持make menuconfig图形化配置

报错:

guang@guang-kylin:~/Develop/linux-stable$ sudo apt install make

[sudo] password for guang:

E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)
E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?
guang@guang-kylin:~/Develop/linux-stable$ sudo apt install make-guile

E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)

E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?
guang@guang-kylin:~/Develop/linux-stable$

参考:

4 安装ARM-Linux-GCC工具链

sudo apt-get install gcc-arm-linux-gnueabi

gcc-arm-linux-gnueabi与gcc-arm-linux-gnueabihf的区别

安装uboot工具

sudo apt install u-boot-tools

5 安装qume模拟器:

sudo apt install qemu-system-arm

6 卸载QEMU(选项步骤):

7 git下载linux内核源码(国外源地址,很慢,慢到怀疑人生,不知老铁有没有其它办法,如果不想使用git,下载压缩包就快得多):

git clone git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git

8 git下载u-boot源码:

git clone git://git.denx.de/u-boot.git u-boot

9 busybox网站:

git下载busybox源码:

git clone git://busybox.net/busybox.git

切换到稳定版本:

git checkout remotes/origin/1_NN_stable

更新源码到最新:

git pull

11 QT

12 libevent

git clone
重要:

13 openwrt

转载地址:http://jfvsi.baihongyu.com/

你可能感兴趣的文章
Spring MVC异常处理
查看>>
PHP 7 的五大新特性
查看>>
PHP底层的运行机制与原理
查看>>
深入了解php底层机制
查看>>
PHP中的stdClass 【转】
查看>>
XHProf-php轻量级的性能分析工具
查看>>
PHP7新特性 What will be in PHP 7/PHPNG
查看>>
比较strtr, str_replace和preg_replace三个函数的效率
查看>>
PHP编译configure时常见错误 debian centos
查看>>
configure: error: Please reinstall the BZip2 distribution
查看>>
OpenCV gpu模块样例注释:video_reader.cpp
查看>>
【增强学习在无人驾驶中的应用】
查看>>
OpenCV meanshift目标跟踪总结
查看>>
那些人生“开挂”的程序员,都在干什么?
查看>>
影响科学圈的那些计算机代码
查看>>
乐视视频 App 图标改为“欠 122 亿”,网友:我在别家分红包,却在你家随份子!...
查看>>
为何程序员总喜欢写技术博客,看完恍然大悟...
查看>>
如何判断一家互联网公司要倒闭了?
查看>>
想快速上手机器学习?来看下这个 GitHub 项目!
查看>>
GitHub 标星 3.6k,一本开源的深度学习中文教程!
查看>>