본문 바로가기

ops280

[Other] vagrant - vagrantfile vagrant 파일 예시       자세한 내용은 아래의 링크를 참고함    https://developer.hashicorp.com/vagrant/docs/vagrantfile/version Configuration Version - Vagrantfile | Vagrant | HashiCorp DeveloperConfiguration versions are the mechanism by which Vagrant 1.1+ is able to remain backwards compatible with Vagrant 1.0.x Vagrantfiles, while introducing dramatically new features and configuration options.developer.hashicor.. 2024. 5. 20.
[Other] vagrant - synced_folder https://developer.hashicorp.com/vagrant/docs/synced-folders/basic_usage Basic Usage - Synced Folders | Vagrant | HashiCorp DeveloperSynced folders are configured within your Vagrantfile using the "config.vm.synced_folder" method.developer.hashicorp.com 2024. 5. 20.
[Other] vagrant - https://blog.asamaru.net/2015/12/03/vagrant-warning-authentication-failure-retrying-dot-dot-dot-after-packaging-box/ Vagrant Box Packaging 후 "Warning: Authentication failure. Retrying... " 오류가 발생할 경우 해결 방법vagrant를 사용하면서 직접 box를 만들 경우가 자주 발생하지는 않는다. 하지만 환경 구성을 위해 간혹 작업을 하게되는데 작업 과정에 문제가 생기는 경우가 간혹 있다. 이번에 CentOS 7 환경을 구성blog.asamaru.net 위의 글을 참고하여 해결   virtual machine으로 프로비저닝중인증 오류가 발생해서다음 vm을 생성.. 2024. 5. 19.
[Other] vagrant - Vagrant:* Unknown configuration section 'hostmanager'. http://garmoncheg.blogspot.com/2017/06/vagrant-newbie-error-unknown.html Vagrant error: * Unknown configuration section 'hostmanager'.Sometimes you get a vagrant environment or boilerplate with a Vagrantfile config in there and do a vagrant up command. And see some errors....garmoncheg.blogspot.com  자세한 사항은 위의 글을 참고    vagrant로 프로비저님을 하던중에 에러가 발생했다.    코드가 잘못된지 알았지만 해결되지 않는다.   vagrant plugin in.. 2024. 5. 19.
[Linux] Please recompile the kernel module and install it by sudo /sbin/vboxconfig ubuntu 22.04.4에서 virtual  box를 설치하고 실행하려는데 오류가 발생 했다.sudo /sbin/vboxconfig를 입력했더니     위와 같은 오류가 또 발생한다.   https://askubuntu.com/questions/777308/virtualbox-problem-kernel-module-is-not-loaded VirtualBox problem: Kernel module is not loadedI have installed VirtualBox several times, same error every time ( Also see screenshots below) WARNING: The vboxdrv kernel module is not loaded. Either there i.. 2024. 5. 19.
[Linux] ubuntu - apt with .deb .deb 파일은 dpkg로 설치할수 있지만, 의존성까지 한번에 설치하기에는 apt명령어를 사용하는 것이 편리한거 같다. 근데 오랜만에 apt 명령어로 설치하려니 방법을 까먹은거 같다.    다운로드 받은 .deb 파일이 있는 디렉토리   apt install virtual 까지 입력하고 tab을 누르면현재 디렉토리에 있는 .deb 파일이 아닌repo에서 다운 받을수 있는 목록을 보여준다.  apt 명령어를 사용해서 .deb 파일을 설치할 때에는 이렇게 절대경로로 작성해 주면은 된다.  ps. dpkg 명령어에서는 tab 을 누르면현재 디렉토리에 있는 파일명으로자동 완성이 된다. 2024. 5. 19.
[Linux] /etc/rc.d/rc.local is not marked executable, skipping. 자세한 내용은 아래의 내용을 참고 https://bundw.tistory.com/122     rc.local에 실행 권한을 부여  위의 명령어를 입력   /etc/rc.local에도 실행 권한을 추가해준다.  위의 파일로 들어간다.   위의 내용을 추가   rc-local이 정상적으로 실행된다. 2024. 5. 17.
[Network] dhcp 오늘의 lab  dhcp로 ip를 받아올때어떠한 절차를 걸쳐서받아오는지를   알아보도록 하겠다.      dhcp server인 Server0의 dhcp 설정     dhcp 서버의 ip 설정은 위와 같다.      PC0의 ip 설정을 dhcp로 변경   PC0에서 packet 생성    Discover packet을 생성하고 내보낸다는 내용 ---> Layer 7에서 생성되는 것을 보니DHCP 프로그램에서 생성되는 데이터인거 같다.     DHCP 서버인 Server0에서 패킷 수신     DHCP server에 해당 패킷을 보낸 host의 ip가 없어서 찾는다는 내용     PC0에서 패킷 수신   PC0에서 수신한 패킷은 DHCP offer 패킷     offer 패킷에 담긴 ip     PC0이.. 2024. 5. 16.
[Linux] dnf - ansible 설치가 되지 않을때 dnf -yq install epel-release 명령어를 입력하고 dnf -yq install ansible 을 입력해주자. 2024. 5. 16.