【错误记录】解压 Linux 内核报错 ( Can not create symbolic link : 客户端没有所需的特权 | Windows 中配置 7z 命令行执行解压操作 )
生活随笔
收集整理的這篇文章主要介紹了
【错误记录】解压 Linux 内核报错 ( Can not create symbolic link : 客户端没有所需的特权 | Windows 中配置 7z 命令行执行解压操作 )
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
文章目錄
- 一、報錯信息
- 二、解決方案
一、報錯信息
二、解決方案
查看 7zip 軟件的安裝路徑 E:\Program Files\7-Zip , 其中 7z.exe 和 7z.dll 就是執行所需的命令 ;
配置環境變量 :
右鍵點擊文件目錄左側的 " 此電腦 " , 在彈出的菜單中選擇屬性選項 :
在電腦屬性中 , 選擇 " 高級系統設置 " , 然后逐步設置環境變量 , 將 7zip 軟件的安裝目錄設置到環境變量中 ;
右鍵點擊底部的 命令提示符 圖標 , 在 命令提示符 選項上 , 再次點擊右鍵 , 選擇 " 以管理員身份運行 " 選項 ;
進入到 Linux 源碼目錄 , 執行
7z x linux-5.6.18.tar命令 , 解壓 Linux 源碼 ;
解壓過程中 , 沒有上述報錯 , 成功解壓 ;
執行結果 :
D:\004_Operate\Kernel\linux-5.6.18.tar>7z x linux-5.6.18.tar7-Zip 19.00 (x64) : Copyright (c) 1999-2018 Igor Pavlov : 2019-02-21Scanning the drive for archives: 1 file, 957890560 bytes (914 MiB)Extracting archive: linux-5.6.18.tar -- Path = linux-5.6.18.tar Type = tar Physical Size = 957890560 Headers Size = 36760064 Code Page = UTF-8Would you like to replace the existing file:Path: .\linux-5.6.18\include\uapi\linux\netfilter\xt_CONNMARK.hSize: 199 bytes (1 KiB)Modified: 2020-06-11 02:22:53 with the file from archive:Path: linux-5.6.18\include\uapi\linux\netfilter\xt_connmark.hSize: 900 bytes (1 KiB)Modified: 2020-06-11 02:22:53 ? (Y)es / (N)o / (A)lways / (S)kip all / A(u)to rename all / (Q)uit? AEverything is OkFolders: 4438 Files: 67311 Size: 903792968 Compressed: 957890560D:\004_Operate\Kernel\linux-5.6.18.tar>注意此處 :
Would you like to replace the existing file:Path: .\linux-5.6.18\include\uapi\linux\netfilter\xt_CONNMARK.hSize: 199 bytes (1 KiB)Modified: 2020-06-11 02:22:53 with the file from archive:Path: linux-5.6.18\include\uapi\linux\netfilter\xt_connmark.hSize: 900 bytes (1 KiB)Modified: 2020-06-11 02:22:53 ? (Y)es / (N)o / (A)lways / (S)kip all / A(u)to rename all / (Q)uit? AEverything is OkLinux 文件目錄區分大小寫 , 但是 WIndows 目錄不區分大小寫 , 導致
linux-5.6.18\include\uapi\linux\netfilter\xt_CONNMARK.h 與 linux-5.6.18\include\uapi\linux\netfilter\xt_connmark.h 文件在 Windows 系統中出現沖突 ,
總結
以上是生活随笔為你收集整理的【错误记录】解压 Linux 内核报错 ( Can not create symbolic link : 客户端没有所需的特权 | Windows 中配置 7z 命令行执行解压操作 )的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【Linux 内核】Linux 操作系统
- 下一篇: 【开发环境】安装 Visual Stud