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분
정성태

... 16  17  18  19  20  21  22  23  24  25  [26]  27  28  29  30  ...
NoWriterDateCnt.TitleFile(s)
13287정성태3/16/202311600Windows: 229. Win32 - 대화창 템플릿의 2진 리소스를 읽어들여 윈도우를 직접 띄우는 방법파일 다운로드1
13286정성태3/15/202312023Windows: 228. Win32 - 리소스에 포함된 대화창 Template의 2진 코드 해석 방법
13285정성태3/14/202311407Windows: 227. Win32 C/C++ - Dialog Procedure를 재정의하는 방법 [2]파일 다운로드1
13284정성태3/13/202311279Windows: 226. Win32 C/C++ - Dialog에서 값을 반환하는 방법파일 다운로드1
13283정성태3/12/202310105오류 유형: 852. 파이썬 - TypeError: coercing to Unicode: need string or buffer, NoneType found
13282정성태3/12/202310496Linux: 58. WSL - nohup 옵션이 필요한 경우
13281정성태3/12/202311142Windows: 225. 윈도우 바탕화면의 아이콘들이 넓게 퍼지는 경우 [2]
13280정성태3/9/202312627개발 환경 구성: 670. WSL 2에서 호스팅 중인 TCP 서버를 외부에서 접근하는 방법
13279정성태3/9/202312087오류 유형: 851. 파이썬 ModuleNotFoundError: No module named '_cffi_backend'
13278정성태3/8/202311889개발 환경 구성: 669. WSL 2의 (init이 아닌) systemd 지원 [1]
13277정성태3/6/202313169개발 환경 구성: 668. 코드 사인용 인증서 신청 및 적용 방법(예: Digicert)
13276정성태3/5/202312761.NET Framework: 2102. C# 11 - ref struct/ref field를 위해 새롭게 도입된 scoped 예약어 [1]
13275정성태3/3/202312674.NET Framework: 2101. C# 11의 ref 필드 설명
13274정성태3/2/202311948.NET Framework: 2100. C# - ref 필드로 ref struct 타입을 허용하지 않는 이유
13273정성태2/28/202310968.NET Framework: 2099. C# - 관리 포인터로서의 ref 예약어 의미
13272정성태2/27/202311839오류 유형: 850. SSMS - mdf 파일을 Attach 시킬 때 Operating system error 5: "5(Access is denied.)" 에러
13271정성태2/25/202311659오류 유형: 849. Sql Server Configuration Manager가 시작 메뉴에 없는 경우
13270정성태2/24/202310934.NET Framework: 2098. dotnet build에 /p 옵션을 적용 시 유의점
13269정성태2/23/202312318스크립트: 46. 파이썬 - uvicorn의 콘솔 출력을 UDP로 전송
13268정성태2/22/202312754개발 환경 구성: 667. WSL 2 내부에서 열고 있는 UDP 서버를 호스트 측에서 접속하는 방법
13267정성태2/21/202313091.NET Framework: 2097. C# - 비동기 소켓 사용 시 메모리 해제가 finalizer 단계에서 발생하는 사례파일 다운로드1
13266정성태2/20/202312395오류 유형: 848. .NET Core/5+ - Process terminated. Couldn't find a valid ICU package installed on the system
13265정성태2/18/202312805.NET Framework: 2096. .NET Core/5+ - PublishSingleFile 유형에 대한 runtimeconfig.json 설정
13264정성태2/17/202314777스크립트: 45. 파이썬 - uvicorn 사용자 정의 Logger 작성
13263정성태2/16/202312083개발 환경 구성: 666. 최신 버전의 ilasm.exe/ildasm.exe 사용하는 방법
13262정성태2/15/202313474디버깅 기술: 191. dnSpy를 이용한 (소스 코드가 없는) 닷넷 응용 프로그램 디버깅 방법 [1]
... 16  17  18  19  20  21  22  23  24  25  [26]  27  28  29  30  ...