본문 바로가기

Develop/Operating System26

Secure Boot Secure Boot PC시작 시 악의적 소프트웨어가 로드되지 않게 설계된 보안 기능 Windows 부팅 전 시작되는 BIOS(펌웨어)에서 설정 가능 How to 1. 보안 설정> 업데이트 & > 고급 시작 아래에서 지금 다시 시작을 선택 2. 다음 화면에서 UEFI 펌웨어 > 고급 옵션 > 다시 시작을 설정 > 옵션을 선택 3. 레거시(레거시/CMS) -> UEFI/BIOS(통합된 Extensible 펌웨어 인터페이스)로 전환 출처: https://support.microsoft.com/ko-kr/windows/windows-11-%EB%B0%8F-%EB%B3%B4%EC%95%88-%EB%B6%80%ED%8C%85-a8ff1202-c0d9-42f5-940f-843abef64fad 2022. 1. 15.
VM: CentOS8 ISO setting 1. 다운로드 페이지 접속 www.centos.org/download/ Download As you download and use CentOS Linux, the CentOS Project invites you to be a part of the community as a contributor. There are many ways to contribute to the project, from documentation, QA, and testing to coding changes for SIGs, providing mirroring or ho www.centos.org 2. 아키텍쳐에 맞는 iso 항목 클릭 3. 원하는 mirror 사이트 클릭 3. iso 파일 다운로드 4. VM - ISO 파일 삽입 5.. 2021. 2. 23.
virtual box 공유 폴더 마운트 2020/02/17/수 1. Host PC 공유 폴더 설정 2. Guest PC directory mount 2019/06/06/토 1.virtual box 설정-> 공유할 host 폴더 설정 2.폴더 마운트 mount -t vboxsf share(host 폴더) /home/user/Desktop/shareFolder(guest폴더) 이 때 공유할 shareFolder는 생성되어있어야 함 2019. 6. 6.
guest additon 설치 1.yum install kernel sources 2.yum insatll "Development Tools" 3.guest addition image 삽입 4.guest addtion 설치 2019. 6. 6.
yum java 설치 1.자바 가능한 java 목록 확인 yum list java*jdk-devel 2.자바 설치 yum insatll [java version] 3.설치 확인 rpm -qa java*jdk-devel 2019. 6. 6.
ssh root 접속 막기 1. ssh 설정 파일 열기 vi etc/ssh/sshd_config 2.config 변경 #PermitRootLogin yes no 3.sshd 재시작 1)systemctl restart sshd 2)service ssh restart 2019. 6. 6.