Linux
ancyscat
嗝...
展开
-
putty的的颜色配置步骤
1. 打开Putty,在Gategory-Session里load session(一定要先load session)2. 在Gategory-Window-Colors里找到Select a color to adjust按照下表依次对每个颜色进行设置http://blog.csdn.net/zxx2403/article/details/46506539*原创 2017-01-16 17:18:03 · 1090 阅读 · 0 评论 -
Linux 挂载windows网络共享文件 /etc/fstab功能详解
转载自: http://www.cnblogs.com/qiyebao/p/4484047.htmlLinux命令-自动挂载文件/etc/fstab功能详解[转] 一、/etc/fstab文件的作用 磁盘被手动挂载之后都必须把挂载信息写入/etc/fstab这个文件中,否则下次开机启动时仍然需要重新挂载。 系统开机时会主动读取/etc/fs转载 2017-09-20 14:47:54 · 5394 阅读 · 0 评论 -
Linux shell 常用命令
一、新建软连接命令在linux下很多地方都需要软连接,软连接其实就是windows的快捷方式。制作软连接需要ln命令,命令格式为 ln -s targetfile linkfile会在当前目录下生成一个doabc文件,这个文件是软连接,使用ll查看当前目录下的文件时,这个文件会显示成 linkfile->targetfile*的形式。ln命令还可以制作硬链接,硬链接原创 2017-03-11 14:31:27 · 625 阅读 · 0 评论 -
VIM plugin management
https://github.com/VundleVim/Vundle.vim Introduction:Installation requires Git and triggers git clone for each configured repository to ~/.vim/bundle/ by default. Curl is required for sear原创 2017-03-11 18:20:48 · 905 阅读 · 0 评论 -
VIM 批量注释与反注释
http://blog.csdn.net/xiajun07061225/article/details/8488210vim编辑器---批量注释与反注释在使用vim编写代码的时候,经常需要用到批量注释与反注释一段代码。下面简要介绍其操作。方法一 块选择模式插入注释:按Control+v(win下面ctrl+转载 2017-03-11 13:28:57 · 386 阅读 · 0 评论 -
ubuntu下安装、卸载软件命令
http://www.2cto.com/os/201210/159589.htmlubuntu下安装、卸载软件命令 安装: apt-get install name 卸载: apt-get remove name 卸载并清除配置: apt-get remove --purge name 更新信息库:apt-ge转载 2017-03-11 13:21:35 · 494 阅读 · 0 评论 -
VirtualBox虚拟机网络设置
VirtualBox是一款SUN出品的非常优秀的虚拟机程序,版本也非常齐全,你可以在官网上找到适合各种操作系统平台的版本。这里我先给大家大致讲解下VBox的网络配置及应用。VirtualBox的提供了四种网络接入模式,它们分别是:1、NAT 网络地址转换模式(NAT,Network Address Translation)2、Bridged Adapter 桥接模式转载 2017-03-04 20:51:53 · 634 阅读 · 0 评论 -
将VIM变成IDE
VIM + Ctag + CscopeCtag:http://blog.chinaunix.net/uid-26021340-id-3763109.htmlhttp://blog.csdn.net/guogaofeng1219/article/details/5416676Cscope:http://blog.csdn.net/andywangg原创 2017-01-16 18:33:14 · 618 阅读 · 0 评论 -
Linux常用命令
删除rm-r 就是向下递归,不管有多少级目录,一并删除-f 就是直接强行删除,不作任何提示的意思原创 2017-01-16 17:31:39 · 431 阅读 · 0 评论 -
shell学习过程中的错误集锦
#1 if语句,没有加;号没有以fi结尾,报错:在文件最后一行报错:line 53: syntax error: unexpected end of file原创 2018-06-02 15:09:33 · 339 阅读 · 0 评论