-bash: xx: command not found 在有yum源情况下处理 yum provides "*/xx"  ###"xx"代表某命令 或者 yum provides "*bin/xx" 根据查询出来的结果进行安装 如 [root@***]# yum provides "*/nmap"Loaded plugins: product-id, security, subscription-managerThis sy…
QQ群里发现有群友对jmeter分布式环境搭建有困惑,于是决定写一篇. 首先我在安装好的linux虚拟机里面安装jdk,在修改环境变量(vim /etc/profile)后,导致系统命令不可用,-bash: xx: command not found 表示修改环境变量出问题了,通过export命令恢复,执行: export PATH=/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin vim /etc/profile…
今天想判断系统版本,没想到没有lsb_release,lsb_release是查看系统版本信息的工具.当然我们也可以用其他的命令来解决,但这个问题还是解决掉. 系统:centos 6.41.先检查有没有lsb_release[root@test ~]# lsb_release -r-bash: lsb_release: command not found 2.使用yum安装lsb[root@localhost ~]#yum install -y redhat-lsb 3.验证lsb是否已经安装上…
本人在使用yum安装软件的时候,感觉最不爽的是网络不佳时,安装的速度特别慢.所以,个人就上网search了一下如何使用Linux的安装文件作为其yum源.经过几次尝试,已经可以成功的配置了.下面是详细的介绍: (1)个人的使用环境 本人的CentOS是安装在vmware上的:VMware workstation 7.1.1 + CentOS 5.5 (2)yum使用的相关文件介绍 CentOS使用的yum源是在/etc/yum.repos.d/目录下的两个文件中进行配置的CentOS-Base.…
#!/bin/bash #Linux搭建163网络yum源 cd /etc/yum.repos.d/ echo "-------------------下载163-repo--------------------" wget http://mirrors.163.com/.help/CentOS6-Base-163.repo 2&>/dev/null .repo .repo &>/dev/null &>/dev/null…
环境:CentOS7 一.本地源的yum源的搭建 (一)添加新的yum源配置文件iso.repo(名字可以自己命名,但是后缀必须是repo结尾) 注意:目录 /etc/yum.repos.d 下的 .repo 文件将会被yum工具读取             建议:只保留一个  .repo的文件. [root@uplooking ~]# vim /etc/yum.repos.d/iso.repo (二)添加内容如下:(注意在根目录下要建个iso的目录,并将光盘挂载到该目录下) [base]nam…
这里以安装阿里的yum源为例: 1.查看自己的centos版本 cat /etc/redhat-release 2.进入阿里云源站地址:http://mirrors.aliyun.com/centos,找到自己虚拟机的版本 3.下载相应的yum包 wget https://mirrors.aliyun.com/centos/7.7.1908/os/x86_64/Packages/yum-metadata-parser-1.1.4-10.el7.x86_64.rpm wget https://mi…
环境:RHEL6.5 使用scp命令报错: [root@oradb23 media]# scp /etc/hosts oradb24:/etc/ -bash: scp: command not found 查看openssh相关包: [root@oradb23 ~]# rpm -qa openssh* openssh-5.3p1-94.el6.x86_64 openssh-server-5.3p1-94.el6.x86_64 发现服务器默认没有安装openssh的客户端. yum 安装opens…
[root@testhost ~]# iostat-bash: iostat: command not found IOSTAT 命令不可用,首先确认sysstat包是否安装,sysstat包中包括iostat,mpstat,sar,sa [root@testhost ~]#yum install -y sysstat 安装完成后,再执行iostat命令. 解释: avg-cpu段:%user: 在用户级别运行所使用的CPU的百分比.%nice: nice操作所使用的CPU的百分比.%sys:…
[root@jboss ~]# mysql -u root -p-bash: mysql: command not found 需要安装mysql # yum install mysql之后就行 了…