Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (kevin at jennifersoft.com)
홈페이지
첨부 파일
 

(시리즈 글이 5개 있습니다.)
개발 환경 구성: 162. 닷넷 개발자가 컴파일해 본 리눅스
; https://www.sysnet.pe.kr/2/0/1325

개발 환경 구성: 730. github - Linux 커널 repo를 윈도우 환경에서 git clone하는 방법
; https://www.sysnet.pe.kr/2/0/13787

Linux: 97. menuconfig에 CONFIG_DEBUG_INFO_BTF, CONFIG_DEBUG_INFO_BTF_MODULES 옵션이 없는 경우
; https://www.sysnet.pe.kr/2/0/13789

Linux: 98. Ubuntu 22.04 - 리눅스 커널 빌드 및 업그레이드
; https://www.sysnet.pe.kr/2/0/13790

Linux: 102. Linux - 커널 이미지 파일 서명 (Ubuntu 환경)
; https://www.sysnet.pe.kr/2/0/13807




github - Linux 커널 repo를 윈도우 환경에서 git clone하는 방법

오호~~~ linux kernel repo를 웹 브라우저로 방문했는데,

torvalds/linux
; https://github.com/torvalds/linux

특정 디렉터리의 경우 이런 오류와 함께 더 이상 파일 열거가 되지 않습니다.

github_not_shown_entries_1.png

536 entries not shown

Sorry, we had to truncate this directory to 1,000 files. 536 entries were omitted from the list. Latest commit info may be omitted.


검색해 보니까,

Sorry, we had to truncate this directory to 1000 files.289 entrie were omitted from the list #21480
; https://github.com/orgs/community/discussions/21480

딱히 방법이 없고 그냥 로컬에 clone해서 보라고만 합니다.

c:\temp> git clone https://github.com/torvalds/linux.git

그런데 linux kernel repo의 경우 윈도우 환경에서 clone하면 오류가 발생합니다.

c:\temp> git clone https://github.com/torvalds/linux.git
Cloning into 'linux'...
remote: Enumerating objects: 10459759, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (3/3), done.
remote: Total 10459759 (delta 0), reused 2 (delta 0), pack-reused 10459756 (from 1)Receiving objects: 100% (10459759/104

Resolving deltas: 100% (8517823/8517823), done.
error: invalid path 'drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.c'
fatal: unable to checkout working tree
warning: Clone succeeded, but checkout failed.
You can inspect what was checked out with 'git status'
and retry with 'git restore --source=HEAD :/'

'aux'와 같은 장치 파일명의 충돌로 인한 것이라는데요,

Unable to do git clone Linux kernel repo using egit in windows
; https://stackoverflow.com/questions/33795071/unable-to-do-git-clone-linux-kernel-repo-using-egit-in-windows

그래서 위의 답변에서는, linux kernel repo를 fork한 자신만의 repo에서 aux.c 파일을 삭제 후 clone에 성공했다는 덧글이 나옵니다.

혹은, WSL 환경이라면 거기서 clone을 하는 것도 좋습니다.

// WSL 환경에서 실행

$ cd /usr/src
$ sudo mkdir kernel
$ cd kernel
$ sudo git clone https://github.com/torvalds/linux.git

이후 해당 WSL 환경에서 Visual Studio Code로 여는 것도 가능합니다.

$ code .

만약 clone까지는 원치 않는다면, github 사이트에서 직접 열어도 됩니다. 즉, 해당 repo 페이지에서 Shift + '.'을 눌러 (github에 로그인 필요) Visual Studio Code를 Web Browser 모드로 열면 모든 파일을 열거할 수 있습니다.




참고로, WSL 환경에서 clone한 이후, 그 파일을 윈도우 환경으로 복사하는 것도 방법인데요,

$ pwd
/usr/src/kernel

$ cp -r . /mnt/c/temp/kernel
cp: cannot create regular file '/mnt/c/temp/kernel/linux/include/uapi/linux/netfilter/xt_connmark.h': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/include/uapi/linux/netfilter/xt_dscp.h': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/include/uapi/linux/netfilter/xt_mark.h': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/include/uapi/linux/netfilter/xt_rateest.h': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/include/uapi/linux/netfilter/xt_tcpmss.h': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/include/uapi/linux/netfilter_ipv4/ipt_ecn.h': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/include/uapi/linux/netfilter_ipv4/ipt_ttl.h': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/include/uapi/linux/netfilter_ipv6/ip6t_hl.h': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/net/netfilter/xt_dscp.c': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/net/netfilter/xt_hl.c': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/net/netfilter/xt_rateest.c': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/net/netfilter/xt_tcpmss.c': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/tools/memory-model/litmus-tests/Z6.0+pooncelock+pooncelock+pombonce.litmus': File exists

보는 바와 같이, 리눅스 파일 시스템의 대소문자 구분으로 인해 동일한 파일명으로 판정되는 파일들은 오류가 발생하긴 합니다. 그렇긴 해도, 어차피 윈도우에서 커널 빌드를 하지는 않을 것이므로, 게다가 저 파일들이 굳이 필요한 경우가 많지는 않을 것이므로 무시해도 좋을 수준입니다.

그래도 고집스럽게 ^^ 모든 파일을 보고 싶다면 윈도우 측의 디렉터리를 대소문자 구분으로 설정하시면 됩니다.

// 관리자 권한으로 실행

c:\temp> fsutil.exe file setCaseSensitiveInfo c:\temp\kernel

이후 다시 복사하면 아무 문제 없이 모든 파일이 복사는 되는데요, 아쉽게도 윈도우 버전의 Visual Studio Code가 대소문자 구분을 지원하지 않는 듯합니다. 그래서, 아래 화면과 같이 xt_connmark.h는 보이는데, xt_CONNMARK.h 파일은 열거하지 못합니다.

vscode_cs_file_1.png

관련해서 2020년부터 이슈가 있었는데,

File explorer does not correctly list case sensitive directories #90983
; https://github.com/microsoft/vscode/issues/90983

Better support for case sensitive macOS #94307
; https://github.com/microsoft/vscode/issues/94307

아직도 open 상태군요. ^^




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]







