scp练习 练习前尝试ping通老师的外网 ping 47.103.122.72 1.进入tmp目录 2.把apache_access.log 最后5条消息 定向> 到tmp目录 fm01.log 3.把apache_error.log 最后5条消息 定向> 到tmp目录 fm02.log 4.把mysql_error.log 最后5条消息 定向> 到tmp目录 fm03.log 5.做个文件夹“名字拼音” 把三个文件mv到这个文件夹内 6.压缩文件夹 scp传送给老师 账号panda 密码 123456 目录 /home/panda/ 7.从老师上诉目录下面,拿取panda.txt 文件,cat查询下,文件内容是什么
时间: 2023-12-10 14:41:48 浏览: 186
openssh-9.0p1-1.el7.centos.x86_64
1. 尝试ping通老师的外网:`ping 47.103.122.72`
2. 进入tmp目录并将apache_access.log最后5条消息定向到tmp目录fm01.log:
```
cd /tmp
tail -n 5 /var/log/httpd/access_log > fm01.log
```
3. 将apache_error.log最后5条消息定向到tmp目录fm02.log:
```
tail -n 5 /var/log/httpd/error_log > fm02.log
```
4. 将mysql_error.log最后5条消息定向到tmp目录fm03.log:
```
tail -n 5 /var/log/mysqld.log > fm03.log
```
5. 创建一个名为“mingzijinyin”的文件夹,并将三个文件mv到该文件夹内:
```
mkdir mingzijinyin
mv fm01.log fm02.log fm03.log mingzijinyin/
```
6. 压缩文件夹并通过scp传输给老师:
```
tar -zcvf mingzijinyin.tar.gz mingzijinyin/
scp mingzijinyin.tar.gz panda@47.103.122.72:/home/panda/
```
7. 从老师的目录下获取panda.txt文件并查看其内容:
```
scp panda@47.103.122.72:/home/panda/panda.txt .
cat panda.txt
```
阅读全文