访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

Linux常用命令杂记

时间:2019-06-22

linux重启命令_linux命令_linux命令

1.[root@thousand ~]# cat /proc/version //查看内核

2.[root@thousand ~]# lsb_release -a //查看版本号

3.[root@thousand ~]# ifconfig //查看网卡信息

4.[root@thousand ~]# setup //打开网卡配置桌面版

5.[root@thousand ~]# ifup //获取dhcp ip

6.[root@thousand ~]# mkdir /data //创建一个/data的文件目录

7.[root@thousand ~]# touch stu{1..10000} //创建一万个文件

apr 27 05:40:02 hpf-linux crond[1740]: (test1) cmd (echo "even*************")。apr 27 05:42:01 hpf-linux crond[1753]: (test1) cmd (echo "even*************")。apr 27 05:48:01 hpf-linux crond[1781]: (test1) cmd (echo "even*************")。

//如果文件存在会清空内容写入''内容linux命令,如果不存在会创建一个文件

[root@thousand ~]# cat test1.txt

linux命令_linux重启命令_linux命令

Iam studying Linux

9.[root@thousand ~]# echo 'hello' >> test.txt //这样会是在这个文件后面添加(追加)''内容,如果不存在会创建一个文件

[root@thousand ~]#echo'111 2222 3333'>>test.txt

10.[root@thousand ~]# yum install tree -y //不存在tree的使用时,安装tree

[root@lnmp ~]# mkdir /tmp/samba/test #创建测试目录。创建单个目录:os.mkdir(“test”)。[root@localhost ~]#mkdir /home/public ------创建要共享的目录。

12.[root@thousand ~]# alias //查看系统现有别名

alias cp='cp -i'

alias l.='ls -d .* --color=auto'

alias ll='ls -l --color=auto'

alias ls='ls --color=auto'

linux重启命令_linux命令_linux命令

alias mv='mv -i'

alias rm='rm -i'

alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'

13.[root@thousand ~]# unalias cp 删除cp别名

14.data -s “时间” //修改时间

15.data //查看时间

16.[root@thousand ~]# service network restart //重启网络服务

17.[root@thousand ~]#ps -ef |grep ssh //查看进程的命令

18.[root@thousand ~]# netstat -lntup |grep ssh

[root@linux-01 share]# /etc/init.d/iptables stop。/etc/init.d/iptables stop。950 /etc/init.d/iptables stop。

 上一个教程:linux命令_【mail】命令