728x90
반응형
발생 오류
pxe kickstart를 할 때 이미지 파일을 불러오지 못하는 오류가 발생하였다. 문제는 아래 두 가지 숨김 파일이 없었기 때문에 발생하였다.
-r--r--r-- 1 root root 43 11월 11 2022 .discinfo
-r--r--r-- 1 root root 1516 11월 11 2022 .treeinfo
이미지 파일을 마운트 해서 확인 할 때 ll 혹은 ls 로만 확인하지 않고 ls -al로 확인하면 숨김 파일들이 보인다. 또한 숨김 파일은 cp -r ./* 로 했을 땐 복사가 안되는 경우가 있다. 따라서 cp -r ./ .로 모든 파일을 복사해야한다.
cp -r ./* 로 복사 시 디렉터리 구성
합계 94396
dr-xr-xr-x 7 root root 4096 4월 4 15:44.
drwxr-xr-x 13 root root 4096 4월 4 15:00..
dr-xr-xr-x 4 root root 4096 11월 11 2022AppStream
dr-xr-xr-x 4 root root 4096 11월 11 2022BaseOS
dr-xr-xr-x 3 root root 4096 11월 11 2022EFI
-r--r--r-- 1 root root 2204 10월 19 2022 LICENSE
-r--r--r-- 1 root root 883 11월 11 2022 TRANS.TBL
dr-xr-xr-x 3 root root 4096 11월 11 2022images
-r--r--r-- 1 root root 85884796 4월 4 15:44 initrd.img
dr-xr-xr-x 2 root root 4096 11월 11 2022isolinux
-r--r--r-- 1 root root 86 11월 11 2022 media.repo
-r-xr-xr-x 1 root root 10740016 4월 4 15:44vmlinuz
cp -r ./. 로 복사 시 디렉터리 구성
# ls -al
합계 94412
dr-xr-xr-x 7 root root 4096 4월 4 15:44.
drwxr-xr-x 13 root root 4096 4월 4 15:00..
-r--r--r-- 1 root root 43 11월 11 2022 .discinfo
-r--r--r-- 1 root root 1516 11월 11 2022 .treeinfo
dr-xr-xr-x 4 root root 4096 11월 11 2022AppStream
dr-xr-xr-x 4 root root 4096 11월 11 2022BaseOS
dr-xr-xr-x 3 root root 4096 11월 11 2022EFI
-r--r--r-- 1 root root 2204 10월 19 2022 LICENSE
-r--r--r-- 1 root root 883 11월 11 2022 TRANS.TBL
dr-xr-xr-x 3 root root 4096 11월 11 2022images
-r--r--r-- 1 root root 85884796 4월 4 15:44 initrd.img
dr-xr-xr-x 2 root root 4096 11월 11 2022isolinux
-r--r--r-- 1 root root 86 11월 11 2022 media.repo
-r-xr-xr-x 1 root root 10740016 4월 4 15:44vmlinuz
반응형
'Linux' 카테고리의 다른 글
MAKE && CMAKE 주요 옵션들 (0) | 2024.04.22 |
---|---|
MAKE && CMAKE (1) | 2024.04.19 |
리눅스 tee 명령어 (0) | 2024.04.01 |
리눅스 우분투 설치 후 기본 설정 (0) | 2024.04.01 |
리눅스 시간 동기화 (0) | 2024.03.13 |