type mount # find the the first mount command in the PATH
whereis mount # find code or manual about mount
locate mount # search the files about mount
which mount # find the alias int he PATH
mount --help # output the help info
apropos mount # find the mount contained lines in the manual
whatis mount # output the word in command manual
man mount # output the first manual about mount
info mount # find the info in the info database
Ubuntu 中软件安装包信息
看软件xxx安装内容
dpkg -L xxx
查找软件库中的软件
apt-cache search 正则表达式
或
aptitude search 软件包
显示系统安装包的统计信息
apt-cache stats
显示系统全部可用包的名称
apt-cache pkgnames
分享到:
相关推荐
This book, now in its third edition, describes the exciting new features in the newest Linux distributions to help you accomplish more than you imagine. It shows how to use simple commands to automate...
This book is aimed at administrators and those who have a basic knowledge of shell scripting and who want to learn how to get the most out of writing shell scripts. What You Will Learn Write ...
Get complete coverage of all the objectives included on CompTIA Linux+ exams LX0-103 and LX0-104 and LPIC-1 exams 101-400 and 102-400 from this up-to-date resource. Written by a Linux expert and ...
" promises to give you complete introductory knowledge to PHP and MySQL. You will be able to get started on your journey to building awesome dynamic websites that help you achieve your dreams in no ...
本文将深入讲解如何使用`get`命令下载文件以及`put`命令上传文件,同时还会列出一些常用的FTP命令,帮助你更好地理解和操作Linux FTP。 **一、下载文件(get命令)** 在Linux FTP命令行中,`get`命令用于从远程FTP...
===附上linux下使用jxtashell的说明=== (windows用户参加jxse-shell-src-2.5/win32/Jxta_Readme.html说明) Linux具体步骤如下: leekwen@leekwen:~$ unzip jxse-shell-2.5.zip leekwen@leekwen:~$ cd jxse-shell-...
The ability to program and customize the shell quickly, reliably, and portably to get the best out of any individual system is an important skill for anyone operating and maintaining Unix or Linux ...
adb help 这个命令将显示 adb 命令的帮助信息,包括所有可用的命令和选项。 在命令行中查看 LOG 信息 adb logcat -s 标签名 这个命令将显示模拟器或真机上的 LOG 信息,-s 选项用来指定要显示的标签名。 adb ...
--------------------- Access your Android's built-in Linux command line shell Android Terminal Emulator is an open source project. Well written patches to fix bugs or add new features are welcome! ...
本文将详细介绍如何在Linux命令行界面下使用FTP客户端进行文件的下载(get)和上传(put),以及相关的配置方法和其他常用命令。 #### 二、环境准备 为了更好地理解和实践本文中的内容,请确保您的环境中已安装了必要的...
12. **apt-get, yum**:软件包管理器,用于安装、更新和卸载Linux系统中的软件。 这些只是基础命令,更深入的学习包括管道(|)、重定向(> 和 <)以及shell脚本编写。通过熟练掌握这些,你可以高效地管理文件、...
If you use Linux in your day-to-day work, this popular pocket guide is the perfect on-the-job reference. The third edition features new commands for processing image files and audio files, running and...
Discover how this language can help you:, * Read text files and extract information, * Run tasks concurrently using the threading and forking options, * Get information from one process to another ...
linux 命令一览表 alias Create an alias • apropos Search Help manual pages (man k) aptget Search for and install software packages (Debian/Ubuntu) aptitude Search for and install software ...
在ftp会话期间,用户也可以使用help命令获取可供使用的命令清单,或者在help命令后面指定具体的命令名称,获得该命令的说明。 ftp命令是Linux操作系统中一个非常重要的网络命令,用于传输文件。用户可以通过使用ftp...
有的命令可以直接使用参数全名,如"apt-get --help"。对于一些命令,多个单字符参数可以合并成一个,如"apt-get -hlep"等同于"apt-get -h -l -e -p"。 在处理多个对象时,可以使用空格将它们分隔开。例如,"mv 1 2 ...
在 Eclipse 中通过 Help > Install New Software... 添加 Subclipse 更新站点,安装 SVN 插件。更新站点地址为: ```sh http://subclipse.tigris.org/update_1.6.x ``` 安装过程中,选择所有可用组件,并按照...
15. **apt-get/yum**:软件包管理器,用于安装、更新和卸载Linux系统中的软件。 16. **ifconfig**:查看或配置网络接口,主要用于网络调试。 17. **ping**:检查网络连接,测试到其他主机的连通性。 18. **ssh**:...
2. **Shell**:Shell是命令解释器,如Bash(Bourne-Again SHell),它接收用户输入的命令并执行。 二、常用Linux命令介绍 1. **ls**:列出目录内容,用于查看当前目录下的文件和子目录。 2. **cd**:改变目录,...