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)
13838정성태12/4/2024645오류 유형: 935. Windbg - Breakpoint 0's offset expression evaluation failed.
13837정성태12/3/2024725디버깅 기술: 204. Windbg - 윈도우 핸들 테이블 (3) - Windows 10 이상인 경우
13836정성태12/3/2024957디버깅 기술: 203. Windbg - x64 가상 주소를 물리 주소로 변환 (페이지 크기가 2MB인 경우)
13835정성태12/2/20241002오류 유형: 934. Azure - rm: cannot remove '...': Directory not empty
13834정성태11/29/20241079Windows: 275. C# - CUI 애플리케이션과 Console 윈도우 (Windows 10 미만의 Classic Console 모드인 경우)파일 다운로드1
13833정성태11/29/20241096개발 환경 구성: 737. Azure Web App에서 Scale-out으로 늘어난 리눅스 인스턴스에 SSH 접속하는 방법
13832정성태11/27/20241111Windows: 274. Windows 7부터 도입한 conhost.exe
13831정성태11/27/2024978Linux: 111. eBPF - BPF_MAP_TYPE_PERF_EVENT_ARRAY, BPF_MAP_TYPE_RINGBUF에 대한 다양한 용어들
13830정성태11/25/20241086개발 환경 구성: 736. 파이썬 웹 앱을 Azure App Service에 배포하기
13829정성태11/25/20241027스크립트: 67. 파이썬 - Windows 버전에서 함께 설치되는 py.exe
13828정성태11/25/20241048개발 환경 구성: 735. Azure - 압축 파일을 이용한 web app 배포 시 디렉터리 구분이 안 되는 문제파일 다운로드1
13827정성태11/25/20241133Windows: 273. Windows 환경의 파일 압축 방법 (tar, Compress-Archive)
13826정성태11/21/20241206닷넷: 2313. C# - (비밀번호 등의) Console로부터 입력받을 때 문자열 출력 숨기기(echo 끄기)파일 다운로드1
13825정성태11/21/20241160Linux: 110. eBPF / bpf2go - BPF_RINGBUF_OUTPUT / BPF_MAP_TYPE_RINGBUF 사용법
13824정성태11/20/20241108Linux: 109. eBPF / bpf2go - BPF_PERF_OUTPUT / BPF_MAP_TYPE_PERF_EVENT_ARRAY 사용법
13823정성태11/20/20241085개발 환경 구성: 734. Ubuntu에 docker, kubernetes (k3s) 설치
13822정성태11/20/20241045개발 환경 구성: 733. Windbg - VirtualBox VM의 커널 디버거 연결 시 COM 포트가 없는 경우
13821정성태11/18/20241172Linux: 108. Linux와 Windows의 프로세스/스레드 ID 관리 방식
13820정성태11/18/20241144VS.NET IDE: 195. Visual C++ - C# 프로젝트처럼 CopyToOutputDirectory 항목을 추가하는 방법
13819정성태11/15/20241154Linux: 107. eBPF - libbpf CO-RE의 CONFIG_DEBUG_INFO_BTF 빌드 여부에 대한 의존성
13818정성태11/15/20241232Windows: 272. Windows 11 24H2 - sudo 추가
13817정성태11/14/20241103Linux: 106. eBPF / bpf2go - (BPF_MAP_TYPE_HASH) Map을 이용한 전역 변수 구현
13816정성태11/14/20241174닷넷: 2312. C#, C++ - Windows / Linux 환경의 Thread Name 설정파일 다운로드1
13815정성태11/13/20241102Linux: 105. eBPF - bpf2go에서 전역 변수 설정 방법
13814정성태11/13/20241215닷넷: 2311. C# - Windows / Linux 환경에서 Native Thread ID 가져오기파일 다운로드1
[1]  2  3  4  5  6  7  8  9  10  11  12  13  14  15  ...