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)
13821정성태11/18/20242599Linux: 108. Linux와 Windows의 프로세스/스레드 ID 관리 방식
13820정성태11/18/20242632VS.NET IDE: 195. Visual C++ - C# 프로젝트처럼 CopyToOutputDirectory 항목을 추가하는 방법
13819정성태11/15/20242658Linux: 107. eBPF - libbpf CO-RE의 CONFIG_DEBUG_INFO_BTF 빌드 여부에 대한 의존성
13818정성태11/15/20242685Windows: 272. Windows 11 24H2 - sudo 추가
13817정성태11/14/20242601Linux: 106. eBPF / bpf2go - (BPF_MAP_TYPE_HASH) Map을 이용한 전역 변수 구현
13816정성태11/14/20242729닷넷: 2312. C#, C++ - Windows / Linux 환경의 Thread Name 설정파일 다운로드1
13815정성태11/13/20242631Linux: 105. eBPF - bpf2go에서 전역 변수 설정 방법
13814정성태11/13/20242724닷넷: 2311. C# - Windows / Linux 환경에서 Native Thread ID 가져오기파일 다운로드1
13813정성태11/12/20242783닷넷: 2310. .NET의 Rune 타입과 emoji 표현파일 다운로드1
13812정성태11/11/20242611오류 유형: 933. Active Directory - The forest functional level is not supported.
13811정성태11/11/20242462Linux: 104. Linux - COLUMNS 환경변수가 언제나 80으로 설정되는 환경
13810정성태11/10/20242807Linux: 103. eBPF (bpf2go) - Tracepoint를 이용한 트레이스 (BPF_PROG_TYPE_TRACEPOINT)
13809정성태11/10/20242631Windows: 271. 윈도우 서버 2025 마이그레이션
13808정성태11/9/20242631오류 유형: 932. Linux - 커널 업그레이드 후 "error: bad shim signature" 오류 발생
13807정성태11/9/20243000Linux: 102. Linux - 커널 이미지 파일 서명 (Ubuntu 환경)
13806정성태11/8/20242749Windows: 270. 어댑터 상세 정보(Network Connection Details) 창의 내용이 비어 있는 경우
13805정성태11/8/20242602오류 유형: 931. Active Directory의 adprep 또는 복제가 안 되는 경우
13804정성태11/7/20242682Linux: 101. eBPF 함수의 인자를 다루는 방법
13803정성태11/7/20242909닷넷: 2309. C# - .NET Core에서 바뀐 DateTime.Ticks의 정밀도
13802정성태11/6/20243012Windows: 269. GetSystemTimeAsFileTime과 GetSystemTimePreciseAsFileTime의 차이점파일 다운로드1
13801정성태11/5/20242859Linux: 100. eBPF의 2가지 방식 - libbcc와 libbpf(CO-RE)
13800정성태11/3/20243820닷넷: 2308. C# - ICU 라이브러리를 활용한 문자열의 대소문자 변환 [2]파일 다운로드1
13799정성태11/2/20242774개발 환경 구성: 732. 모바일 웹 브라우저에서 유니코드 문자가 표시되지 않는 경우
13798정성태11/2/20242726개발 환경 구성: 731. 유니코드 - 출력 예시 및 폰트 찾기
13797정성태11/1/20243040C/C++: 185. C++ - 문자열의 대소문자를 변환하는 transform + std::tolower/toupper 방식의 문제점파일 다운로드1
13796정성태10/31/20242860C/C++: 184. C++ - ICU dll을 이용하는 예제 코드 (Windows)파일 다운로드1
1  2  [3]  4  5  6  7  8  9  10  11  12  13  14  15  ...