将file.txt文件复制到服务器的/home/flower/下
$ scp file.txt root@服务器IP地址:/home/flower/
登录远程终端
$ ssh root@服务器IP地址
mysql远程登录
$ mysql -h 服务器IP地址 -P 3306 -u 用户名 -p
解压文件A.zip到target/文件夹下
$ unzip -o A.zip -d target/
后台运行start.jar并将日志销毁
$ nohup java -jar -Dtype=chapter start.jar > /dev/null & jobs
剪切A.txt文件到target/etc/下并重命名为B.txt
$ mv A.txt target/etc/B.txt
远程复制
$ scp A.txt 用户名@服务器IP地址:/home/flower/
看日志的最后20行
$ tail -n 20 info.log
看内存使用情况
$ free -h
看磁盘使用情况
$ df -h
$ 查看文件列表详细信息
$ ls -lh