“getfacl: Removing leading '/' from absolute path names”解決辦法
“getfacl: Removing leading '/' from absolute path names”解決辦法
[root@raclhr-11gR2-N1 ~]# getfacl -R /u01/app > /tmp/bk_lhr_perm_u01_rac1.txt getfacl: Removing leading '/' from absolute path names [root@raclhr-11gR2-N1 ~]# head -n 6 /tmp/bk_lhr_perm_u01_rac1.txt # file: u01/app # owner: root # group: oinstall user::rwx group::r-x other::r-x [root@raclhr-11gR2-N1 ~]# getfacl -pR /u01/app > /tmp/bk_lhr_perm_u01_rac1.txt [root@raclhr-11gR2-N1 ~]# [root@raclhr-11gR2-N1 ~]# head -n 6 /tmp/bk_lhr_perm_u01_rac1.txt # file: /u01/app # owner: root # group: oinstall user::rwx group::r-x other::r-x [root@raclhr-11gR2-N1 ~]#
解決:加上-p引數即可。
-p, --absolute-names Do not strip leading slash characters (`/'). The default behavior is to strip leading slash characters.
從getfacl的手冊頁:
-p, --absolute-names Do not strip leading slash characters (`/'). The default behavior is to strip leading slash characters.
在不使用-p開關的情況下提供絕對路徑時會發出警告訊息.
當給getfacl命令提供絕對路徑時,輸出是不同的.
沒有-p開關:
$getfacl /path/foo/bar getfacl: Removing leading '/' from absolute path names# file: path/foo/bar[Output truncated...]
請注意,僅當使用-p開關時,檔案路徑中的前導斜槓才會顯示.
$getfacl -p /path/foo/bar# file: /path/foo/bar[Output truncated...]
當您通過管道輸出進行進一步處理時,-p對於保持前導斜槓非常有用.
當給getfacl命令賦予相對路徑時,輸出是相同的.
$getfacl bar# file: bar[Output truncated...]
沒有變化:
$getfacl -p bar# file: bar[Output truncated...]
About Me
........................................................................................................................ ● 本文作者:小麥苗,部分內容整理自網路,若有侵權請聯絡小麥苗刪除 ● 本文在itpub、部落格園、CSDN和個人微 信公眾號( xiaomaimiaolhr)上有同步更新 ● 本文itpub地址: http://blog.itpub.net/26736162 ● 本文部落格園地址: http://www.cnblogs.com/lhrbest ● 本文CSDN地址: https://blog.csdn.net/lihuarongaini ● 本文pdf版、個人簡介及小麥苗雲盤地址: http://blog.itpub.net/26736162/viewspace-1624453/ ● 資料庫筆試面試題庫及解答: http://blog.itpub.net/26736162/viewspace-2134706/ ● DBA寶典今日頭條號地址: http://www.toutiao.com/c/user/6401772890/#mid=1564638659405826 ........................................................................................................................ ● QQ群號: 230161599(滿) 、618766405 ● 微 信群:可加我微 信,我拉大家進群,非誠勿擾 ● 聯絡我請加QQ好友 ( 646634621 ),註明新增緣由 ● 於 2019-08-01 06:00 ~ 2019-08-31 24:00 在西安完成 ● 最新修改時間:2019-08-01 06:00 ~ 2019-08-31 24:00 ● 文章內容來源於小麥苗的學習筆記,部分整理自網路,若有侵權或不當之處還請諒解 ● 版權所有,歡迎分享本文,轉載請保留出處 ........................................................................................................................ ● 小麥苗的微店: https://weidian.com/s/793741433?wfr=c&ifr=shopdetail ● 小麥苗出版的資料庫類叢書: http://blog.itpub.net/26736162/viewspace-2142121/ ● 小麥苗OCP、OCM、高可用網路班: http://blog.itpub.net/26736162/viewspace-2148098/ ● 小麥苗騰訊課堂主頁: https://lhr.ke.qq.com/ ........................................................................................................................ 使用 微 信客戶端掃描下面的二維碼來關注小麥苗的微 信公眾號( xiaomaimiaolhr)及QQ群(DBA寶典)、新增小麥苗微 信, 學習最實用的資料庫技術。
........................................................................................................................ |
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26736162/viewspace-2654233/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- leetcode388. Longest Absolute File PathLeetCode
- Removing People 題解REM
- 關於 unrecognized import path "golang.org/x/sys" 的另一個解決辦法ZedImportGolang
- JSnaughty: Recovering Clear, Natural Identifiers from Obfuscated JS NamesJSIDE
- 關於使用Pycharm新建flask專案 from flask 紅色波浪線解決辦法PyCharmFlask
- Excel匯入資料異常Cannot get a text value from a numeric cell解決辦法Excel
- github慢解決辦法Github
- Namespoace Terminating 解決辦法
- 檔案無法粉碎解決辦法
- 公寓噪音的解決辦法
- height:100%失效解決辦法
- 記vscode無法啟動解決辦法VSCode
- -bash: XXX: command not found解決辦法
- cnpm link 報錯解決辦法NPM
- mysql事件關閉解決辦法MySql事件
- IDEA 找不到包解決辦法Idea
- 資料傾斜解決辦法
- SpringBoot 迴圈引用解決辦法Spring Boot
- VScode 更新失敗解決辦法VSCode
- npm install 失敗解決辦法NPM
- github訪問受限解決辦法Github
- 跨域問題解決辦法跨域
- SqlServer鎖表解鎖解決辦法SQLServer
- ModuleNotFoundError: No module named ‘DBUtils‘解決辦法Error
- tomcat埠被佔用解決辦法Tomcat
- Vue 下 ESLint 的 error 解決辦法VueEsLintError
- 表碎片起因及解決辦法(zt)
- [git]warning: LF will be replaced by CRLF in 解決辦法Git
- ERROR 1290 (HY000) 解決辦法Error
- iOS 大圖顯示解決辦法iOS
- Access restriction: The type 'Resource' is not API 解決辦法RESTAPI
- 畢設之錯誤解決辦法
- git報錯400的解決辦法Git
- celery Discarding revoked task: ... 的解決辦法
- NPM run dev 失敗解決辦法NPMdev
- SSH 連線卡頓解決辦法
- ClassNotFoundException: org.json.JSONObject解決辦法ExceptionJSONObject
- Row size too large (> 8126)解決辦法