
开发环境
cpf099
这个作者很懒,什么都没留下…
展开
-
调试过程中需要使用的工具
分享使用到的几款好用的工具1. xshell5——SSH 客户端,很难得的破解资源https://download.youkuaiyun.com/download/cpf099/107149122. FlashFXP——FTP软件 解压点击FlashFXP.exe即可使用https://download.youkuaiyun.com/download/cpf099/107149153. Beyond ...原创 2018-10-11 23:29:18 · 761 阅读 · 0 评论 -
Ubuntu下tftp服务搭建
1、安装软件包sudo apt-get install tftpd tftp xinetd2、建立配置文件在/etc/xinetd.d/下建立一个配置文件tftpsudo vi /etc/xinetd.d/tftp内容如下service tftp { socket_type = dgram protocol = udp wait = yes u...原创 2018-11-18 21:42:08 · 342 阅读 · 0 评论 -
配置 NFS 网络文件系统
方法一:1、进行 NFS 服务器端与客户端的安装root@ubuntu:/# sudo apt-get install nfs-kernel-server nfs-common rpcbind提示是否需要继续: YDo you want to continue [Y/n]? Y安装客户端的作用是可以在本机进行 NFS 服务的测试。2、配置 portmaproot@ubu...原创 2018-11-18 21:46:49 · 727 阅读 · 0 评论 -
虚拟机ubuntu硬盘扩容
首先需要关闭虚拟机,选择虚拟机设置,点击硬盘,选择扩展经过上一步之后,硬盘就会增加添加的那么多空间,但是是未分配的空间网上有在Ubuntu下面使用gpatred工具 apt-get install gparted,更改根目录的空间,测试过,无法更新。可以通过下载gparted-live-0.29.0-1-i686.iso,加载到CD中,开机从CD启动来运行gpartedhttp...原创 2018-11-18 21:51:34 · 422 阅读 · 0 评论 -
安装交叉编译器arm-arago-linux-gnueabi-gcc
安装交叉编译工具链:https://releases.linaro.org/components/toolchain/binaries/6.2-2016.11/arm-linux-gnueabihf/https://developer.arm.com/open-source/gnu-toolchain/gnu-rm1、首先以root用户登入2、复制arm-arago-linux-g...原创 2018-11-18 21:54:41 · 3714 阅读 · 0 评论 -
Ubuntu安装Samba
1、安装 samba 服务sudo apt-get install samba cifs-utils smbfs 2、配置 samba编辑 /etc/samba/smb.conf 配置文件sudo vi /etc/samba/smb.conf①、将里面的security = user前面的#号去掉②、在文件末尾添加以下内容[samba]comment = Hom...原创 2018-11-18 21:58:27 · 659 阅读 · 0 评论 -
.vimrc 一些配置
" 设置包括vundle和初始化相关的runtime pathset rtp+=~/.vim/bundle/Vundle.vimcall vundle#rc()call vundle#begin()" 另一种选择,指定一个vundle安装插件的路径" call vundle#begin('~/some/path/here')" 让Vundle管理插件版本,必须添加Plugin ...原创 2018-11-22 00:23:47 · 315 阅读 · 0 评论 -
git 常用命令
git 配置:.gitconfig[user]name = cpf099email = cpf09@163.com [color]ui = true [alias]lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(b...原创 2018-11-23 22:16:36 · 179 阅读 · 0 评论