The program 'yum' is currently not installed. You can install it by typing:

执行:(可以直接写成sudo su,就直接转成root了)

sudo apt-get updateapt-get install lrzsz

出现:The program ‘yum‘ is currently not installed. You can install it by typing:

然后执行:

apt install yum

出现:Unable to fetch some archives, maybe run apt-get update or try with --fix-m

然后执行:

vim /etc/resolv.conf 

添加  nameserver 8.8.8.8

再直接传送文件上去:rz

The program 'yum' is currently not installed. You can install it by typing:

原文地址:https://www.cnblogs.com/xym4869/p/8472828.html

时间: 2024-08-02 00:29:13

The program 'yum' is currently not installed. You can install it by typing:的相关文章

The program 'unzip' is currently not installed. You can install it by typing:

linux解压遇到下面问题: The program 'unzip' is currently not installed. You can install it by typing: sudo apt-get install unzip: 说明我们还没有安装 相应的package,需要使用命令安装unzip sudo apt-get install unzip 安装好即可使用unzip The program 'unzip' is currently not installed. You ca

Ubuntu 12.04 64bit 下安装编译GCC 4.1.2 绝对原创

1. 下载并解压源码: wget http://mirrors.ustc.edu.cn/gnu/gcc/gcc-4.1.2/gcc-4.1.2.tar.bz2 tar jxvf gcc-4.1.2.tar.bz2 2. 安装依赖库及软件: sudo apt-get install libc6-dev libgmp-dev libmpfr-dev texinfo (这一步可以省去) 3. 编译gcc: cd gcc-4.1.2 mkdir build cd build ../configure -

初识git

初识git 1 安装git 最早Git是在Linux上开发的,很长一段时间内,Git也只能在Linux和Unix系统上跑.不过,慢慢地有人把它移植到了Windows上.现在,Git可以在Linux.Unix.Mac和Windows这几大平台上正常运行了. 要使用Git,第一步当然是安装Git了.根据你当前使用的平台来阅读下面的文字: 1.1 在Linux上安装Git 首先,你可以试着输入git,看看系统有没有安装Git: ``` $ git The program 'git' is curren

git &github 快速入门

github介绍 安装 仓库创建& 提交代码 代码回滚 工作区和暂存区 撤销修改 删除操作 远程仓库 分支管理 多人协作 github使用 忽略特殊文件.gitignore 为什么要用版本控制? 假设你在的公司要上线一个新功能,你们开发团队为实现这个新功能,写了大约5000行代码,上线没2天,就发现这个功能用户并不喜欢,你老板让你去掉这个功能,你怎么办?你说简单,直接把5000行代码去掉就行了,但是我的亲,说的简单,你的这个功能写了3周时间,但你还能记得你是新增加了哪5000行代码么?所以你急需

安装Git

在Linux上安装Git 首先,你可以试着输入git,看看系统有没有安装Git: $ git The program 'git' is currently not installed. You can install it by typing: sudo apt-get install git 在Mac OS X上安装Git 如果你正在使用Mac做开发,有两种安装Git的方法. 一是安装homebrew,然后通过homebrew安装Git,具体方法请参考homebrew的文档:http://br

Linux 常用命令解析及Bash Shell脚本用法示例

 摘要 Linux 命令是基于文本格式输入输出的一种程序,按照Unix哲学中强调的程序功能简单,输入宽松,输出严谨,各种程序组合可以具有更强大的功能,而具有这种灵活性的主要原因是Linux规定程序的输入输出必须坚持文件流格式,即文本格式,而这就是Linux系统的核心之一. 对于Bash,即Shell的一种,为现在主流Linux发行版本默认的命令行解释器,是一种功能强大的工具,可以实现对Linux支持的程序命令的组合,从而实现强大功能.类似于Window系统的bat文件,Bash具有更为强大的

ubuntu不支持rpm安装软件解决方法

以前经常使用的是redhat,习惯使用rpm方法安装软件.最近发现Ubuntu系统居然不支持rpm方法安装软件,提示信息如下: [email protected]$ rpm -i package.rpm The program 'rpm' is currently not installed.  You can install it by typing: sudo apt-get install rpm 然而通过apt-get安装rpm包以后依然不能够安装,最后才知道原来Ubuntu不支持rpm

phalcon安装

https://phalconphp.com/en/download/linux curl -s "https://packagecloud.io/install/repositories/phalcon/stable/script.deb.sh" | sudo bash sudo apt-get install php7.0-phalcon [email protected]:~# sudo apt-get install php7.0-phalconReading package

Git学习笔记——Git安装

Git是目前世界上最先进的分布式版本控制系统(没有之一). 在Linux上安装Git 首先,你可以试着输入git,看看系统有没有安装Git: $ git The program 'git' is currently not installed. You can install it by typing: sudo apt-get install git 像上面的命令,有很多Linux会友好地告诉你Git没有安装,还会告诉你如何安装Git. 如果你碰巧用Debian或Ubuntu Linux,通过