/home/mydir
名前に時間形式(YYYY-MM-DD_HH:MM:SS)を含むファイルを含むホームディレクトリがあるとします。このファイルをnfsディレクトリにコピーまたはリンクしようとすると、次のようなエラーが報告されます。
cp: cannot stat './2013010206/NARR_3D:2013-01-03_00': Input/output error
cp: cannot stat './2013010206/NARR_3D:2013-01-03_03': Input/output error
cp: cannot stat './2013010206/met_em.d01.2013-01-02_12:00:00.nc': Input/output error
cp: cannot stat './2013010206/met_em.d01.2013-01-02_15:00:00.nc': Input/output error
または
$ cp ~/tests/2013010206/met_em.d03.2013-01-02_12\:00\:00.nc .
cp: cannot stat './met_em.d03.2013-01-02_12:00:00.nc': Input/output error
\
時間形式( )のエスケープ文字(バックスラッシュ)と関連があるようです。12\:00\:00
このコマンドを使用するとき
$ cp ~/tests/2013010206/met_em.d03.2013-01-02_12\:00\:00.nc met_em_2013-01-02_12
$ ls
met_em_2013-01-02_12
それは問題ではありません。もしそうなら、問題はそれをどのように処理するのでしょうか。私が実行している多くのexeファイルにこの時間形式のファイルが必要なので、NFSに変更できるいくつかの設定がありますか?
設定は次のとおりです/etc/fstab
IP:/share1 /share1 nfs rw,sync,nosuid,rsize=65536,wsize=65536 0 0
--マウントオプションが更新されました--
rw,nosuid,relatime,sync,vers=3,rsize=32768,wsize=32768,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=10.15.1.19,mountvers=3,mountport=2049,mountproto=udp,local_lock=none,addr=10.15.1.19