1. 清除缓存

使用 root 账户登录,终端下执行:

  1. echo 3 > /proc/sys/vm/drop_caches

2. 查看公网IP

通过 curl 来查看 Linux 服务器的公网 IP 一般有以下 2 种方法:

  1. curl ifconfig.me
  2. # 或者
  3. curl cip.cc

3. Windows共享

首先需要一个具有访问 Windows 共享文件夹的账户和密码,且具备读写权限。

3.1 挂载Wins共享文件夹

  1. sudo mount -t cifs //1.1.1.1/share_fold \
  2. /home/yumingmin/bigdata/airflow/dags/test_mount/data_share \
  3. -o username=yumingmin,password=,rw,uid=0,dir_mode=0777,file_mode=0777,vers=2.0

3.2 卸载Wins共享文件夹

  1. $ umount //1.1.1.1/share_fold