圆月山庄资源网 Design By www.vgjia.com
最近搞了一个阿里ECS,CentOS7,涉及到一些基本的Linux指令,在这里总结一下,在搭环境中常用的一些指令,熟悉这些指令就基本能够使用CentOS进行日常操作了。
更多的可以参考系统自带的 “Cammand --help” ,很实用。
目录相关指令
/*cd指令 *跳至到XX目录下,从Xshell远程登陆进去的目录是/root *cd .. 返回上一层目录 */ [root@Lettiy ~]# cd /usr/local /*ls 显示当前目录下的所有文件 */ [root@Lettiy local]# ls aegis bin etc games include lib lib64 libexec sbin share src /*mkdir 新建,可以是目录,可以是文件 */ [root@Lettiy ~]# mkdir mytest [root@Lettiy ~]# ls mytest [root@Lettiy mytest]# mkdir text.txt [root@Lettiy mytest]# ls text.txt
文件处理指令(移动,删除,复制<cp 基本操作类似于mv>)
/*mv 可用于改名、也可用于移动 */ [root@Lettiy mytest]# mv text.txt newname.txt [root@Lettiy mytest]# ls newname.txt [root@Lettiy mytest]# mv newname.txt newdir [root@Lettiy mytest]# ls newdir [root@Lettiy mytest]# cd newdir [root@Lettiy newdir]# ls newname.txt /*rm 用于删除文件 普通删除文件用rm -f xx 普通目录删除 rm -rf xx 批量删除同一名字 rm -v xx* (此处*类似于通配符) */ [root@Lettiy newdir]# ls new1 new2 new3 new4 newname.txt [root@Lettiy newdir]# rm -f newname.txt [root@Lettiy newdir]# ls new1 new2 new3 new4 [root@Lettiy newdir]# rm -rf new4.txt [root@Lettiy newdir]# ls new1 new2. new3 [root@Lettiy newdir]# rm -rf -v new* removed directory: ‘new1' removed directory: ‘new2' removed directory: ‘new3'
文件下载与解压
/*wget 文件下载 wget url即可 */ [root@Lettiy newdir]# wget http://mirrors.hust.edu.cn/apache/tomcat/tomcat-7/v7.0.79/bin/apache-tomcat-7.0.79.tar.gz --2017-08-13 23:35:56-- http://mirrors.hust.edu.cn/apache/tomcat/tomcat-7/v7.0.79/bin/apache-tomcat-7.0.79.tar.gz Resolving mirrors.hust.edu.cn (mirrors.hust.edu.cn)... 202.114.18.160 Connecting to mirrors.hust.edu.cn (mirrors.hust.edu.cn)|202.114.18.160|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 8975395 (8.6M) [application/octet-stream] Saving to: ‘apache-tomcat-7.0.79.tar.gz 100%[================================================================================>] 8,975,395 19.3KB/s in 4m 36s 2017-08-13 23:40:33 (31.8 KB/s) - ‘apache-tomcat-7.0.79.tar.gz' saved [8975395/8975395] /*tar 对于tar.gz文件进行解压,解压为rpm文件再安装 tar -zxvf */ [root@Lettiy newdir]# ls apache-tomcat-7.0.79.tar.gz [root@Lettiy newdir]# tar -zxvf apache-tomcat-7.0.79.tar.gz apache-tomcat-7.0.79/bin/catalina.sh apache-tomcat-7.0.79/bin/configtest.sh apache-tomcat-7.0.79/bin/daemon.sh apache-tomcat-7.0.79/bin/digest.sh …… [root@Lettiy newdir]# ls apache-tomcat-7.0.79 apache-tomcat-7.0.79.tar.gz
文件安装与卸载
CentOS集成了yum,可配置源(repository)进行安装
/*yum 安装/卸载 yum install software yum remove software */ [root@Lettiy newdir]# yum install postgresql /*查看yum可安装的软件包,可配合grep进行关键字查询,例如‘java'*/ [root@Lettiy newdir]# yum list [root@Lettiy newdir]# yum list|grep 'java' /*rpm 刚刚解压tar得到的rpm文件则需要使用rpm 安装rpm -ivh 删除rpm -e 查看已经安装rpm -qa */ [root@Lettiy newdir]# rpm -ivh software.rpm
文件更改/查看
/*文件查看 cat指令、more指令、vi指令三者都可以实现查看 */ [root@Lettiy newdir]# cat /etc/profile # /etc/profile # System wide environment and startup programs, for login setup # Functions and aliases go in /etc/bashrc # It's NOT a good idea to change this file unless you know what you # are doing. It's much better to create a custom.sh shell script in # /etc/profile.d/ to make custom changes to your environment, as this # will prevent the need for merging in future updates. pathmunge () { case ":${PATH}:" in *:"$1":*) ;; *) if [ "$2" = "after" ] ; then PATH=$PATH:$1 else PATH=$1:$PATH fi esac } if [ -x /usr/bin/id ]; then if [ -z "$EUID" ]; then # ksh workaround EUID=`/usr/bin/id -u` UID=`/usr/bin/id -ru` fi USER="`/usr/bin/id -un`" LOGNAME=$USER MAIL="/var/spool/mail/$USER" fi # Path manipulation if [ "$EUID" = "0" ]; then pathmunge /usr/sbin pathmunge /usr/local/sbin else pathmunge /usr/local/sbin after pathmunge /usr/sbin after fi HOSTNAME=`/usr/bin/hostname 2>/dev/null` HISTSIZE=1000 if [ "$HISTCONTROL" = "ignorespace" ] ; then export HISTCONTROL=ignoreboth else export HISTCONTROL=ignoredups fi export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE HISTCONTROL # By default, we want umask to get set. This sets it for login shell # Current threshold for system reserved uid/gids is 200 # You could check uidgid reservation validity in # /usr/share/doc/setup-*/uidgid file if [ $UID -gt 199 ] && [ "`/usr/bin/id -gn`" = "`/usr/bin/id -un`" ]; then umask 002 else umask 022 fi for i in /etc/profile.d/*.sh ; do if [ -r "$i" ]; then if [ "${-#*i}" != "$-" ]; then . "$i" else . "$i" >/dev/null fi fi done unset i unset -f pathmunge export JAVA_HOME=/usr/develop/java/jdk1.8.0_144 export PATH=$JAVA_HOME/bin/:$PATH export CLASSPATH=$JAVA_HOME/jre/lib/ext:$JAVA_HOME/lib/tools.jar export CATALINA_HOME=/usr/develop/tomcat/apache-tomcat-8.5.20 /*vi vi directory 如果目录下存在则打开 如果不存在则新建一个空文件 */
如果要修改,进入按 I ,即可进入insert模式,进行更改;
保存:先ESC,然后输入:
wq:保存退出
q!:不保存退出
主要用于修改配置文件 ,例如:etc/proflie
端口和进程监控常用
/*ps 检测软件是否运行 或查看正在运行的进程 ps -ef|grep 'name' 例如:检测tomcat的运行状况 */ [root@Lettiy newdir]# ps -ef|grep 'tomcat' root 19785 1 0 Aug12 "htmlcode">yum install lrzsz然后使用rz sz即可上传下载。
总结
以上所述是小编给大家介绍的Linux 日常常用指令及应用小结,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
标签:
Linux,日常常用指令
圆月山庄资源网 Design By www.vgjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
圆月山庄资源网 Design By www.vgjia.com
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
2024年11月09日
2024年11月09日
- 雨林唱片《赏》新曲+精选集SACD版[ISO][2.3G]
- 罗大佑与OK男女合唱团.1995-再会吧!素兰【音乐工厂】【WAV+CUE】
- 草蜢.1993-宝贝对不起(国)【宝丽金】【WAV+CUE】
- 杨培安.2009-抒·情(EP)【擎天娱乐】【WAV+CUE】
- 周慧敏《EndlessDream》[WAV+CUE]
- 彭芳《纯色角3》2007[WAV+CUE]
- 江志丰2008-今生为你[豪记][WAV+CUE]
- 罗大佑1994《恋曲2000》音乐工厂[WAV+CUE][1G]
- 群星《一首歌一个故事》赵英俊某些作品重唱企划[FLAC分轨][1G]
- 群星《网易云英文歌曲播放量TOP100》[MP3][1G]
- 方大同.2024-梦想家TheDreamer【赋音乐】【FLAC分轨】
- 李慧珍.2007-爱死了【华谊兄弟】【WAV+CUE】
- 王大文.2019-国际太空站【环球】【FLAC分轨】
- 群星《2022超好听的十倍音质网络歌曲(163)》U盘音乐[WAV分轨][1.1G]
- 童丽《啼笑姻缘》头版限量编号24K金碟[低速原抓WAV+CUE][1.1G]