IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> linux_apt install repository operations(add-apt-repository)/apt-cache搜索可用包/kali/ubuntu安装errno命令行工具 -> 正文阅读

[系统运维]linux_apt install repository operations(add-apt-repository)/apt-cache搜索可用包/kali/ubuntu安装errno命令行工具

linux_apt install repository operations(add-apt-repository)/apt-cache搜索可用包/kali/ubuntu安装errno命令行工具/E: Unable to locate package 问题

references

E: Unable to locate package 问题

case1

  • 是否拼写错包名(可以用sudo apt-cache search <packageNane>配合grep 通配符获取完整包名)
apt 搜索可用包
  • 譬如:sudo apt-cache search "dict-"|grep ^dict-|less

    • dict-de-en - German-English translation dictionary for dictd
      dict-devil - "The Devil's Dictionary" by Ambrose Bierce
      dict-elements - Data regarding the Elements
      dict-foldoc - FOLDOC dictionary database
      dict-freedict-afr-deu - Afrikaans-German dictionary for the dict server/client
      dict-freedict-afr-eng - Afrikaans-English dictionary for the dict server/client
      dict-freedict-ara-eng - Arabic-English dictionary for the dict server/client
      dict-freedict-bre-fra - Breton-French dictionary for the dict server/client
      dict-freedict-ces-eng - Czech-English dictionary for the dict server/client
      dict-freedict-ckb-kmr - Central Kurdish-Northern Kurdish dictionary for the dict server/client
      dict-freedict-cym-eng - Welsh-English dictionary for the dict server/client
      
  • 或者sudo apt list |grep dict

case2

  • 是否源不够完善/过于老旧(换一个更好的源,或者使用sudo apt update 更新一下缓存)
    • 也可能需要扩充仓库源

case3

  • 是否目标工具包是从属于某个工具集合包,则可以通过安装工具集来间接安装相应工具
    • image-20220429192013978

修改源的命令行工具(add-apt-repository)的安装

以下针对ubuntu(其他debian衍生版情况未必如此,譬如kali)

  • sudo apt-get install software-properties-common -y

  • sudo apt update -y

  • 此时,add-apt-repository应该可以使用了

    • sudo add-apt-repository universe
      sudo add-apt-repository multiverse
      sudo apt update
      
    • 如果add-apt-repository不可用,则尝试:

      • sudo apt install add-apt-repository -y
      • 现在,可以借助add-apt-repository来添加/删除自己系统的源(repository)
      • 操作完毕后,再次执行sudo apt update

add-apt-repository命令不是必须的,我们完全可以手动修改源

install errno command line package

ubuntu 安装errno工具

  • sudo apt install errno -y
    • errno -l查看errno代码的解释

kali 安装errno工具

the errno(1) command (part of the moreutils package)

可知,我们或许能够通过安装moreutils工具集,来间接安装errno

#( 04/29/22@ 6:59PM )( cxxu@CxxuWin11 ):~
   sudo apt install moreutils
Reading package lists... Done
Preparing to unpack .../libio-pty-perl_1%3a1.15-2+b1_amd64.deb ...
Unpacking libio-pty-perl (1:1.15-2+b1) ...
Selecting previously unselected package libipc-run-perl.
Preparing to unpack .../libipc-run-perl_20200505.0-1_all.deb ...
Unpacking libipc-run-perl (20200505.0-1) ...
Selecting previously unselected package libtime-duration-perl.
Preparing to unpack .../libtime-duration-perl_1.21-1_all.deb ...
Unpacking libtime-duration-perl (1.21-1) ...
  • 使用

    • #( 04/29/22@ 6:59PM )( cxxu@CxxuWin11 ):~
         errno -l
      EPERM 1 Operation not permitted
      ENOENT 2 No such file or directory
      ESRCH 3 No such process
      EINTR 4 Interrupted system call
      EIO 5 Input/output error
      ENXIO 6 No such device or address
      
  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2022-05-01 16:08:03  更:2022-05-01 16:09:35 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 17:52:12-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码