- 关机
sync
shutdown
shutdown –h 10 'This server will shutdown after 10 mins'
shutdown –h 20:25
reboot
- 创建文件夹
mkdir butcher
- 创建文件
vi hello.txt
- 文件授权
chmod a+w hello.txt
- 将文件内容输出到屏幕上
cat hello.txt
cat -n hello.txt
cat >Hi.java <<EOF
cat >> Hi.java <<EOF
- 查看ip地址
ip addr
- 查找文件
find . -name "*.java"
find /home/butcher -type f
- 删除文件或目录
rm hello.txt
rm -f hello.txt
rm -r textDir
rm -rf textDir
- 移动文件(修改文件名)
mv hi.txt sayHi.txt
mv sayHi.txt butcher/
- 查找文件路径
whereis java
which java
- 复制文件
cp Hi.java /home
cp -r testDir/ /home
- 显示目录的树形结构
yum -y install tree
tree
- 显示当前工作目录的绝对路径
pwd
- 关闭进程
kill 666
kill -9 666
kill -1 666
kill -15 666
- 查看进程
ps -l
ps -A
ps -u
ps -aux
ps -ef
ps -ef | grep java
- 以管理员身份运行
sudo ls
- 用户相关
adduser butcher
passwd butcher
|