Ubuntu Commands 2

Posted aritficerpi | Blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu Commands 2相关的知识,希望对你有一定的参考价值。

     lsof,它对应于“list open files”(列出打开的文件)

     fuser 命令列示了本地进程的进程号,那些本地进程使用 File 参数指定的本地或远程文件。对于阻塞特别设备,此命令列示了使用该设备上任何文件的进程。

使用端口号查看进程:

sudo lsof -i :80 | grep LISTEN  # 查看端口80的占用进程

sudo netstat -nlp | grep :80  # 另一种方式

 

根据端口号kill该占用tcp的进程:

sudo fuser -k 80/tcp   # 常用解决http端口占用问题

 

以上是关于Ubuntu Commands 2的主要内容,如果未能解决你的问题,请参考以下文章

续:纠正:ubuntu7.04可以安装,而且完美的安装 ! for《Oracle-10.2.0.1,打补丁10.2.0.5:在 debian 版本4不含4以上,及 ubuntu 7.04不含(代码片段

markdown 在Intel Nuc上设置Ubuntu Web服务器,步骤和代码片段

some bash commands

python 一个终端代码片段,在mac上生成可启动的usb live CD,以运行类似ubuntu或debian的内容。

ubuntu16.04 yum报错:There are no enabled repos. Run “yum repolist all“ to see the repos you have.(代码片段

如何测量代码片段的调用次数和经过时间