1. 清除缓存
使用 root 账户登录,终端下执行:
echo 3 > /proc/sys/vm/drop_caches
2. 查看公网IP
通过 curl
来查看 Linux 服务器的公网 IP 一般有以下 2 种方法:
curl ifconfig.me
# 或者
curl cip.cc
3. Windows共享
首先需要一个具有访问 Windows 共享文件夹的账户和密码,且具备读写权限。
3.1 挂载Wins共享文件夹
sudo mount -t cifs //1.1.1.1/share_fold \
/home/yumingmin/bigdata/airflow/dags/test_mount/data_share \
-o username=yumingmin,password=,rw,uid=0,dir_mode=0777,file_mode=0777,vers=2.0
3.2 卸载Wins共享文件夹
$ umount //1.1.1.1/share_fold