
linux
ayst123
这个作者很懒,什么都没留下…
展开
-
PBS 命令
PBS查考:1. http://lynn56.blog.163.com/blog/static/138187862010104113934423/原创 2014-08-13 08:12:38 · 1336 阅读 · 0 评论 -
ssh private key
login server without passwordgenerate key (on my own computer) ssh-genkey -t rsa (have to change the name of key, otherwise it will override the old one)put the public key to the server For exam原创 2015-03-22 02:03:38 · 740 阅读 · 0 评论 -
[转] 命令行语法格式
转自 这里命令 <必选参数1 | 必选参数2> [-option {必选参数1 | 必选参数2 |必选参数3} ] [可选参数…] { (默认参数) |参数 |参数 }解释 <>: 必选参数 { }: 必选参数,内部使用 [ ]: 可选参数 ( ): 指明参数的默认值,只用于{ }中 |: 用于分割 … : 任意多个参数转载 2015-06-01 09:39:16 · 785 阅读 · 0 评论 -
Autojump Installation
Autojump is a faster way to ‘cd’ to the specific dir directly. Installation git clone https://github.com/joelthelion;autojump.git python install.py it will tell you what command you should add原创 2015-03-16 08:35:47 · 741 阅读 · 0 评论 -
Linux: Find Command
This blog comes from here.'find' command is a handy command to search for files. In this post we shall learn to use the find command along with various options that it supports. The find command is av翻译 2015-05-05 13:41:18 · 754 阅读 · 0 评论 -
Linux awk command
Source: 1.Linux awk命令详解 2. linux awk命令详解 3.linux-shell脚本命令之awk 4.awk文本处理总结(入门,中级,高级) 5.Learning Linux Commands: awk 有很多例子 6. AWK 非常详细的教程grep 算是查找命令,sed 是编辑,awk 是一个更强大的文本分析工具。 awk 是逐行读入,以空格为默认分转载 2015-05-10 03:10:11 · 479 阅读 · 0 评论 -
Linux sed command
Source: 1. linux的sed命令详解 2.Linux基础 ——- 文本处理利器sedBasic sed [-option] ‘command’ filename常用选项 -n: 使用安静模式。 一般sed的用法上, 所有来自stdin的资料一般都会列在荧幕上,加上-n, 只会显示经过sed 处理的那一行 -e: 直接在指令列模式上进行 sed 的动作模式 -f:转载 2015-05-10 09:44:38 · 582 阅读 · 0 评论 -
Linux: grep command
Source: 1. 15 Practical Grep Command Examples In Linux / UNIXContent:ContentSearch for the given string in a single fileCase insensitive search using grep -iMatch regular expression in filesChec翻译 2015-05-08 04:06:32 · 519 阅读 · 0 评论 -
Bash Shortcuts
These are a couple of shortcuts that I should get familiar with. Move Move Cursor Ctrl + A: go to the beginning of the line Ctrl + E: go to the end of the line Move Cursor in the w原创 2015-03-12 03:51:23 · 441 阅读 · 0 评论 -
linux 基本命令
这里添加下常用的命令删除 1. 删除指定的一些文件 比如删除 mat.o32424, mat.e342, 。。。 就使用 find -name “.[oe][0-9]?” | xargs /bin/rm -f xargs 的作用是把前面的结果一条条输送到后面Tips& (background running) adding & at the end of command,原创 2015-03-11 11:07:18 · 442 阅读 · 0 评论 -
Screen
才知道linux有screen这样的命令,它的作用主要在于防止ssh连接服务器时突然中断,造成当时进行的job断掉。可以这样想,以前设置的共享ssh, 是多个ssh共连。 而screen则是在server上,并由server管理。它们在后台运行,如果ssh 中断了本地到server的链接,这些job仍然运行,并且下次再ssh即可恢复。下面实例讲下如何使用,先ssh 创建一个screen, 并命令原创 2015-03-02 11:09:22 · 610 阅读 · 0 评论 -
shell 命令快捷键
移动Ctrl-A 光标移动到最前Ctrl-E 广播原创 2014-08-17 02:54:05 · 460 阅读 · 0 评论 -
ssh 只需登陆一次
在linux 中,登陆一次ssh后,就不需要再用密码了具体bu原创 2014-08-16 08:01:59 · 761 阅读 · 0 评论 -
安装软件 到自己用户目录下
./configure --prefix=/SOME/FOLDERmakemake inst原创 2014-08-15 03:59:47 · 1314 阅读 · 0 评论 -
服务器配置
1.安装 cuda 8.0 直接官网安装即可,cuda 8.0 中自带 gpu driver. 所以不用提前装 driver. 注意安装 cuda 8.0 时,不要装 xconfigure, opengl。 在网上看到据说什么用。装 cudnn, 比较简单。 貌似得下 linux 版本,而不用选 ubuntu 版本编译 caffe 时说找不到 /usr/bin/ld: cannot fin原创 2017-01-20 13:11:43 · 376 阅读 · 0 评论