Ubuntu下查看已经安装的包
摘要:
To list all installed packages including version and description usedpkg -lThis should be piped to less using | less for better reading.You may also use the following to print only the packages without version and description usingdpkg --get-selections | awk '{print $1}'This command can easi 阅读全文
posted @ 2011-07-01 17:35 9号 阅读(226) 评论(0) 推荐(0) 编辑