标签:Linux
1.移动文件或文件夹是什么命令mv
cp
rm -r
rm -rf
不能
su - xxx
/etc/sudoers
--help 或 man xxx
history !55
touch xxx
mkdir
mkdir -p
ps -ef
kill -9 pid
netatat -nlp|grep 955
alias
不对 不能有空格
全局:/etc/profile 执行source /etc/profile生效
个人:~/.bash_profile或~/.bashrc 执行source ~/.bash_profile生效
cat
more
less
tail
.
tail -f 等同于--follow=descriptor,根据文件描述符进行追踪,当文件改名或被删除,追踪停止
tail -F 等同于--follow=name --retry,根据文件名进行追踪,并保持重试,即该文件被删除或改名后,如果再次创建相同的文件名,会继续追踪
第一步 ps -ef|grep xxx查看
第二部 kill -9 pid杀掉
useradd
groupadd
/etc/passwd
/etc/group
usermod -a -G bigdata ruoze
passwd xxx
|
ifconfig
i --进入编辑模式
esc --退出编辑
:wq --保存退出
标签:Linux
原文地址:http://blog.51cto.com/10814168/2112094