首页 > 代码库 > linux下的常用命令

linux下的常用命令

ls:

是显示当前目录下文件

ll:

是显示当前目录下文件详细信息。

其中文件属性的说明:

文件属性字段总共有10个字母组成,

第一个字母表示文件类型,如果这个字母是一个减号"-",则说明该文件是一个普通文件.字母"d"表示该文件是一个目录,字母"d",是dirtectory(目录)的缩写.请注意,一个目录或者说一个文件夹是一个特殊文件,这个特殊文件存放的是其他文件和文件夹的相关信息.如果该字母是"l",表示该文件是一个符号链接.符号链接的概念类似于windows里的快捷方式.

第一字段的后面9个字母表示文件的权限.

其中前三个表示文件属主的权限,中间三个表示组用户权限,最后三个表示其他用户权限.

r表是读 (Read) w表示写 (Write) x表示执行 (eXecute)

 

 

useradd:

useradd –g sales jack –G company,employees //-g:加入主要组、-G:加入次要组

  • groupadd

如:groupadd dba

  • wget

下载指定地址的文件

如:wget http://download.redis.io/releases/redis-2.8.3.tar.gz

 

 

tar

解压
语法:tar [主选项+辅选项] 文件或者目录

使用该命令时,主选项是必须要有的,它告诉tar要做什么事情,辅选项是辅助使用的,可以选用。

主选项:

c 创建新的档案文件。如果用户想备份一个目录或是一些文件,就要选择这个选项。相当于打包。

x 从档案文件中释放文件。相当于拆包。

t 列出档案文件的内容,查看已经备份了哪些文件。

特别注意,在参数的下达中, c/x/t 仅能存在一个!不可同时存在!因为不可能同时压缩与解压缩。

辅助选项:

-z :是否同时具有 gzip 的属性?亦即是否需要用 gzip 压缩或解压? 一般格式为xx.tar.gz或xx. tgz

-j :是否同时具有 bzip2 的属性?亦即是否需要用 bzip2 压缩或解压?一般格式为xx.tar.bz2

-v :压缩的过程中显示文件!这个常用

-f :使用档名,请留意,在 f 之后要立即接档名喔!不要再加其他参数!

-p :使用原文件的原来属性(属性不会依据使用者而变)

--exclude FILE:在压缩的过程中,不要将 FILE 打包!

如:

tar -xzf redis-2.8.3.tar.gz 解压

tar -cvf /tmp/etc.tar /etc <==仅打包,不压缩!
tar -czvf /tmp/etc.tar.gz /etc <==打包后,以 gzip 压缩

tar -cjvf /tmp/etc.tar.bz2 /etc <==打包后,以 bzip2 压缩

 

 

 

Make

编译

mkdir
创建目录

chown

使用chown命令可以修改文件或目录所属的用户:

命令:chown 用户 目录或文件名

例如:chown qq /home/qq (把home目录下的qq目录的拥有者改为qq用户)

chgrp

使用chgrp命令可以修改文件或目录所属的组:

命令:chgrp 组 目录或文件名

例如:chgrp qq /home/qq (把home目录下的qq目录的所属组改为qq组)

如何执行程序:

 

1.如果path中有你的程序所在的目录,那么直接执行filename即可
2.如果path中没有程序所在目录,那么进入目录./filename或者path/filename

 

telnet

[redis@localhost redis]$ telnet 127.0.0.1 6379

Trying 127.0.0.1...

telnet: connect to address 127.0.0.1: Connection refused –连接失败

[redis@localhost redis]$ telnet 127.0.0.1 6379

Trying 127.0.0.1...

Connected to 127.0.0.1.

Escape character is ‘^]‘.—出现这个代表连接成功了

quit—输入quit退出

+OK

Connection closed by foreign host.

 

 

 

 

cp

文件拷贝 如:

cp redis.conf /etc/redis.conf

 

 

ps

查看进程

如:

[redis@localhost etc]$ ps -ef | grep redis

root       4122   1854  0 09:57 ?        00:00:00 sshd: redis [priv]

redis      4126   4122  0 09:57 ?        00:00:00 sshd: redis@pts/0

redis      4128   4126  0 09:57 pts/0    00:00:00 -bash

root       6138   6077  0 10:03 pts/0    00:00:00 su redis

redis      6139   6138  0 10:03 pts/0    00:00:00 bash

root       6293   6184  0 10:11 pts/0    00:00:00 su redis

redis      6294   6293  0 10:11 pts/0    00:00:00 bash

redis      6536      1  0 10:27 ?        00:00:00 redis-server *:6379

redis      6548   6294  0 10:28 pts/0    00:00:00 ps -ef

redis      6549   6294  0 10:28 pts/0    00:00:00 grep --color=auto redis

 

netstat 

查看端口

如:

--6379是redis端口号

[redis@localhost etc]$ netstat -nap | grep 6379

(Not all processes could be identified, non-owned process info

 will not be shown, you would have to be root to see it all.)

tcp        0      0 0.0.0.0:6379            0.0.0.0:*               LISTEN      6536/redis-server *

tcp6       0      0 :::6379                 :::*                    LISTEN      6536/redis-server *

--6536是使用ps查看到redis进程ID

[redis@localhost etc]$ netstat -nap | grep 6536

(Not all processes could be identified, non-owned process info

 will not be shown, you would have to be root to see it all.)

tcp        0      0 0.0.0.0:6379            0.0.0.0:*               LISTEN      6536/redis-server *

tcp6       0      0 :::6379                 :::*                    LISTEN      6536/redis-server *

 

查看所有端口

[redis@localhost etc]$ netstat -a

linux下的常用命令