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的更多相关文章

  1. 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 ...

  2. 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 ...

  3. 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 ...

  4. Data Science at the Command Line学习笔记(一)

    学习Data Science at the Command Line时,win7下安装环境是遇到了一些小问题,最后通过百度解决. 官方指导可以在这个地址找到:http://datascienceatt ...

  5. atprogram.exe : Atmel Studio Command Line Interface

    C:\Program Files\Atmel\Atmel Studio 6.1\atbackend\atprogram.exe No command specified.Atmel Studio Co ...

  6. Centos下_MysqL5.7在使用mysqldump命令备份数据库报错:mysqldump: [Warning] Using a password on the command line interface can be insecure.

    在阿里云服务器增加一个shell脚本定时备份数据库脚本执行任务时,测试性的执行了备份命令,如下 [root@iZ2ze503xw2q1fftv5rhboZ mysql_bak]# /usr/local ...

  7. 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 ...

  8. 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 ...

  9. 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 ...

随机推荐

  1. GDAL集成GEOS

    因为要用到缓冲区分析,在使用Buffer的时候提示:ERROR 6: GEOS support not enabled,查了一下资料需要集成GEOS库.因为GDLA默认编译是没有集成GEOS库的. 现 ...

  2. 输入n个字符串,找出最长最短字符串(若有个数相同的,都打印出来)

    首先,要求找到最长最短字符串,我们应该用数组将其存起来,输入的个数是不固定的,我们就可以用Scanner获取要输入的个数,最终找到的个数也不固定,我们可以封装两个方法,并且返回值类型为数组. 我遇到的 ...

  3. 使用内存映射文件MMF实现大数据量导出时的内存优化

    前言 导出功能几乎是所有应用系统必不可少功能,今天我们来谈一谈,如何使用内存映射文件MMF进行内存优化,本文重点介绍使用方法,相关原理可以参考文末的连接 实现 我们以单次导出一个excel举例(csv ...

  4. Pandas的介绍与基本使用

    1.什么是Pandas 当大家谈论到数据分析时,提及最多的语言就是Python和SQL,而Python之所以适合做数据分析,就是因为他有很多强大的第三方库来协助,pandas就是其中之一,它是基于Nu ...

  5. cogs 1588. [USACO Feb04]距离咨询 倍增LCA

    1588. [USACO Feb04]距离咨询 ★★   输入文件:dquery.in   输出文件:dquery.out   简单对比时间限制:1 s   内存限制:256 MB [题目描述] 农夫 ...

  6. C# html生成图片保存下载

    最近有个需求,需要把内容生成图片,我找到一些资料可以将html页面生成图片并保存下载 下面是简单的实现 1.html页面 @{ Layout = null; } <!DOCTYPE html&g ...

  7. 吸取教训:一段网上找的代码突然爆了,项目出现大BUG

    本人是做游戏服务器开发的,碰到一个需求,给符某些要求的玩家的发送道具奖励,奖励的数量根据离线的天数计算. 这个需求实现起来很简单,只需要在玩家上线的时候计算上次离线时间和当前时间间隔的天数,然后根据策 ...

  8. [题解]CSP2019 Solution - Part A

    至于为什么是 \(\text{Part A}\) 而不是 \(\text{Day 1}\) 那是因为 Day1 T3 还没改 (那这六题的 \(\text{solution}\) 就按难度顺序写吧) ...

  9. [bzoj3926] [loj2137] [Zjoi2015] 诸神眷顾的幻想乡

    Description 幽香是全幻想乡里最受人欢迎的萌妹子,这天,是幽香的2600岁生日,无数幽香的粉丝到了幽香家门前的太阳花田上来为幽香庆祝生日. 粉丝们非常热情,自发组织表演了一系列节目给幽香看. ...

  10. 史上最简单的的HashTable源码分析

    HashTable源码分析 1.前言 Hashtable 一个元老级的集合类,早在 JDK 1.0 就诞生了 1.1.摘要 在集合系列的第一章,咱们了解到,Map 的实现类有 HashMap.Link ...