
Linux环境
lin_dy
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Ubuntu vsftpd
1sudo apt-get install vsftpd 2.useradd -m ftp 3mkdir /home/ftp/ftp 4chmod 777 /home/ftp/ftp 5chmod a-w /home/ftp 6sudo vi /etc/vsftpd.conf max_clients=200 max_per_ip=4 anon_upload_enable=YES转载 2013-06-07 09:26:31 · 492 阅读 · 0 评论 -
Ubuntu下source insight安装
1.sudo apt-get install wine 2.wine ~/SourceInsight/InsightSetup.exe 3. 在终端输入命令: wine Insight3.exe 在系统菜单里面有个wine选项,在那直接打开source insight就可以了(Wine->Programs->Source Insight3->Source Insight 3.原创 2013-06-06 22:02:13 · 536 阅读 · 0 评论 -
ubuntu修改默认sh
ubuntu默认启用的是dash, dash比bash轻巧快速 但是在编译uboot的nand_spl时发现,dash不支持部分指令 sudo dpkg-reconfigure dash 选择no,修改默认sh为bash即可原创 2013-07-25 02:34:14 · 1803 阅读 · 0 评论 -
常用指令
1.查找函数、变量等 ctags -R vim -t function 当变量或函数在多处被定义,可在vim中 光标停留在变量或函数名上,进入末端模式,输入ts回车 2. grep "要查找的字符串" * -nR 3. find ./ -name “文件名”原创 2013-07-25 02:36:41 · 467 阅读 · 0 评论