mount a cephfs at /mnt/mycephfs
use vim
to write something to a file is not successful,but echo
"hello" > file is successful
$mount -t ceph 192.168.1.89:6789:/ /mnt/mycephfs -o name=admin,secretfile=/etc/ceph/admin.secret
$vim 1
write something to the file
$cat 1
nothing in the file
$echo "hello" >> 1
$cat 1
hello