cp -r
rm -rf
ls -r
ifconfig --找到ip
ps -ef|grep xxx --找到pid
netstat -nlp|grep pid --找到端口
也可以ps查看xxx服务的路径地址,找到配置文件,查看配置文件
mv快
~/.bash_profile
more ~/.bash_profile查看
source ~/.bash_profile或. ~/.bash_profile生效
vi /etc/passwd 把/home/jepson改为/usr/local/mysql
或usermod -d /usr/local/mysql jepson更改
可从原家目录cp一份过来 或者手动创建。
i --进入编辑模式
esc --退出编辑
:wq --保存退出
:q! --不保存退出
su - xxx
sudo
/etc/sudoers
1 >> --追加
2 > --覆盖
tail -f
tail -F
kill -9 $(pgrep -f xxx)
原文:http://blog.51cto.com/10814168/2112743