在64位Linux系統上使用IDEA時遇到以下問題,啓動時警告信息
External file changes sync may be slow Project files cannot be watched (are they under network mount?)
命令行啓動時警告信息linux
api.vfs.impl.local.FileWatcher - Project files cannot be watched (are they under network mount?) 此 時若是文件在外部被修改,IDEA不能及時檢測到文件被修改,致使當前編輯的文檔與實際不符。問題緣由是啓動腳本目錄下有兩個fsnotifier文件, 一個後綴爲64,表示64位系統使用。IDEA默認只使用fsnotifier,若是系統是64位,則可能出現上面的錯誤,解決方法是嘗試將原 fsnotifier重命名(如加後綴32),而後將fsnotifier64重命名爲fsnotifier,重啓IDEA。 參考:http://blog.jetbrains.com/idea/2010/04/native-file-system-watcher-for-linux/