
开发环境搭建
疯雨
活到老学到老
展开
-
vim 配置方便浏览linux内核文件
1.安装ctags+cscope2.下载vim插件 Source Explorer/NERD Tree/Tag List 网址:www.vim.org Scrips-->Bowse all -->在keyword中搜索上述三个插件并下载解压到~/.vim文件夹下3.vim 配置 打开vim配置文件,(ubuntu是在/etc/vim/vi原创 2015-04-29 11:27:49 · 1495 阅读 · 0 评论 -
ubuntu14.04安装tftp服务器
1.安装tftp服务sudo apt-get updatesudo apt-get install tftpd tftp xinetd2.建立tftp服务器目录,并修改权限sudo mkdir /tftpbootsudo chmod -R 777 /tftpboot/ 3.修改/etc/xinetd.d/tftp文件,如果如下目录没有tftp文件,则创建该文件命令如下原创 2015-06-06 02:40:12 · 6619 阅读 · 7 评论 -
虚拟机ubuntu14.04系统使用samba与win7文件共享
1.安装samba服务器sudo apt-get install samba cifs-utils samba-common2. 建立共享文件夹并修改权限mkdir /home/sharechmod 777 /home/share3.修改配置文件vim /etc/samba/smb.conf在文件最后添加:[share] comment = share原创 2015-06-06 03:10:15 · 7133 阅读 · 0 评论 -
ubuntu14.04 nfs服务器搭建
1. 安装NFS服务器sudo apt-get install nfs-kernel-server(安装nfs-kernel-server时,apt会自动安装nfs-common和portmap)2配置nfssudo vim /etc/exports 在末尾一行加入/home/nfs *(rw,sync,no_root_squash,no_subtree_che原创 2015-06-06 02:58:42 · 3500 阅读 · 1 评论