当前位置:   article > 正文

Linux常用命令笔记

Linux常用命令笔记

查看安装软件的位置

以下只适合安装路径加入PATH里软件

  • 查看软件安装位置
    whereis +软件名
[root@Test ~]# whereis git
git: /usr/bin/git /usr/share/man/man1/git.1.gz
  • 1
  • 2
  • 查看软件运行位置
    which +软件名
[root@Test ~]# which git
/bin/git
  • 1
  • 2

查看linux机器是32位还是64位

[root@Test ~]# getconf LONG_BIT
64
  • 1
  • 2

Centos7配置163yum源

  1. 备份系统自带的yum源
[root@Test ~]# mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
  • 1
  1. 下载163网易的yum源:
    如果提示没有安装wget,可输入:
 [root@Test ~]# yum install wget
  • 1

安装完毕后再输入:

[root@Test ~]# wget -P /etc/yum.repos.d/ http://mirrors.163.com/.help/CentOS7-Base-163.repo

  • 1
  • 2

更新完yum源后,执行下边命令更新yum配置,使操作立即生效

[root@Test ~]# yum makecache
已加载插件:fastestmirror
...中间输出省略
Determining fastest mirrors
epel                                                                12852/12852
epel                                                                12852/12852
epel                                                                12852/12852
元数据缓存已建立
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

此时yum源已经更新

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/182148?site
推荐阅读
相关标签
  

闽ICP备14008679号