1.linux刪除文件出現rm: cannot remove ‘njinfi.com/public/.user.ini’: Operation not permittedlinux
緣由: 進入到`.user.ini'所在目錄,執行一下 lsattr -a,查看文件下下邊包含文件的屬性,看到`.user.ini'有個'i'屬性,表明不得任意更動文件或目錄 解決方法: chattr -i .user.ini 去除掉此屬性,而後咱們再執行刪除,就能夠順利刪除掉了
2.壓縮文件夾報錯:-bash: zip: command not foundgit
緣由: 壓縮命令沒有找到 解決方法: yum install -y unzip zip
3.fatal: No remote repository specified. Please, specify either a URL or a remote name from which new revisions should be fetched.bash
緣由: 本地沒有添加遠程倉庫映射 解決方法: git remote add origin [git項目路徑]