ipkg命令详解
ipkg 是 OpenWrt 内的一个软件安装管理工具,在 OpenWrt 内输入 root@Linksys:~# ipkg 你会得到 ipkg 的说明和帮助,接下来我会说明 ipkg 常用的几个命令: 1. ipkg update ipkg 会到 http://downloads.openwrt.org/whiterussian/packages/ 下载并更新最新的软件包列表(这个列表的位置在/etc/ipkg.conf指定): ipkg upgrade 更新所有已安装软件 root@Linksys:~# ipkg update Downloading http://downloads.openwrt.org/whiteru...kages/Packages Updated list of available packages in /usr/lib/ipkg/lists/whiterussian Downloading http://downloads.openwrt.org/whiteru...-free/Packages Updated list of available packages in /usr/lib/ipkg/lists/non-free Successfully terminated. 2. ipkg list 在更新之后,我们可以用 ipkg list 这命令查看一下有什么软件包可供安装,这里我会列出部份结果: root@Linksys:~# ipkg list aiccu – 2005.01.31-1 – SixXS Automatic IPv6 Connectivity Client Utility arptables – 0.0.3-1 – ARP firewalling software arpwatch – 2.1a11-1 – Ethernet monitor program for keeping track of ethernet/ip address pairings asterisk – 1.0.7-1 – An open source PBX ... 3. ipkg install 安装软件包,有 2 种方法,例如我想安装 OpenSSH 的 SFTP 服务器(注 1),方便我以后上传文件到 OpenWrt,我可以执行 ipkg list 或到 OpenWrt 的软件包网址取得软件 SFTP 服务器的资料: Package: openssh-sftp-server Version: 4.0p1-1 Depends: zlib, libopenssl Section: net Architecture: mipsel Maintainer: bugs@openwrt.org MD5Sum: 145c72f82f2404b991a96bf5f3ef2262 Size: 14086 Filename: openssh-sftp-server_4.0p1-1_mipsel.ipk Source: buildroot internal Description: OpenSSH SFTP server 之后我可以选择第 1 个方法用软件包名来安装,这方法会自动把软件包下载并安装: ipkg install openssh-sftp-server 或者选择第 2 个方法从网站把安装包下载到路由器上,然后输入文件名安装: ipkg install openssh-sftp-server_4.0p1-1_mipsel.ipk 4. ipkg list_installed 这个命令会列出 OpenWrt 预先为你安装好的软件 (包括一些常用软件和驱动) 以及你后来安装的软件。 5. ipkg remove 当你的空间不足时,这个命令非常有用,你先执行 ipkg list_installed 得出己安装的软件列表,然后找出你要删除的软件包名称,例如: ipkg remove openssh-sftp-server |
原文地址:http://nas1.cn/thread-8141-1-1.html