[Note] CentOS 命令】的更多相关文章

1. uninstall software install by yum install yum install -y [package-name] //无-y则交互式安装 yum remove [package-name] install by ./configure make make install to uninstall this type make uninstall 2. 同步系统时间 查看系统时间 date date -s 12:00:00 #设置当前时间 date -s "20…
CentOS命令登录MySQL时,报错ERROR 1045 (28000): Access denied for user root@localhost (using password: NO)错误解决方法 1.停用mysql服务:# /etc/rc.d/init.d/mysqld stop 2.输入命令:# mysqld_safe --user=mysql --skip-grant-tables --skip-networking & 3.登入数据库:# mysql -u root mysql…
一些常用的centos命令,记忆下,属于常用的 查询内网IP hostname -I 查询外网IP curl ifconfig.me 查看硬盘使用情况 df -h 查看系统资源使用率 top 查看系统进程 ps -ef 查看系统信息 cat /proc/version uname -a 查看系统版本 lsb_release -a…
centos 命令大全 1.关机 (系统的关机.重启以及登出 ) 的命令 shutdown -h now 关闭系统(1) init 0 关闭系统(2) telinit 0 关闭系统(3) shutdown -h hours:minutes & 按预定时间关闭系统 shutdown -c 取消按预定时间关闭系统 shutdown -r now 重启(1) reboot 重启(2) logout 注销 2.查看系统信息的命令 arch 显示机器的处理器架构(1) uname -m 显示机器的处理器架…
链接: http://www.cnblogs.com/zitsing/archive/2012/05/02/2479009.html http://www.centoscn.com/CentOS/help/2014/0306/2493.html http://www.centoscn.com/CentOS/help/2014/0226/2476.html CentOS下mysql数据库常用命令总结 http://www.centoscn.com/mysql/2015/0609/5633.html…
文件操作: ls      ####查看目录中的文件#### ls -F       ####查看目录中的文件#### ls -l       ####显示文件和目录的详细资料#### ls -a       ####显示隐藏文件#### ls *[0-9]*       ####显示包含数字的文件名和目录名#### rm go.tar       #### 删除go.tar文件#### find mt.cgi       ####查找文件名为mt.cgi的文件#### df ?h       …
CentOS常用命令在我们的使用中,经常被使用.所以,我们对一些经常使用又很重要的CentOS常用命令进行了全面的整理.下面,就来介绍这些CentOS常用命令. 一:使用CentOS常用命令查看cpu more /proc/cpuinfo | grep "model name" grep "model name" /proc/cpuinfo [root@localhost /]# grep "CPU" /proc/cpuinfo model na…
CentOS默认没有像Ubuntu系统一样命令参数补全功能,例如yum install无法补全.通过安装bash-completion安装命令参数补全增强. CentOS6 默认情况下,CentOS6官方源不包含bash-completion,需要从epel源中安装.可直接安装rpm包 # rpm -ivh https://mirrors.ustc.edu.cn/epel/6/x86_64/bash-completion-1.3-7.el6.noarch.rpm 或者安装epel的repo源,通…
使用Centos,遇到本地时间对不上,直接敲命令:date -s "2016-01-08  15:15:15"是立即生效了,但是重启后,系统时间还是原来的. 修改了其一是没有办法奏效,必须两者都更改. .date //查看本地 .hwclock --show //查看硬件的时间 .如果硬件的时间是对不上,那就对硬件的时间进行修改. .hwclock --set --date '2016-01-08 15:15:15' //设置硬件时间 .hwclock --hctosys //设置系统…
1.解决ifconfig命令失效:需要安装net-tools工具 yum install net-tools 2.免密码登录 (1)通过命令,产生公钥信息 ssh-keygen -t rsa 如果提示没有对应命令:yum -y install openssh-clients (2)将公钥信息,加入到可以被面密码登录的主机上或docker容器中的authorized_keys文件中…