AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / ubuntu / 问题 / 693369
Accepted
anatoly techtonik
anatoly techtonik
Asked: 2015-11-04 02:36:22 +0800 CST2015-11-04 02:36:22 +0800 CST 2015-11-04 02:36:22 +0800 CST

阅读未安装程序帮助的最快方法(我很幸运)

  • 772

查找当前未安装程序信息的最快方法是什么?

今天我需要 Ubuntu 来提醒我一些事件,我认为 Ubuntu 可以像 Google 的I'm Feeling Lucky按钮一样智能。但不幸的是,这没有用:

$ remind
The program 'remind' is currently not installed. You can install it by typing:
sudo apt-get install remind
$ man remind
No manual entry for remind
$ help remind
bash: help: no help topics match `remind'.  Try `help help' or `man -k remind'
or `info remind'.

在安装之前,我希望检查提醒是否真的是我需要的。

当然info remind没有帮助(根本不需要展示)。man -k工具也没有帮助:

$ man -k remind
calendar (1)         - reminder service

并且挖掘它man -k的含义也没有成功:

-k, --apropos              equivalent to apropos

那么,您如何从命令行找到所需的应用程序呢?

command-line
  • 2 2 个回答
  • 592 Views

2 个回答

  • Voted
  1. Best Answer
    Andrea Corbellini
    2015-11-04T03:03:00+08:002015-11-04T03:03:00+08:00

    还有dman来自bikeshed包。

    sudo apt-get install bikeshed
    

    它可以让你从互联网上阅读手册页,而不需要安装相应的包:

    dman remind
    
    • 6
  2. A.B.
    2015-11-04T02:39:14+08:002015-11-04T02:39:14+08:00
    1. 阅读联机手册页。

    2. 使用apt-cache

      apt-cache show remind
      

      或者

      apt-cache show remind | awk '/Description-en/ {print; a=1; next} a && /^ / {print; next} {a=0}'
      
    3. 其他一切都包含在包本身中。

      apt-get download remind
      dpkg -x *.deb remind
      man ./remind/usr/share/man/man1/rem.1.gz
      

    示例输出

    apt-cache show remind

    Package: remind
    Priority: optional
    Section: universe/utils
    Installed-Size: 411
    Maintainer: Ubuntu Developers <[email protected]>
    Original-Maintainer: Ana Beatriz Guerrero Lopez <[email protected]>
    Architecture: i386
    Version: 03.01.15-1
    Depends: libc6 (>= 2.7)
    Suggests: tkremind, wyrd
    Filename: pool/universe/r/remind/remind_03.01.15-1_i386.deb
    Size: 190964
    MD5sum: e476e0b4e49a211ad860cde57b1b6ea5
    SHA1: b342c7f05e560aecc3c7bac9aa1ae1fef424121c
    SHA256: 67f34f03723e03653fc25d119b680da1ab03bf28fc78d80c2a173184cbf682bc
    Description-en: sophisticated calendar and alarm program
     Remind allows you to remind yourself of upcoming events and
     appointments.  Each reminder or alarm can consist of a message sent
     to standard output, or a program to be executed.
     .
     It also features: sophisticated date calculation, moon phases,
     sunrise/sunset, Hebrew calendar, alarms, PostScript output, tcl/tk
     front-end and proper handling of holidays.
     .
     Reminders can be created by the remind scripting language or by using
     the graphical frontend package "tkremind".
    Description-md5: 5b163d21d42fbc03e201fdb61071c10d
    Homepage: http://www.roaringpenguin.com/products/remind/
    Bugs: https://bugs.launchpad.net/ubuntu/+filebug
    Origin: Ubuntu
    

    apt-cache show remind | awk '/Description-en/ {print; a=1; next} a && /^ / {print; next} {a=0}'

    Description-en: sophisticated calendar and alarm program
     Remind allows you to remind yourself of upcoming events and
     appointments.  Each reminder or alarm can consist of a message sent
     to standard output, or a program to be executed.
     .
     It also features: sophisticated date calculation, moon phases,
     sunrise/sunset, Hebrew calendar, alarms, PostScript output, tcl/tk
     front-end and proper handling of holidays.
     .
     Reminders can be created by the remind scripting language or by using
     the graphical frontend package "tkremind".
    
    • 3

相关问题

  • 如何从命令行仅安装安全更新?关于如何管理更新的一些提示

  • 如何从命令行刻录双层 dvd iso

  • 如何从命令行判断机器是否需要重新启动?

  • 文件权限如何工作?文件权限用户和组

  • 如何在 Vim 中启用全彩支持?

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    如何运行 .sh 脚本?

    • 16 个回答
  • Marko Smith

    如何安装 .tar.gz(或 .tar.bz2)文件?

    • 14 个回答
  • Marko Smith

    如何列出所有已安装的软件包

    • 24 个回答
  • Marko Smith

    无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗?

    • 25 个回答
  • Martin Hope
    Flimm 如何在没有 sudo 的情况下使用 docker? 2014-06-07 00:17:43 +0800 CST
  • Martin Hope
    Ivan 如何列出所有已安装的软件包 2010-12-17 18:08:49 +0800 CST
  • Martin Hope
    La Ode Adam Saputra 无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗? 2010-11-30 18:12:48 +0800 CST
  • Martin Hope
    David Barry 如何从命令行确定目录(文件夹)的总大小? 2010-08-06 10:20:23 +0800 CST
  • Martin Hope
    jfoucher “以下软件包已被保留:”为什么以及如何解决? 2010-08-01 13:59:22 +0800 CST
  • Martin Hope
    David Ashford 如何删除 PPA? 2010-07-30 01:09:42 +0800 CST

热门标签

10.10 10.04 gnome networking server command-line package-management software-recommendation sound xorg

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve