ubuntu 简单常用命令

把终端加到右键菜单:sudo apt-get install nautilus-open-terminal

查看java进程:ps aux|grep java

 升级ubuntu支持4G内存:sudo apt-get install linux-headers-server linux-image-server linux-server

 ps -ef|grep httpd

chmod 4755  4表示其他用户执行文件时,具有与所有者相当的权限

scp -r  需要拷贝的文件名  userName@IP:/home/userName/..

lsof -i:<port>

 

 

 

windows 下的 hosts 路径C:\WINDOWS\system32\drivers\etc\hosts

 

 

常用用法

查找指定文件的使用

$ lsof /etc/passwd

查找指定文件系统的使用

lsof /tmp

查找Unlinked的打开文件:lsof +L1

 

查找监听的socket

$ lsof –i

$ lsof [email protected]

$ lsof [email protected]:ftp-data

查找指定进程号或进程名使用的文件

lsof -p <PID>

 

远程登陆侦测

 

$ lsof /dev/pts/0

 

NFS文件

$ lsof –N

指定用户打开的文件

 

lsof -u ^root

 

你可能感兴趣的:(java,windows,linux,socket,ubuntu)