OS(27)
-
Ubuntu Dell에 설치
F2: Bios 진입BIOS가 UEFI로 설정SATA 작동이 AHCI(Advanced Host Controller Interface)로 설정레거시 옵션 활성화 ROM(Read-Only Memory): 비활성화하면 F12에서 Disk Driver 선택이 안나옴보안 부팅 비활성화File Browser Del Boot Option에서 모두 삭제F12: 부팅 옵션F12를 통해서만 부팅 가능함LEGACY OPTIONS: Hard Drive 선택네트웍 도구 설치sudo apt-get updatesudo apt-get upgradesudo apt-get install net-tools# 확인ifconfigGUI 설치sudo apt-get install ubuntu-desktopreboot
2025.01.04 -
Ubuntu rm: cannot remove '{디렉토리}': Is a directory
해당 디렉토리가 마운트되어 있는 경우# 확인mount | grep {디렉토리}# unmountsudo umount {디렉토리}# 디렉토리 삭제rm -rf {디렉토리}
2024.12.31 -
Ubuntu exportfs 명령어 옵션 2024.12.31
-
Ubuntu NFS mount
Server# 모듈 설치sudo apt updatesudo apt install nfs-kernel-server -y# 디렉토리 생성sudo mkdir -p /nfs/tempsudo chown -R test:test /nfs/tempsudo chmod -R 770 /nfs/temp# NFS 설정파일 수정 및 적용sudo vi /etc/exports--------------/nfs/temp {IP 대역}(rw,sync,no_subtree_check,no_root_squash) {IP 대역}(rw,sync,no_subtree_check,no_root_squash)--------------sudo exportfs -a# 확인sudo exportfs -v# 서비스 재시작 및 확인sudo systemctl res..
2024.12.31 -
Linux \r\n --> \n 변환
-i: 파일에 그대로 적용 s: 문자변환/\r//: \r을 없앰g: 파일 전체 적용*.sh: 대상 파일sed -i "s/\r//g" *.sh
2024.12.24 -
Windows 11 새로 만들기에 메모장(notepad)이 없어졌을 때
참조: https://blog.naver.com/techshare/223252043111 윈도우 탐색기의 "새로 만들기" 메뉴에 "텍스트 문서" 항목이 없는 경우 - 두 번째 이야기예전 글과 동일한 상황이지만, 윈도우 탐색기의 "새로 만들기" 메뉴에 "텍스트 문서" ...blog.naver.comWin + rregeditHKEY_CLASSES_ROOT에서 /.txt 찾기.txt에서 새로 만들기 > 키ShellNew 입력ShellNew에서 새로 만들기 > 이진값NullFile 입력
2024.12.14