主要使用在编译服务器中,一般还有samb一起使用
1.ssh
查看ssh:cat ~/.ssh/id_rsa.pub
ssh-keygen -t rsa -C "主机名"
git config --global --add "user.name" XX
git config --global --add "user.email" xx
touch .ssh/config
vi config
chmod 755 ~/.ssh/
chmod 600 ~/.ssh/id_rsa ~/.ssh/id_rsa.pub
chmod 644 ~/.ssh/known_hosts
2.查找文件
在当前目录查找文件并写入文件
find -name "*-cat-meminfo*" | xargs grep -rn "MemAvailable" > result.txt
3.copy文件:copy/rcopy