Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何检查我的远程 linux 机器中是否安装了 Apache Tomcat。我正在使用腻子连接机器。有什么命令可以找到吗?
您提到您正在运行 Ubuntu。Ubuntu是基于Debian的,所以你会使用dpkg
dpkg
dpkg -l | grep tomcat
这将首先列出所有已安装的软件包,然后搜索包含 tomcat 的内容。如果出现tomcat,则说明它已安装。
有关更多有用的命令,请参阅此博客文章。