Linux 常用命令
Linux
一、linux的组成:内核,shell,文件系统,应用程序
二、linux目录结构:bin,sbin,home,root,boot,dev,etc,lib,
三、文件目录操作:ls,cd,mkdir,touch,echo,cat,more,find,mv,cp,rm,wc,ln
四、linux通道“|”
五、系统管理命令:passwd,suroot,sudopasswdroot,
top,kill,ps,du,df,ping,ifconfig,man
六、开关机:logout,exit,shutdown
七、备份压缩:打包及压缩tar-czvfnews.tar.gz
拆包及压解缩tar-xzvfnews.tar.gz
九、VIM:i,esc,q!(强制退出),wq(保存退出),setnumber显示行号,setnonumber取消行号显示
十、linux源码安装软件
解压:tar-zxvfxxxx.tar.gz
配置:cdxxxx
./configure
编译:make
安装:makeinstall
卸载:makeuninstall
Ubuntu
1、安装和卸载:
(1)dpkg软件包管理
安装软件包sudodpkg-itree_1.5.3-1_i386.deb
删除软件包sudodpkg-rtree
(2)APT软件包管理
安装软件包:sudoapt-getinstallpackagename
删除软件包:sudoapt-getremovepackagename
检查安装状态:sudoapt-cachepolicypackagename
获取新的软件包列表:sudoapt-getupdate
CentOS7
一、防火墙相关。
1、关闭防火墙
systemctlstopfirewalld
2、开启防火墙
systemctlstartfirewalld.service
3、开放默认端口号
firewall-cmd--permanent--zone=public--add-port=3306/tcp firewall-cmd--permanent--zone=public--add-port=3306/udp
4、使最新的防火墙设置规则生效。
firewall-cmd--reload
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持毛票票!