Yandex Big Data Essentials Week1 Unix Command Line Interface Processes managing
free
displays the total amount of free and used memory
free [options]
top
provides a dynamic real-time view of a running system
top [options]
ps
provides snapshot of the status of currently running processes
ps [options]
kill
sends a signal to a process
kill [-s][-l] %pid
nice
runs a command with a modified scheduling priority
nice [OPTION] [COMMAND [ARG] …]
课程总结:
| Command | Description |
|---|---|
| awk | interpreted programming language text processing |
| awk -F | set the separator |
| cat | Display the contents of a file at the command line,is also used to copy and or append text files into a document. Named after it’s function to con-cate-nate files. |
| cd | Change the current working directory.Also known as chdir |
| cd / | Change the current directory to root directory |
| cd .. | Change the current directory to parent directory |
| cd ~ | Change the current directory to your home directory |
| cp | Make copies of files and directories |
| cp -r | Copy directories recursively |
| cut | Drop sections of each line fo iniput by bytes,characters, or fields,separated by a delimiter (the tab character by default) |
| cut -d -f | -d is for delimiter instead of tab character,-f select only those fields(ex.: ” cut -d “,” -f1 multilined_file.txt” -will mean that we select only the first field from each comma-separated line in the file |
| du | Estimate (and display) the file space usage -space used under a particular directory or file on a file system |
| df | Display the amount of available disk space being used by file systems. |
| df -h | use human readable format |
| free | Display the total amount of free and used memory(use vm_stat instead on MacOS). |
| free -m | Display the amount of memory in megabytes |
| feee -g | Display the amount of memory in gigabytes |
| grep | Process text and print any lines which match a regular expression(“global regular expression print”) |
| head | Print the beginning of a text file or piped data.By default,outputs the first 10 lines of its input to the commannd line |
| head -n | Output the first n lines of input data(ex: “head -5 multilined_file.txt”) |
| kill | Send a signal to kill a process. The default signal for kill is TERM(which will terminate the process) |
| less | is similar to more,but has extended capability of allowing both forward and backward navigation through the file |
| ls | List the content of a directory |
| ls -l | List the contents of a directory + use a long format,displaying Unix file types,permissions,number of hard links, owner,group,size,last-modified data and filename. |
| ls -lh | List the contents of a directory + print sizes in human readable format.(eg. 1k,234M,2G,etc) |
| ls -lS | Sort by file size |
| man | Display the man pages with provide documentation about commands,system calls,library routines and the kernel |
| mkdir | Create a directory on a file system. |
| more | Display the contents of a text file one screen at a time |
| mv | Rename files or directories or move them to a different directory |
| nice | Run a command with a modified scheduling priority. |
| ps | Provide information about the currently running process,including their process identification numbers (PIDS)(“process status”) |
| ps a | select all processes except both session leader and processes not associated with terminal. |
| pwd | Abbreviated from “print working directory”,pwd writes the full pathname of the current working directory. |
| rm | Remove files or directory |
| rm -r | Remove directories and their contents recursively. |
| sort | Sort the contents of a text file. |
| sort -r | Sort the output in the reverse order. Reverse means - to reverse the result of comparsions |
| sort -k | -k or –key=POS1[,POS2] Start a key at POS1 (origin 1), end it at POS2 (default end of the line) (ex.: “sort -k2,2 multilined_file.txt”). |
| sort -n | Compare according to string numerical value. |
| tail | Print the tail end of a text file or piped data. Be default, outputs the last 10 lines of its input to the command line. |
| tail -n | Output the last n lines of input data (ex.: “tail -2 multilined_file.txt”). |
| top | Produce an ordered list of running processes selected by user-specified criteria, and updates it periodically. |
| touch | Update the access date and or modification date of a file or directory or create an empty file. |
| tr | Replace or remove specific characters in its input data set (“translate”). |
| tr -d | Delete characters, do not translate. |
| vim | Is a text editor (“vi improved”). It can be used for editing any kind of text and is especially suited for editing computer programs. |
| wc | Print a count of lines, words and bytes for each input file (“word count”) |
| wc -c | Print only the number of characters. |
| wc -l | Print only the number of lines. |
Yandex Big Data Essentials Week1 Unix Command Line Interface Processes managing的更多相关文章
- Yandex Big Data Essentials Week1 Unix Command Line Interface File Content exploration
cat displays the contents of a file at the command line copies or apppend text file into a document ...
- Yandex Big Data Essentials Week1 Unix Command Line Interface File System exploration
File System Function In computing, a file system or filesystem is used to control how data is stored ...
- Yandex Big Data Essentials Week1 Scaling Distributed File System
GFS Key Components components failures are a norm even space utilisation write-once-read-many GFS an ...
- Data Science at the Command Line学习笔记(一)
学习Data Science at the Command Line时,win7下安装环境是遇到了一些小问题,最后通过百度解决. 官方指导可以在这个地址找到:http://datascienceatt ...
- atprogram.exe : Atmel Studio Command Line Interface
C:\Program Files\Atmel\Atmel Studio 6.1\atbackend\atprogram.exe No command specified.Atmel Studio Co ...
- Centos下_MysqL5.7在使用mysqldump命令备份数据库报错:mysqldump: [Warning] Using a password on the command line interface can be insecure.
在阿里云服务器增加一个shell脚本定时备份数据库脚本执行任务时,测试性的执行了备份命令,如下 [root@iZ2ze503xw2q1fftv5rhboZ mysql_bak]# /usr/local ...
- Warning: Using a password on the command line interface can be insecure.
[root@qttc ~]# /usr/local/mysql/bin/mysqldump -uroot -proot db > bak.sqlWarning: Using a passwor ...
- vue-cli 脚手架 Command Line Interface
mac sudo npm install -g nrm sudo npm config -g set unsafe-perm sudo npm install webpack@3.0.0 -g sud ...
- Install the AWS Command Line Interface on Linux
Install the AWS Command Line Interface on Linux You can install the AWS Command Line Interface and i ...
随机推荐
- 【转】Java Web Services面试问题集锦
Q. 应用集成方式有哪些? A. 应用可以采用以下方式集成: 1. 共享数据库 2. 批量文件传输 3. 远程过程调用(RPC) 4. 通过消息中间件来交换异步信息(MOM) Q. 应用集成可以采用的 ...
- mysql的简单命令
MySQL的命令介绍: 连接数据库服务器命令: mysql -u 用户名 -p 密码 mysql是连接MySQL数据库的命令 -u表示后跟用户名 -p 后跟密码 如果登录后展示 " ...
- Scala实践13
1.隐式参数 方法可以具有隐式参数列表,由参数列表开头的implicit关键字标记.如果该参数列表中的参数没有像往常一样传递,Scala将查看它是否可以获得正确类型的隐式值,如果可以,则自动传递. S ...
- python继承简介
继承 是面向对象的三大特性之一 作用: 通过继承可以使一个类获取其它类中的属性和方法 使用方法: 在定义类时,可以在类名后的括号中指定当前类的父类(超类.基类.super) 这样子类(衍生类)就可以直 ...
- 两个关于 Java 面试的 Github 项目
哈喽,大家好.相信大家都知道金九银十,在人才市场上是指每年的 9 月和 10 月是企业的招聘高峰期.这个时候企业往往有大量招聘需求,求职者在这个时候就找工作无疑是最适合的.需求大,谈工资什么的就更容易 ...
- 防止过拟合的方法 预测鸾凤花(sklearn)
1. 防止过拟合的方法有哪些? 过拟合(overfitting)是指在模型参数拟合过程中的问题,由于训练数据包含抽样误差,训练时,复杂的模型将抽样误差也考虑在内,将抽样误差也进行了很好的拟合. 产生过 ...
- VSCODE更改文件时,提示EACCES permission denied的解决办法(mac电脑系统)
permission denied:权限问题 具体解决办法: 1.在项目文件夹右键-显示简介-点击右下角解锁 2.权限全部设置为读与写 3.最关键一步:点击"应用到包含的项目",这 ...
- 玩转Django2.0---Django笔记建站基础九(二)(Auth认证系统)
9.4 设置用户权限 用户权限主要是对不同的用户设置不同的功能使用权限,而每个功能主要以模型来划分.以9.3节的MyDjango项目为例,在Admin后台管理系统可以查看并设置用户权限,如下图: 用户 ...
- 正斜杠(" / ")和反斜杠(" \ ")的区别
反斜杠“\”是电脑出现了之后为了表示程序设计里的特殊含义才发明的专用标点.所以除了程序设计领域外,任何地方都不应该使用反斜杠. 如何区分正反斜杠 英语:"/" 英文是forward ...
- mong 按 geometry 搜索 地理位置信息
看 地理位置索引的使用 $near $geometry