[최초 등록일: ]
[최종 수정일: 10/26/2024]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 



2024-11-06 11시16분
정성태

1  2  3  4  5  6  7  8  9  [10]  11  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
13693정성태7/24/20247232개발 환경 구성: 717. Visual Studio - C# 프로젝트에서 레지스트리에 등록하지 않은 COM 개체 참조 및 사용 방법파일 다운로드1
13692정성태7/24/20248007디버깅 기술: 199. Windbg - 리눅스에서 뜬 닷넷 응용 프로그램 덤프 파일에 포함된 DLL의 Export Directory 탐색
13691정성태7/23/20247367디버깅 기술: 198. Windbg - 스레드의 Win32 Message Queue 정보 조회
13690정성태7/23/20247000오류 유형: 919. Visual C++ 리눅스 프로젝트 - error : ‘u8’ was not declared in this scope
13689정성태7/22/20248491디버깅 기술: 197. Windbg - PE 포맷의 Export Directory 탐색
13688정성태7/21/20247611닷넷: 2281. C# - Lock / Wait 상태에서도 일부 Win32 메시지 처리파일 다운로드1
13687정성태7/19/20248042닷넷: 2280. C# - PostThreadMessage로 보낸 메시지를 Windows Forms에서 수신하는 방법파일 다운로드1
13686정성태7/19/20247834오류 유형: 918. Visual Studio - ATL Simple Object 추가 시 error C2065: 'IDR_...': undeclared identifier
13685정성태7/19/20247988스크립트: 66. Windows 디렉터리 경로를 WSL의 /mnt 포맷으로 구하는 방법 - 두 번째 이야기
13684정성태7/19/20248151닷넷: 2279. C# - 문자열 보간식 사례 (예: 조건 연산자 사용)
13683정성태7/18/20247635오류 유형: 917. ClrMD - Linux 환경의 .NET 5 덤프 분석 시 hang 현상
13682정성태7/18/20247849닷넷: 2278. WPF - 스레드에 종속되는 DependencyObject파일 다운로드1
13681정성태7/17/20247456닷넷: 2277. C# 13 - (2) 메서드 그룹의 자연 타입 개선 (메서드 추론 개선)파일 다운로드1
13680정성태7/16/20247814닷넷: 2276. C# - Method Group, Natural Type, function_type파일 다운로드1
13679정성태7/16/20246921Linux: 76. Linux - C++ (getaddrinfo 등을 담고 있는) libnss 정적 링크
13678정성태7/15/20247049VS.NET IDE: 191. Visual Studio 2022 - .NET 5 프로젝트를 Docker Support로 실행했을 때 오류
13677정성태7/15/20247121오류 유형: 916. MSBuild - CheckEolTargetFramework (warning NETSDK1138)
13676정성태7/14/20247310Linux: 75. gdb에서 glibc의 함수에 Breakpoint 걸기
13675정성태7/13/20249092C/C++: 166. C/C++ - DLL에서 template 함수를 export하는 방법 [1]파일 다운로드1
13674정성태7/13/20247977오류 유형: 915. Unhandled Exception: Microsoft.Diagnostics.NETCore.Client.ServerNotAvailableException: Unable to connect to Process
13673정성태7/11/20248420닷넷: 2275. C# 13 - (1) 신규 이스케이프 시퀀스 '\e'파일 다운로드1
13672정성태7/10/20247141닷넷: 2274. IIS - (프로세스 종료 없는) AppDomain Recycle
13671정성태7/10/20247248오류 유형: 914. Package ca-certificates is not installed.
13669정성태7/9/20247363오류 유형: 913. C# - AOT StaticExecutable 정적 링킹 시 빌드 오류
13668정성태7/8/20247381개발 환경 구성: 716. Hyper-V - Ubuntu 22.04 Generation 2 유형의 VM 설치
13667정성태7/7/20246605닷넷: 2273. C# - 리눅스 환경에서의 Hyper-V Socket 연동 (AF_VSOCK)파일 다운로드1
1  2  3  4  5  6  7  8  9  [10]  11  12  13  14  15  ...